request_module: runaway loop modprobe binfmt-464
-在busybox文件里 vi Makefile
164行:CROSS_COMPILE ?=arm-linux-(添加arm-linux-)
189行:ARCH ?=arm(添加arm)
再make再make install
(编译新的busybox,必须在Makefile中指定ARCH=arm,如果只是在编译的时候指定
make CROSS_COMPILE=arm-linux- ARCH=arm
那么make install的时候会重新编译,得到的busybox是i386架构的,从而导致cp生成的cmd到rootfs处时,系统启动时候会提示: request_module: runaway loop modprobe binfmt-464)

vim进入N行方式:N(数字) G

vim显示行数: :set nu

取消: :set nonu