[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-devel] [PATCH RFC OSSTEST 13/19] Osstest/Debian: Install dtbs into target filesystem in /boot/dtbs
This is done unconditionally for every platform which has a need-kernel-deb-* flag, which is currently all ARM platforms. Since mg-debian-installer-update produces the necessary inputs for the only such kernel (armmp) this seems tolerable for now. Signed-off-by: Ian Campbell <ian.campbell@xxxxxxxxxx> --- Osstest/Debian.pm | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/Osstest/Debian.pm b/Osstest/Debian.pm index 3ffbc50..9171c72 100644 --- a/Osstest/Debian.pm +++ b/Osstest/Debian.pm @@ -643,6 +643,11 @@ END or die "Copy initramfs-tools failed: $!"; }); + my $durl = create_webfile($ho, "dtbs", sub { + copy("$d_i/dtbs.tar.gz", $_[0]) + or die "Copy dtbs failed: $!"; + }); + preseed_hook_command($ho, 'late_command', $sfx, <<END); #!/bin/sh set -ex @@ -651,6 +656,9 @@ r=/target wget -O \$r/tmp/kern.deb $kurl wget -O \$r/tmp/initramfs-tools.deb $iurl +wget -O \$r/tmp/dtbs.tar.gz $durl + +in-target tar -C /boot -xaf /tmp/dtbs.tar.gz # This will fail due to dependencies... in-target dpkg -i /tmp/kern.deb /tmp/initramfs-tools.deb || true -- 2.1.0 _______________________________________________ Xen-devel mailing list Xen-devel@xxxxxxxxxxxxx http://lists.xen.org/xen-devel
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |