repo/busybox/build

7 lines
244 B
Text
Raw Normal View History

2021-07-07 13:48:44 +03:00
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
2021-07-04 22:57:22 +03:00
make install DESTDIR="$1"