All of lore.kernel.org
 help / color / mirror / Atom feed
* Re: Which branch to checkout running "make world" for xen-unstable ?
@ 2009-06-25 14:20 Boris Derzhavets
  2009-06-25 14:22 ` Patrick Colp
  0 siblings, 1 reply; 3+ messages in thread
From: Boris Derzhavets @ 2009-06-25 14:20 UTC (permalink / raw)
  To: Jun Koi, Ian Jackson, Keir Fraser; +Cc: xen-devel@lists.xensource.com


[-- Attachment #1.1: Type: text/plain, Size: 2484 bytes --]

That's a result :-
. . . . . . . . . . . . 

set -ex; \
    if ! [ -d linux-2.6-pvops.git ]; then \
        rm -rf linux-2.6-pvops.git linux-2.6-pvops.git.tmp; \
        mkdir linux-2.6-pvops.git.tmp; rmdir linux-2.6-pvops.git.tmp; \
        git clone git://git.kernel.org/pub/scm/linux/kernel/git/jeremy/xen.git linux-2.6-pvops.git.tmp; \
        cd linux-2.6-pvops.git.tmp; \
        git checkout xen-tip/next ; \
        cd ..; mv linux-2.6-pvops.git.tmp linux-2.6-pvops.git; \
    fi
+ '[' -d linux-2.6-pvops.git ']'
+ rm -rf linux-2.6-pvops.git linux-2.6-pvops.git.tmp
+ mkdir linux-2.6-pvops.git.tmp
+ rmdir linux-2.6-pvops.git.tmp
+ git clone git://git.kernel.org/pub/scm/linux/kernel/git/jeremy/xen.git linux-2.6-pvops.git.tmp
Initialized empty Git repository in /usr/src/xen-unstable.hg/linux-2.6-pvops.git.tmp/.git/
remote: Counting objects: 1364853, done.
remote: Compressing objects: 100% (240154/240154), done.
remote: Total 1364853 (delta 1142538), reused 1337612 (delta 1116195)
Receiving objects: 100% (1364853/1364853), 321.42 MiB | 79 KiB/s, done.
Resolving deltas: 100% (1142538/1142538), done.
Checking out files: 100% (27941/27941), done.
+ cd linux-2.6-pvops.git.tmp
+ git checkout xen-tip/next
error: pathspec 'xen-tip/next' did not match any file(s) known to git.
make[3]: *** [linux-2.6-pvops.git/.valid-src] Error 1
make[3]: Leaving directory `/usr/src/xen-unstable.hg'
make[2]: *** [linux-2.6-pvops-install] Error 2
make[2]: Leaving directory `/usr/src/xen-unstable.hg'
make[1]: *** [install-kernels] Error 1
make[1]: Leaving directory `/usr/src/xen-unstable.hg'
make: *** [world] Error 2

Boris

--- On Thu, 6/25/09, Keir Fraser <keir.fraser@eu.citrix.com> wrote:

From: Keir Fraser <keir.fraser@eu.citrix.com>
Subject: Re: Which branch to checkout running "make world" for xen-unstable ?
To: "Boris Derzhavets" <bderzhavets@yahoo.com>, "Jun Koi" <junkoi2004@gmail.com>, "Ian Jackson" <Ian.Jackson@eu.citrix.com>
Cc: "xen-devel@lists.xensource.com" <xen-devel@lists.xensource.com>
Date: Thursday, June 25, 2009, 4:07 AM

XEN_LINUX_GIT_REMOTEBRANCH=xxx make world

...will probably do what you want.

 -- Keir

On 24/06/2009 18:01, "Boris Derzhavets" <bderzhavets@yahoo.com> wrote:

> I believe , that makes sense to provide developers two options :-
> 1. Checkout xen-tip/master
> 2. Checkout xen-tip/next
> when running "make world" for xen unstable.
> 
> Boris.
> 
> 
> 
>  





      

