6 lines
244 B
Text
Executable file
6 lines
244 B
Text
Executable file
wget -O ${temp_location}/busybox/busybox.tar.bz2 https://busybox.net/downloads/busybox-1.33.1.tar.bz2
|
|
tar -xf ${temp_location}/busybox/busybox.tar.bz2
|
|
cd ${temp_location}/busybox
|
|
make defconfig
|
|
LDFLAGS="--static" make
|
|
make install DESTDIR="$1"
|