summaryrefslogtreecommitdiffstats
path: root/images
diff options
context:
space:
mode:
Diffstat (limited to 'images')
-rw-r--r--images/NEWS2
-rwxr-xr-ximages/make_boot_img2
2 files changed, 3 insertions, 1 deletions
diff --git a/images/NEWS b/images/NEWS
index 3c3582f56..91865c938 100644
--- a/images/NEWS
+++ b/images/NEWS
@@ -1,3 +1,5 @@
+- use /bin/busybox.static
+
Version 1.46 - 12 October 2009, by Olivier Blin
- properly fix FileHandle issue
diff --git a/images/make_boot_img b/images/make_boot_img
index 359909da2..707ebe25c 100755
--- a/images/make_boot_img
+++ b/images/make_boot_img
@@ -205,7 +205,7 @@ fi
symlink("/sbin", "$tmp_initrd/bin");
cp_af("/usr/bin/ka-d-client", "$tmp_initrd/ka/ka-d-client");
cp_af("/usr/bin/mke2fs_diet", "$tmp_initrd/sbin/mke2fs");
- cp_af("/usr/bin/busybox", "$tmp_initrd/sbin/busybox");
+ cp_af("/bin/busybox.static", "$tmp_initrd/sbin/busybox");
my @funct = map { /functions:/ .. /^$/ ? do { s/\s//g; split /,/ } : () } `busybox`;
shift @funct;
symlink('busybox', $tmp_initrd . "/sbin/$_") foreach @funct;