To those who only read the Xen-users mailing list, this was just posted on Xen-devel. If you are able to do some testing, please feel free to download and test the new version and report back to xen-devel. -- Mats> -----Original Message----- > From: xen-devel-bounces@lists.xensource.com > [mailto:xen-devel-bounces@lists.xensource.com] On Behalf Of > Keir Fraser > Sent: 20 April 2007 16:01 > To: xen-devel > Subject: [Xen-devel] Xen 3.0.5 First Release Candidate > > The first release candidate for Xen 3.0.5 is now available at > http://xenbits.xensource.com/staging/xen-3.0.5-testing.hg. > The new features > such as HVM save/restore are looking pretty solid now, but we > need to get as > much testing as possible of this release candidate to flush > out any lurking problems! > > Thanks, > Keir_______________________________________________ Xen-users mailing list Xen-users@lists.xensource.com http://lists.xensource.com/xen-users
Is this available as a d-load, i.e. wgettable? Ready to test on a devel-box but I''m not familiar with hg. On 20/04/07, Petersson, Mats <Mats.Petersson@amd.com> wrote:> To those who only read the Xen-users mailing list, this was just posted > on Xen-devel. > > If you are able to do some testing, please feel free to download and > test the new version and report back to xen-devel. > > -- > Mats > > > -----Original Message----- > > From: xen-devel-bounces@lists.xensource.com > > [mailto:xen-devel-bounces@lists.xensource.com] On Behalf Of > > Keir Fraser > > Sent: 20 April 2007 16:01 > > To: xen-devel > > Subject: [Xen-devel] Xen 3.0.5 First Release Candidate > > > > The first release candidate for Xen 3.0.5 is now available at > > http://xenbits.xensource.com/staging/xen-3.0.5-testing.hg. > > The new features > > such as HVM save/restore are looking pretty solid now, but we > > need to get as > > much testing as possible of this release candidate to flush > > out any lurking problems! > > > > Thanks, > > Keir > > > > _______________________________________________ > Xen-users mailing list > Xen-users@lists.xensource.com > http://lists.xensource.com/xen-users >-- John Maclean - 07739 171 531 MSc (DIC) _______________________________________________ Xen-users mailing list Xen-users@lists.xensource.com http://lists.xensource.com/xen-users
On 4/20/07, john maclean <jayeola@gmail.com> wrote:> Is this available as a d-load, i.e. wgettable? Ready to test on a > devel-box but I''m not familiar with hg.http://www.cl.cam.ac.uk/research/srg/netos/xen/readmes/hg-cheatsheet.txt jerry -- "Oh joy! Rapture! I''ve got a brain" -Scarecrow _______________________________________________ Xen-users mailing list Xen-users@lists.xensource.com http://lists.xensource.com/xen-users
On Fri, 20 Apr 2007, Jerry Amundson wrote:> On 4/20/07, john maclean <jayeola@gmail.com> wrote: >> Is this available as a d-load, i.e. wgettable? Ready to test on a >> devel-box but I''m not familiar with hg. > > http://www.cl.cam.ac.uk/research/srg/netos/xen/readmes/hg-cheatsheet.txtwhich should probably have a intro that says "No, but hg is pretty easy to setup"... that cheatsheet includes the following: Necessary software ------------------ Mercurial is available at: http://www.selenic.com/mercurial/ You will also need a Python version >= 2.3 ... so it''s rather far from "available as a download"... but then, if you''re going to build from source, building the mercurial software is failry trivial. (I did it once.) -Tom _______________________________________________ Xen-users mailing list Xen-users@lists.xensource.com http://lists.xensource.com/xen-users
I''ve just run the following:- mkdir -p ~/dump/Xen cd ~/dump/Xen hg clone http://xenbits.xensource.com/xen-3.0.5-testing.hg Got the source now. Is it safe to hg clone <http://url/for/source> as root in a directory such as /usr/src? Bit of a silly question I know but this is my first time with hg. Also is it ok to cp -R ~/dump/XEN/xen-3.0.5-testing.hg/ /usr/src -without- messing anything up? I presume that I''ve just grabbed the source code and that''s it. On 20/04/07, Tom Brown <tbrown@baremetal.com> wrote:> On Fri, 20 Apr 2007, Jerry Amundson wrote: > > > On 4/20/07, john maclean <jayeola@gmail.com> wrote: > >> Is this available as a d-load, i.e. wgettable? Ready to test on a > >> devel-box but I''m not familiar with hg. > > > > http://www.cl.cam.ac.uk/research/srg/netos/xen/readmes/hg-cheatsheet.txt > > which should probably have a intro that says "No, but hg is pretty easy to > setup"... > > that cheatsheet includes the following: > > Necessary software > ------------------ > Mercurial is available at: > http://www.selenic.com/mercurial/ > > You will also need a Python version >= 2.3 > > > ... so it''s rather far from "available as a download"... but then, if > you''re going to build from source, building the mercurial software is > failry trivial. (I did it once.) > > -Tom >-- John Maclean - 07739 171 531 MSc (DIC) _______________________________________________ Xen-users mailing list Xen-users@lists.xensource.com http://lists.xensource.com/xen-users
On Fri, 2007-04-20 at 22:01 +0100, john maclean wrote:> I''ve just run the following:- > > mkdir -p ~/dump/Xen > cd ~/dump/Xen > hg clone http://xenbits.xensource.com/xen-3.0.5-testing.hg > > Got the source now. Is it safe to hg clone <http://url/for/source> as > root in a directory such as /usr/src? > Bit of a silly question I know but this is my first time with hg.Yes.> > Also is it ok to cp -R ~/dump/XEN/xen-3.0.5-testing.hg/ /usr/src > -without- messing anything up? I presume that I''ve just grabbed the > source code and that''s it.Yes. Or better yet, go to ~/dump/XEN and type mv xen-3.0.5-testing.hg /usr/src/ If you want two copies so you have one for working, try hg clone xen-3.0.5-testing.hg /usr/src/xen-3.0.5-testing.hg Best, --Tim> > > On 20/04/07, Tom Brown <tbrown@baremetal.com> wrote: > > On Fri, 20 Apr 2007, Jerry Amundson wrote: > > > > > On 4/20/07, john maclean <jayeola@gmail.com> wrote: > > >> Is this available as a d-load, i.e. wgettable? Ready to test on a > > >> devel-box but I''m not familiar with hg. > > > > > > http://www.cl.cam.ac.uk/research/srg/netos/xen/readmes/hg-cheatsheet.txt > > > > which should probably have a intro that says "No, but hg is pretty easy to > > setup"... > > > > that cheatsheet includes the following: > > > > Necessary software > > ------------------ > > Mercurial is available at: > > http://www.selenic.com/mercurial/ > > > > You will also need a Python version >= 2.3 > > > > > > ... so it''s rather far from "available as a download"... but then, if > > you''re going to build from source, building the mercurial software is > > failry trivial. (I did it once.) > > > > -Tom > > > >_______________________________________________ Xen-users mailing list Xen-users@lists.xensource.com http://lists.xensource.com/xen-users
Ok chaps, Grabbed the test source code with mercurial. Built xen with make -j 2 world && make -j2 install && make -j 2 linux-2.6-xen-config CONFIGMODE=menuconfig && make -j2 linux-2.6-xen-build && make -j 2 make linux-2.6-xen-install Rebooted box and it gave me a "cpu mismatch error rebooting in 4 seconds" warning. Not sure how to capture this error message without taking a photo on my mobile phone, (don''t laugh). Googling this error as we speak and will consider joining xen-devel. Config files are available upon request. On 20/04/07, Tim Post <tim.post@gridnix.org> wrote:> On Fri, 2007-04-20 at 22:01 +0100, john maclean wrote: > > I''ve just run the following:- > > > > mkdir -p ~/dump/Xen > > cd ~/dump/Xen > > hg clone http://xenbits.xensource.com/xen-3.0.5-testing.hg > > > > Got the source now. Is it safe to hg clone <http://url/for/source> as > > root in a directory such as /usr/src? > > Bit of a silly question I know but this is my first time with hg. > > Yes. > > > > > Also is it ok to cp -R ~/dump/XEN/xen-3.0.5-testing.hg/ /usr/src > > -without- messing anything up? I presume that I''ve just grabbed the > > source code and that''s it. > > Yes. Or better yet, go to ~/dump/XEN and type > > mv xen-3.0.5-testing.hg /usr/src/ > > If you want two copies so you have one for working, try > > hg clone xen-3.0.5-testing.hg /usr/src/xen-3.0.5-testing.hg > > Best, > --Tim > > > > > > > On 20/04/07, Tom Brown <tbrown@baremetal.com> wrote: > > > On Fri, 20 Apr 2007, Jerry Amundson wrote: > > > > > > > On 4/20/07, john maclean <jayeola@gmail.com> wrote: > > > >> Is this available as a d-load, i.e. wgettable? Ready to test on a > > > >> devel-box but I''m not familiar with hg. > > > > > > > > http://www.cl.cam.ac.uk/research/srg/netos/xen/readmes/hg-cheatsheet.txt > > > > > > which should probably have a intro that says "No, but hg is pretty easy to > > > setup"... > > > > > > that cheatsheet includes the following: > > > > > > Necessary software > > > ------------------ > > > Mercurial is available at: > > > http://www.selenic.com/mercurial/ > > > > > > You will also need a Python version >= 2.3 > > > > > > > > > ... so it''s rather far from "available as a download"... but then, if > > > you''re going to build from source, building the mercurial software is > > > failry trivial. (I did it once.) > > > > > > -Tom > > > > > > > > >-- John Maclean - 07739 171 531 MSc (DIC) _______________________________________________ Xen-users mailing list Xen-users@lists.xensource.com http://lists.xensource.com/xen-users