From 0f5c412fb93e1bc8fdf5ae985b489215a67ed091 Mon Sep 17 00:00:00 2001 From: Thierry Vignaud Date: Mon, 3 Sep 2012 11:22:05 +0000 Subject: do not include ka stuff unlesse BUILD_KA is set --- images/NEWS | 1 + images/make_boot_img | 9 ++++++--- 2 files changed, 7 insertions(+), 3 deletions(-) (limited to 'images') diff --git a/images/NEWS b/images/NEWS index 2cd7818d1..04af08400 100644 --- a/images/NEWS +++ b/images/NEWS @@ -1,3 +1,4 @@ +- do not include ka stuff unlesse BUILD_KA is set - precreate /sys Version 1.78 - 31 August 2012 by Thierry Vignaud diff --git a/images/make_boot_img b/images/make_boot_img index 2d01d6299..575921a39 100755 --- a/images/make_boot_img +++ b/images/make_boot_img @@ -208,15 +208,18 @@ fi _ "cp -f $modz/modules.alias $modz/modules.description $tmp_initrd/modules/$ext"; } # ka deploy need some files in all.rdz - if ($ENV{DEBUGSTAGE1}) { - mkdir_p("$tmp_initrd/$_") foreach qw(dev ka proc sys var/tmp tmp/stage2); + if ($ENV{DEBUGSTAGE1} || $ENV{BUILD_KA}) { + mkdir_p("$tmp_initrd/$_") foreach qw(dev proc sys var/tmp tmp/stage2); symlink("/sbin", "$tmp_initrd/bin"); - cp_af("/usr/bin/ka-d-client", "$tmp_initrd/ka/ka-d-client"); cp_af("/bin/busybox.static", "$tmp_initrd/sbin/busybox"); my @funct = map { /functions:/ .. /^$/ ? do { s/\s//g; split /,/ } : () } `busybox.static`; shift @funct; symlink('busybox', $tmp_initrd . "/sbin/$_") foreach @funct; } + if ($ENV{BUILD_KA}) { + mkdir_p("$tmp_initrd/ka"); + cp_af("/usr/bin/ka-d-client", "$tmp_initrd/ka/ka-d-client"); + } _ "(cd $tmp_initrd; find . | cpio -o -c --quiet) | xz --check=crc32 --lzma2=dict=512KiB > $img"; _ "rm -rf $tmp_initrd"; -- cgit v1.2.1