diff options
author | Pascal Terjan <pterjan@mandriva.org> | 2010-01-04 16:10:20 +0000 |
---|---|---|
committer | Pascal Terjan <pterjan@mandriva.org> | 2010-01-04 16:10:20 +0000 |
commit | 4936549be18f82c7876711b477854807675685be (patch) | |
tree | fe0b27653f62a6d4b64651385ffd84e3daf22058 | |
parent | 52c5ed8cee0e998255b22f606b8fde3e7eeab610 (diff) | |
download | drakx-4936549be18f82c7876711b477854807675685be.tar drakx-4936549be18f82c7876711b477854807675685be.tar.gz drakx-4936549be18f82c7876711b477854807675685be.tar.bz2 drakx-4936549be18f82c7876711b477854807675685be.tar.xz drakx-4936549be18f82c7876711b477854807675685be.zip |
use /bin/busybox.static
-rw-r--r-- | images/NEWS | 2 | ||||
-rwxr-xr-x | images/make_boot_img | 2 |
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; |