WARNING - OLD ARCHIVES

This is an archived copy of the Xen.org mailing list, which we have preserved to ensure that existing links to archives are not broken. The live archive, which contains the latest emails, can be found at http://lists.xen.org/
   
 
 
Xen 
 
Home Products Support Community News
 
   
 

xen-users

Re: [Xen-users] Command "make prep-kernels" not cloning Linux - xen-4.1.

To: Eduardo Bragatto <eduardo@xxxxxxxxxxxx>
Subject: Re: [Xen-users] Command "make prep-kernels" not cloning Linux - xen-4.1.0 sources.
From: Martinx - ジェームズ <thiagocmartinsc@xxxxxxxxx>
Date: Wed, 6 Apr 2011 13:42:23 -0300
Cc: xen-users <xen-users@xxxxxxxxxxxxxxxxxxx>
Delivery-date: Wed, 06 Apr 2011 09:44:30 -0700
Dkim-signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:in-reply-to:references:from:date :message-id:subject:to:cc:content-type; bh=sTNSK4BA+HLJ1wtNU5jmTSs0mbr2wYfPtQiJhuWgSOg=; b=Mt2RGWnPyOjG+vgyIDKKtpEHpm3r6aMyCOZula7PhS6lYNG/YjigCLMdze+xV30gvN 4sV1HnV7hJOZa8CmOoW2RCNTY99GJ+GlOn1OxalWXEjS1k7FPieF2g0TGQXlWpVcr9Z6 1W1sQBVtJePbUC5dwW5Z1WFX6SYOAmhtmAJ30=
Domainkey-signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :cc:content-type; b=qoX7BdpQHGYJLZuX1v30OBxbSQ6JjzGjq8dYheOOTumW/HFNWoTHPiDFp99JifTo45 RDx2T4O3i/2y8mJnhaNUK+VQnKift7QMjOdt8QQqcm+E4moPZrA4LDe/Qr5qFq6UlV+7 Ak93EUxDbJs3YPWxpC5cCZXNANd74+JE7wNhA=
Envelope-to: www-data@xxxxxxxxxxxxxxxxxxx
In-reply-to: <E645800D-164A-4EA0-AF7E-F682320386C3@xxxxxxxxxxxx>
List-help: <mailto:xen-users-request@lists.xensource.com?subject=help>
List-id: Xen user discussion <xen-users.lists.xensource.com>
List-post: <mailto:xen-users@lists.xensource.com>
List-subscribe: <http://lists.xensource.com/mailman/listinfo/xen-users>, <mailto:xen-users-request@lists.xensource.com?subject=subscribe>
List-unsubscribe: <http://lists.xensource.com/mailman/listinfo/xen-users>, <mailto:xen-users-request@lists.xensource.com?subject=unsubscribe>
References: <BANLkTi=jb0GATn44DoMnO5mAkpWavMHeCw@xxxxxxxxxxxxxx> <E645800D-164A-4EA0-AF7E-F682320386C3@xxxxxxxxxxxx>
Sender: xen-users-bounces@xxxxxxxxxxxxxxxxxxx
Yep! I noted that but... I did what I supposed to do... unpack the source, cd into it and make prep-kernels. One work and the other no.

BTW, I'm reading the differences between xen-4.0.1/README and xen-4.1.0/README files and, the new version now say: "you need to acquire a suitable kernel for use in domain 0".

So, I'll do the git clone and test...

You want a Linux with Xen dom0 support? Go to kernel.org!  :-D

The Xen source code is only for the Xen itself! Great! Finally!! The Xen development is awesome!!!

I'll try right now the Linux 2.6.39-rc2 as dom0 on top of xen-4.1.0! It will work?! I'm sure it will! hehehe...

Thanks! (Valeu amigo!!)
Thiago

2011/4/6 Eduardo Bragatto <eduardo@xxxxxxxxxxxx>
On Apr 6, 2011, at 12:47 PM, Martinx - ジェームズ wrote:

administrativo@xen01:~/xen-4.0.1$ make prep-kernels
for i in  linux-2.6-pvops  ; do make $i-prep || exit 1; done
(..)

OKAY!
(..)
administrativo@xen01:~/xen-4.1.0$ make prep-kernels
for i in  ; do make $i-prep || exit 1; done

NOT OKAY... Right?!


Did you notice the "for" loop is not iterating through anything in the second case? First you have:

 "for i in linux-2.6-pvops; do..." -- so it cycles through the "for" loop only once, assigning "linux-2.6-pvops" to the variable "i".

In the second case, however:

"for i in  ; do..." -- there's no elements on the list, so the loop is never executed.

I have not used Xen 4 yet, but you're probably not passing a parameter somewhere with the name of the Linux kernel you want to use.


Abraços e boa sorte ;)
Eduardo

_______________________________________________
Xen-users mailing list
Xen-users@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-users
<Prev in Thread] Current Thread [Next in Thread>