编译 Busybox
# 进入工作目录
TOP=$HOME/arm-linux
cd $TOP
# 下载 Busybox 源代码并解压:
curl https://coding.net/u/stamp711/p/arm-linux/git/raw/master/downloads/busybox-1.26.2.tar.bz2 | tar -xjf -
# 进入源码目录
cd busybox-1.26.2
# 去菜单中修改配置
make ARCH=arm CROSS_COMPILE=arm-linux-gnueabi- menuconfig
# Busybox Settings —> Build Options —> [*] Build BusyBox as a static binary (no shared libs)

# 进行编译
make ARCH=arm CROSS_COMPILE=arm-linux-gnueabi- install