repo/busybox/build

7 lines
179 B
Text
Raw Normal View History

wget -O busybox.tar.bz2 https://busybox.net/downloads/busybox-1.33.1.tar.bz2
2021-07-07 06:51:43 +03:00
tar -xf ./busybox.tar.bz2
cd busybox
make defconfig
LDFLAGS="--static" make
2021-07-04 22:57:22 +03:00
make install DESTDIR="$1"