From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JvaLK-0001FA-Kq for qemu-devel@nongnu.org; Mon, 12 May 2008 11:53:38 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JvaLI-0001Eo-Qb for qemu-devel@nongnu.org; Mon, 12 May 2008 11:53:37 -0400 Received: from [199.232.76.173] (port=35614 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JvaLI-0001El-Lo for qemu-devel@nongnu.org; Mon, 12 May 2008 11:53:36 -0400 Received: from wa-out-1112.google.com ([209.85.146.180]:6986) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1JvaLG-0002OC-5M for qemu-devel@nongnu.org; Mon, 12 May 2008 11:53:36 -0400 Received: by wa-out-1112.google.com with SMTP id j5so4354351wah.18 for ; Mon, 12 May 2008 08:53:24 -0700 (PDT) Message-ID: Date: Mon, 12 May 2008 11:53:24 -0400 From: "Ben Taylor" Subject: Re: [Qemu-devel] kqemu+linux-kernel-2.6.25 In-Reply-To: MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <482857D2.2050505@kent.ac.uk> Reply-To: qemu-devel@nongnu.org List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org On Mon, May 12, 2008 at 11:12 AM, ISHWAR RATTAN wrote: > > > On Mon, 12 May 2008, Laurence Hellyer wrote: > >> ISHWAR RATTAN wrote: >>> >>> >>> On Mon, 12 May 2008, Ben Taylor wrote: >>> >>>> On Mon, May 12, 2008 at 9:56 AM, ISHWAR RATTAN >>>> wrote: >>>>> >>>>> kqemu-1.3.0pre11 does not compile under Linx >>>>> kernel-2.6.25. Is this known issue or is there >>>>> a work around? >>>> >>>> Try the code in >>>> >>>> http://svn9.cvsdude.com/kdesolaris/kqemu/trunk/1.0.3pre11/kqemu >>> >>> How do I download the code? >>> wget -r -nH --cut-dirs=4 >>> http://svn9.cvsdude.com/kdesolaris/kqemu/trunk/1.0.3pre11/kqemu >>> downloads only kqemu/index.html >>> >>> -ishwar >>> >> Hi Ishwar, >> >> The code pointed at by Ben is stored in a Subversion (SVN) repository, as >> good a place as any to start learning about SVN is >> http://en.wikipedia.org/wiki/Subversion_(software). > > Ok after download ./configure end in error as: > > ./configure: line 358: unexpected EOF while looking for matching ``' > ./configure: line 371: syntax error: unexpected end of file > > and line 358 given below looks correct to me.. > > osrel=`uname -r | nawk -F . '{ printf("%d\n", $1 * 100 + $2); }'` The problem is in line 34. the line looks like: cpu="`isainfo | cut -f1 -d\ | sed 's,amd64,x86_64,'" but in fact should look like: cpu="`isainfo | cut -f1 -d\ | sed 's,amd64,x86_64,'`" Apologies. I'll fix it in svn right now. Ben