diff options
Diffstat (limited to 'build-busybox.sh')
-rwxr-xr-x | build-busybox.sh | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/build-busybox.sh b/build-busybox.sh index e370e9c..41e7481 100755 --- a/build-busybox.sh +++ b/build-busybox.sh @@ -10,11 +10,13 @@ if [ ! -e ./busybox-1.20.0 ] ; then tar xf busybox-1.20.0.tar.bz2 cp config-busybox-1.20.0 busybox-1.20.0/.config cd busybox-1.20.0 + echo "Patching busybox..." patch include/libbb.h < ../busybox/libbb.h.patch + patch Makefile.flags < ../busybox/Makefile.flags.patch cd .. fi -make -C busybox-1.20.0 -j8 +BUSYBOX_NO_CRYPT_CHECK=1 make -C busybox-1.20.0 -j8 lzma -zc9 busybox-1.20.0/busybox > floppy/boot/busyboz echo "Busybox is now installed to the floppy folder." |