12 lines
159 B
Bash
12 lines
159 B
Bash
#/bin/sh
|
|
|
|
cd work/busybox
|
|
cd $(ls -d *)
|
|
make clean
|
|
make defconfig
|
|
sed -i "s/.*CONFIG_STATIC.*/CONFIG_STATIC=y/" .config
|
|
make busybox
|
|
make install
|
|
cd ../../..
|
|
|