[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] Re: [Xen-devel] [xen-unstable test] 19780: tolerable trouble: broken/fail/pass
On Mon, 2013-09-23 at 06:47 +0100, xen.org wrote: I've just realised I'm sending these to the list as well. My intention was just to keep Ian J informed of the fettling I've been doing while he's away, but I suppose it is useful to spread the knowledge a bit wider while I do it. So unless someone complains I'm going to keep sending these to both Ian and the list. > flight 19780 xen-unstable real [real] > http://www.chiark.greenend.org.uk/~xensrcts/logs/19780/ > > Failures :-/ but no regressions. > > Tests which did not succeed, but are not blocking: > test-armhf-armhf-xl 3 host-install(3) broken never > pass 2013-09-23 04:13:52 Z warning: no kernel found for armmp at /tftpboot/pxe//osstest/debian-installer/armhf/2012-01-30-squeeze/linux.armmp 2013-09-23 04:13:52 Z warning: no kernel module cpio found for armmp at /tftpboot/pxe//osstest/debian-installer/armhf/2012-01-30-squeeze/armmp.cpio.gz tmp/t.marilith-n5.initrd.cpio: 93.4% -- replaced with tmp/t.marilith-n5.initrd.cpio.gz 2013-09-23 04:13:52 Z using initrds: /tftpboot/pxe//osstest/debian-installer/armhf/2012-01-30-squeeze/initrd.gz tmp/t.marilith-n5.initrd.cpio.gz cat: /tftpboot/pxe//osstest/debian-installer/armhf/2012-01-30-squeeze/initrd.gz: No such file or directory I pushed the following patch and am waiting for a push gate pass. In the meantime I ran: OSSTEST_CONFIG=production-config ./mg-debian-installer-update squeeze i386 firmware-bnx2 OSSTEST_CONFIG=production-config ./mg-debian-installer-update squeeze amd64 firmware-bnx2 OSSTEST_CONFIG=production-config ./mg-debian-installer-update wheezy armhf firmware-bnx2 where the last one failed with: dpkg-deb: file `armmp.deb' contains ununderstood data member data.tar.xz , giving up because the osstest host is running Lenny (!). I started to work around this using ar etc by hand, but it turns out that Lenny doesn't even have a standalone xz tool! So, my plan is to regenerate all three sets of debian-installer stuff on more modern system and compare the i386+amd64 with ones generated on woking (as a sanity test). At which point I will sync those versions into the right place on woking and once I've got a push on the change below push a further change to osstest.git updating the production-config to point to it. Ian. ommit ef3a6f2162ced5cfeb08b437315b69ad1ddbc5ed Author: Ian Campbell <ian.campbell@xxxxxxxxxx> Date: Mon Sep 23 10:14:02 2013 +0100 Add -$suite suffix to TftpDiVersion in code The suite differs by $arch but the config file arrangements only allow for a single TftpDiVersion setting. diff --git a/Osstest/Debian.pm b/Osstest/Debian.pm index 1a71af7..2fd899e 100644 --- a/Osstest/Debian.pm +++ b/Osstest/Debian.pm @@ -551,7 +551,7 @@ END foreach my $kp (keys %{ $ho->{Flags} }) { $kp =~ s/need-kernel-deb-// or next; - my $d_i= $c{TftpPath}.'/'.$c{TftpDiBase}.'/'.$r{arch}.'/'.$c{TftpDiVersion}; + my $d_i= $c{TftpPath}.'/'.$c{TftpDiBase}.'/'.$r{arch}.'/'.$c{TftpDiVersion}.'-'.$ho->{Suite}; my $kurl = create_webfile($ho, "kernel", sub { copy("$d_i/$kp.deb", $_[0]); diff --git a/production-config b/production-config index 3f98998..6a3afd8 100644 --- a/production-config +++ b/production-config @@ -72,7 +72,7 @@ TftpPxeDir / TftpPxeTemplates %ipaddrhex%/pxelinux.cfg TftpPxeGroup osstest -TftpDiVersion 2012-01-30-squeeze +TftpDiVersion 2012-01-30 XenUsePath /usr/groups/xencore/systems/bin/xenuse diff --git a/ts-host-install b/ts-host-install index dfbc950..5c0018e 100755 --- a/ts-host-install +++ b/ts-host-install @@ -122,7 +122,7 @@ END sub setup_pxeboot_firstboot($) { my ($ps_url) = @_; - my $d_i= $c{TftpDiBase}.'/'.$r{arch}.'/'.$c{TftpDiVersion}; + my $d_i= $c{TftpDiBase}.'/'.$r{arch}.'/'.$c{TftpDiVersion}.'-'.$ho->{Suite}; my @installcmdline= qw(vga=normal); push @installcmdline, di_installcmdline_core($ho, $ps_url, %xopts); _______________________________________________ Xen-devel mailing list Xen-devel@xxxxxxxxxxxxx http://lists.xen.org/xen-devel
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |