repo/busybox/build
2021-07-25 20:31:17 +02:00

14 lines
361 B
Text
Executable file

wget -O busybox-1.33.1.tar.bz2 https://busybox.net/downloads/busybox-1.33.1.tar.bz2
tar -xf busybox-1.33.1.tar.bz2
cd busybox-1.33.1
make defconfig
LDFLAGS="--static" make
make install DESTDIR="$1"
rsync -a ./busybox/ "$1"/bin/
cd "_install"
install linuxrc "$1"/linuxrc
rsync -a -v ./bin/ "$1"/bin/
rsync -a -v ./sbin/ "$1"/sbin/
rsync -a -v ./usr "$1"/usr/