[-- Attachment #1.2: Type: text/html, Size: 3266 bytes --]

[-- Attachment #2: Type: text/plain, Size: 138 bytes --]

_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xensource.com
http://lists.xensource.com/xen-devel

^ permalink raw reply	[flat|nested] 3+ messages in thread
* Re: Re: Which branch to checkout running "make world" for xen-unstable ?
@ 2009-06-25 16:14 Boris Derzhavets
  0 siblings, 0 replies; 3+ messages in thread
From: Boris Derzhavets @ 2009-06-25 16:14 UTC (permalink / raw)
  To: Patrick Colp
  Cc: xen-devel@lists.xensource.com, Ian Jackson, Keir Fraser, Jun Koi


[-- Attachment #1.1: Type: text/plain, Size: 3848 bytes --]

Kernel 2.6.30-rc6-tip been built hangs system at boot up :-

Creating initial device nodes
scsi_wait_scan Unknown symbol mcount
lvm used greatest stack depth 5712 bytes left

Output stops.

Generated .config attached.  I do have working .config and can build kernel separately.
But , the point is to build working kernel via "make world"  i believe.

Boris.

--- On Thu, 6/25/09, Patrick Colp <Patrick.Colp@citrix.com> wrote:

From: Patrick Colp <Patrick.Colp@citrix.com>
Subject: Re: [Xen-devel] Re: Which branch to checkout running "make world" for xen-unstable ?
To: "Boris Derzhavets" <bderzhavets@yahoo.com>
Cc: "Jun Koi" <junkoi2004@gmail.com>, "Ian Jackson" <Ian.Jackson@eu.citrix.com>, "Keir Fraser" <keir.fraser@eu.citrix.com>, "xen-devel@lists.xensource.com" <xen-devel@lists.xensource.com>
Date: Thursday, June 25, 2009, 10:22 AM

I think you want to do:

XEN_LINUX_GIT_REMOTEBRANCH=origin/xen-tip/next make world


Patrick


Boris Derzhavets wrote:
> That's a result :-
> . . . . . . . . . . . . 
> set -ex; \
>     if ! [ -d linux-2.6-pvops.git ]; then \
>         rm -rf linux-2.6-pvops.git linux-2.6-pvops.git.tmp; \
>         mkdir linux-2.6-pvops.git.tmp; rmdir linux-2.6-pvops.git.tmp; \
>         git clone git://git.kernel.org/pub/scm/linux/kernel/git/jeremy/xen.git linux-2.6-pvops.git.tmp; \
>         cd linux-2.6-pvops.git.tmp; \
>         git checkout xen-tip/next ; \
>         cd ..; mv linux-2.6-pvops.git.tmp linux-2.6-pvops.git; \
>     fi
> + '[' -d linux-2.6-pvops.git ']'
> + rm -rf linux-2.6-pvops.git linux-2.6-pvops.git.tmp
> + mkdir linux-2.6-pvops.git.tmp
> + rmdir linux-2.6-pvops.git.tmp
> + git clone git://git.kernel.org/pub/scm/linux/kernel/git/jeremy/xen.git linux-2.6-pvops.git.tmp
> Initialized empty Git repository in /usr/src/xen-unstable.hg/linux-2.6-pvops.git.tmp/.git/
> remote: Counting objects: 1364853, done.
> remote: Compressing objects: 100% (240154/240154), done.
> remote: Total 1364853 (delta 1142538), reused 1337612 (delta 1116195)
> Receiving objects: 100% (1364853/1364853), 321.42 MiB | 79 KiB/s, done.
> Resolving deltas: 100% (1142538/1142538), done.
> Checking out files: 100% (27941/27941), done.
> + cd linux-2.6-pvops.git.tmp
> + git checkout xen-tip/next
> error: pathspec 'xen-tip/next' did not match any file(s) known to git.
> make[3]: *** [linux-2.6-pvops.git/.valid-src] Error 1
> make[3]: Leaving directory `/usr/src/xen-unstable.hg'
> make[2]: *** [linux-2.6-pvops-install] Error 2
> make[2]: Leaving directory `/usr/src/xen-unstable.hg'
> make[1]: *** [install-kernels] Error 1
> make[1]: Leaving directory `/usr/src/xen-unstable.hg'
> make: *** [world] Error 2
> 
> Boris
> 
> --- On Thu, 6/25/09, Keir Fraser <keir.fraser@eu.citrix.com> wrote:
> 
> From: Keir Fraser <keir.fraser@eu.citrix.com>
> Subject: Re: Which branch to checkout running "make world" for xen-unstable ?
> To: "Boris Derzhavets" <bderzhavets@yahoo.com>, "Jun Koi" <junkoi2004@gmail.com>, "Ian Jackson" <Ian.Jackson@eu.citrix.com>
> Cc: "xen-devel@lists.xensource.com" <xen-devel@lists.xensource.com>
> Date: Thursday, June 25, 2009, 4:07 AM
> 
> XEN_LINUX_GIT_REMOTEBRANCH=xxx make world
> 
> ...will probably do what you want.
> 
>  -- Keir
> 
> On 24/06/2009 18:01, "Boris Derzhavets" <bderzhavets@yahoo.com> wrote:
> 
>> I believe , that makes sense to provide developers two options :-
>> 1. Checkout xen-tip/master
>> 2. Checkout xen-tip/next
>> when running "make world" for xen unstable.
>> 
>> Boris.
>> 
>> 
>> 
>>   
> 
> 
> 
> 
> 
>       
> 
> ------------------------------------------------------------------------
> 
> _______________________________________________
> Xen-devel mailing list
> Xen-devel@lists.xensource.com
> http://lists.xensource.com/xen-devel



      

[-- Attachment #1.2: Type: text/html, Size: 5900 bytes --]

[-- Attachment #2: config.world.gz --]
[-- Type: application/x-gzip, Size: 15880 bytes --]

[-- Attachment #3: Type: text/plain, Size: 138 bytes --]

_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xensource.com
http://lists.xensource.com/xen-devel

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2009-06-25 16:14 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-06-25 14:20 Which branch to checkout running "make world" for xen-unstable ? Boris Derzhavets
2009-06-25 14:22 ` Patrick Colp
  -- strict thread matches above, loose matches on Subject: below --
2009-06-25 16:14 Boris Derzhavets

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.