repo/busybox/build
2021-07-07 12:48:44 +02:00

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"