repo/busybox/build

6 lines
176 B
Text
Raw Normal View History

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