1. 程式人生 > >busybox 安裝問題解決

busybox 安裝問題解決

pre and for include bsp pass def fig mixed

直接編譯錯誤

1。loginutils/passwd.c:93:16: error: storage size of ‘rlimit_fsize’ isn’t known

  解決方法:在busybox根目錄下查找到文件:find -name libbb.h

       在libbb.h中添加#include <sys/resource.h>

   

1。Makefile

Makefile:431: *** mixed implicit and normal rules: deprecated syntax
Makefile:1279: *** mixed implicit and normal rules: deprecated syntax
make: *** No rule to make target ‘defconfig‘. Stop.

  (1)config %config: scripts_basic outputmakefile FORCE

     改為:%config: scripts_basic outputmakefile FORCE

  (2)/ %/: prepare scripts FORCE

     改為:%/: prepare scripts FORCE

busybox 安裝問題解決