repo/busybox/build
2021-07-04 21:57:22 +02:00

6 lines
178 B
Text
Executable file

wget -O busybox.tar.bz2 https://busybox.net/downloads/busybox-1.33.1.tar.bz2
tar -xfJ busybox.tar.bz2
cd busybox
make defconfig
LDFLAGS="--static" make
make install DESTDIR="$1"