1 百度搜索busybox进入busybox官网(https://busybox.net/)作者:恒久力行 QQ:624668529

 点击左侧DownloadSource下载最新稳定版的busybox-1.24.2.tar.bz2

 2 将其复制到服务器并解压缩
  1. tar xjf busybox-1.24.2.tar.bz2
3进入根目录,在其根目录下有一个INSTALL文件告诉我们怎么使用busybox
   
  1. make menuconfig
什么都不设置,但要保存设置。然后执行下列指令更改CROSS_COMPILE ?=arm-linux-
  1. vi Makefile
  1. CROSS_COMPILE ?=arm-linux-
然后执行make
  1. make
然后出现一大堆错误
错误1 
miscutils/i2c_tools.c: At top level:
miscutils/i2c_tools.c:1046: error: `I2C_FUNC_SMBUS_PEC‘ undeclared here (not in a function)
miscutils/i2c_tools.c:1046: error: initializer element is not constant
miscutils/i2c_tools.c:1046: error: (near initialization for `i2c_funcs_tab[12].value‘)
miscutils/i2c_tools.c:1047: error: initializer element is not constant
miscutils/i2c_tools.c:1047: error: (near initialization for `i2c_funcs_tab[12]‘)
miscutils/i2c_tools.c:1049: error: initializer element is not constant
miscutils/i2c_tools.c:1049: error: (near initialization for `i2c_funcs_tab[13]‘)
miscutils/i2c_tools.c:1051: error: initializer element is not constant
miscutils/i2c_tools.c:1051: error: (near initialization for `i2c_funcs_tab[14]‘)
miscutils/i2c_tools.c:1052: error: initializer element is not constant
miscutils/i2c_tools.c:1052: error: (near initialization for `i2c_funcs_tab[15]‘)
make[1]: *** [miscutils/i2c_tools.o] Error 1
make: *** [miscutils] Error 2
错误1 解决方法
别急没事咱们一点一点的解决,首先进入make menuconfig,去掉 i2c 相关模块
 
再次make
错误2
 miscutils/ionice.c: In function `ioprio_set‘

miscutils/ionice.c:23: error: `SYS_ioprio_set‘ undeclared (first use in this function)
miscutils/ionice.c:23: error: (Each undeclared identifier is reported only once
miscutils/ionice.c:23: error: for each function it appears in.)
miscutils/ionice.c: In function `ioprio_get‘:
miscutils/ionice.c:28: error: `SYS_ioprio_get‘ undeclared (first use in this function)
make[1]: *** [miscutils/ionice.o] Error 1
make: *** [miscutils] Error 

错误2解决方法:

根据提示是ionice出问题了,进入make menuconfig 屏蔽它去掉 ionice 相关模块
 
再次make
错误3
miscutils/nandwrite.c:117: error: storage size of 'meminfo' isn't known
miscutils/nandwrite.c:118: error: storage size of 'oob' isn't known
miscutils/nandwrite.c:145: error: `MEMGETINFO' undeclared (first use in this function)
miscutils/nandwrite.c:252: error: `MEMREADOOB' undeclared (first use in this function)
miscutils/nandwrite.c:117: warning: unused variable `meminfo'
miscutils/nandwrite.c:118: warning: unused variable `oob'
scripts/Makefile.build:197: recipe for target 'miscutils/nandwrite.o' failed
make[1]: *** [miscutils/nandwrite.o] Error 1
Makefile:741: recipe for target 'miscutils' failed
make: *** [miscutils] Error 2
 
错误3解决方法:
make menuconfig 去掉 nandwrite,nanddump模块
 
再次make
错误4
miscutils/ubi_tools.c:106: error: `UBI_DEV_NUM_AUTO' undeclared (first use in this function)
miscutils/ubi_tools.c:106: error: (Each undeclared identifier is reported only once
miscutils/ubi_tools.c:106: error: for each function it appears in.)
miscutils/ubi_tools.c:107: error: `UBI_VOL_NUM_AUTO' undeclared (first use in this function)
miscutils/ubi_tools.c:115: error: field `attach_req' has incomplete type
miscutils/ubi_tools.c:116: error: field `mkvol_req' has incomplete type
miscutils/ubi_tools.c:117: error: field `rsvol_req' has incomplete type
miscutils/ubi_tools.c:181: error: `UBI_IOCATT' undeclared (first use in this function)
miscutils/ubi_tools.c:194: error: `UBI_IOCDET' undeclared (first use in this function)
miscutils/ubi_tools.c:237: error: `UBI_DYNAMIC_VOLUME' undeclared (first use in this function)
miscutils/ubi_tools.c:239: error: `UBI_STATIC_VOLUME' undeclared (first use in this function)
miscutils/ubi_tools.c:242: error: `UBI_MAX_VOLUME_NAME' undeclared (first use in this function)
miscutils/ubi_tools.c:247: error: `UBI_IOCMKVOL' undeclared (first use in this function)
miscutils/ubi_tools.c:260: error: `UBI_IOCRMVOL' undeclared (first use in this function)
miscutils/ubi_tools.c:278: error: `UBI_IOCRSVOL' undeclared (first use in this function)
miscutils/ubi_tools.c:294: error: `UBI_IOCVOLUP' undeclared (first use in this function)
scripts/Makefile.build:197: recipe for target 'miscutils/ubi_tools.o' failed
make[1]: *** [miscutils/ubi_tools.o] Error 1
Makefile:741: recipe for target 'miscutils' failed
make: *** [miscutils] Error 2
 
错误4解决办法:
make menuconfig 去掉 ubi 相关模块
 
再次make
错误5
util-linux/umount.c: In function `umount_main':
util-linux/umount.c:87: error: `MNT_DETACH' undeclared (first use in this function)
util-linux/umount.c:87: error: (Each undeclared identifier is reported only once
util-linux/umount.c:87: error: for each function it appears in.)
scripts/Makefile.build:197: recipe for target 'util-linux/umount.o' failed
make[1]: *** [util-linux/umount.o] Error 1
Makefile:741: recipe for target 'util-linux' failed
make: *** [util-linux] Error 2
 
错误5解决办法:
umount 这里不能去掉了,因为这个功能是需要的 打开源码看看
  1. vi util-linux/umount.c
  1. // MNT_FORCE and MNT_DETACH (from linux/fs.h) must match
  2. // OPT_FORCE and OPT_LAZY.
  3. {
  4. typedefchar bug[
  5. (OPT_FORCE != MNT_FORCE || OPT_LAZY != MNT_DETACH)?-1:1
  6. ];
改成
  1. // MNT_FORCE and MNT_DETACH (from linux/fs.h) must match
  2. // OPT_FORCE and OPT_LAZY.
  3. {
  4. typedefchar bug[
  5. (OPT_FORCE != MNT_FORCE || OPT_LAZY !=2)?-1:1
  6. ];
  7. }
这里MNT_DETAC直接改成2
 
再次make
错误6
debianutils/lib.a(mktemp.o)(.text.mktemp_main+0x9c): In function `mktemp_main':
: warning: the use of `mktemp' is dangerous, better use `mkstemp'
coreutils/lib.a(touch.o)(.text.touch_main+0x1ac): In function `touch_main':
: warning: warning: lutimes is not implemented and will always fail
/work/tools/gcc-3.4.5-glibc-2.3.6/lib/gcc/arm-linux/3.4.5/../../../../arm-linux/bin/ld: Warning: gc-sections option ignored
coreutils/lib.a(sync.o)(.text.sync_main+0x80): In function `sync_main':
: undefined reference to `syncfs'
collect2: ld returned 1 exit status
Makefile:716: recipe for target 'busybox_unstripped' failed
make: *** [busybox_unstripped] Error 1
 
错误6解决办法:

vi ./coreutils/sync.c
/*
* syncfs is documented to only fail with EBADF,
* which can‘t happen here. So, no error checks.
*/
86行 syncfs(fd);

18 行 //config: bool "Enable -d and -f flags (requres syncfs(2) in libc)"

找了一个 arm-libc 中并没有这个函数

下载了 busybox-1.23.0.tar.bz2 找到同名文件,发现这个内容明显要简单很多。用 1.23 的版本替换 1.24 的。
#include "libbb.h"

/* This is a NOFORK applet. Be very careful! */

int sync_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
int sync_main(int argc UNUSED_PARAM, char **argv IF_NOT_DESKTOP(UNUSED_PARAM))
{
/* coreutils-6.9 compat */
bb_warn_ignoring_args(argv[1]);

sync();

return EXIT_SUCCESS;
}

再次编译就通过了

Your linker does not support --sort-section,alignment

Trying libraries: crypt m

Library crypt is not needed, excluding it

Library m is needed, can't exclude it (yet)

Final link with: m

DOC     busybox.pod

DOC     BusyBox.txt

DOC     busybox.1

DOC     BusyBox.html

 
既然编译过了,就安装上吧,执行下列指令安装。
  1. make CONFIG_PREFIX=/work/nfs_root/first_fs install
安装上后里面有下列文件
waobot@waobot:/work/nfs_root/first_fs$ ls
bin  linuxrc  sbin  usr
  
 
 
4最小根文件系统:
 ①/dev/console /dev/null
 ②init本身,即busybox
 ③/etc/inittab
 ④配置文件里指定的应用程序
 ⑤c库
 
①/dev/console /dev/null
waobot@waobot:/work/nfs_root/first_fs$ mkdir dev
waobot@waobot:/work/nfs_root/first_fs$ cd dev/
waobot@waobot:/work/nfs_root/first_fs/dev$ sudo mknod console c 5 1
[sudo] waobot 的密码: 
waobot@waobot:/work/nfs_root/first_fs/dev$ sudo mknod null c 1 3
 
做③/etc/inittab:
 
 
做⑤c库:
waobot@waobot:/work/nfs_root/first_fs$ mkdir lib
waobot@waobot:/work/nfs_root/first_fs$ cd /work/tools/gcc-3.4.5-glibc-2.3.6/arm-linux/lib
waobot@waobot:/work/tools/gcc-3.4.5-glibc-2.3.6/arm-linux/lib$ cp *.so* /work/nfs_root/first_fs/lib -d
waobot@waobot:/work/tools/gcc-3.4.5-glibc-2.3.6/arm-linux/lib$ cd /work/nfs_root/first_fs
waobot@waobot:/work/nfs_root/first_fs$ ls
bin  dev  etc  lib  linuxrc  sbin  usr
最小根文件系统已经做好了
 
5制作yaffs映像文件,完善最小根文件系统
制作工具
waobot@waobot:/work/nfs_root/first_fs$ cd /work/system/
waobot@waobot:/work/system$ tar xjf yaffs_source_util_larger_small_page_nand.tar.bz2
waobot@waobot:/work/system$ cd Development_util_ok/
waobot@waobot:/work/system/Development_util_ok$  cd yaffs2
waobot@waobot:/work/system/Development_util_ok/yaffs2$ cd utils/
waobot@waobot:/work/system/Development_util_ok/yaffs2/utils$ pwd
/work/system/Development_util_ok/yaffs2/utils
waobot@waobot:/work/system/Development_util_ok/yaffs2/utils$ make
waobot@waobot:/work/system/Development_util_ok/yaffs2/utils$ sudo cp mkyaffs2image /usr/local/bin/
waobot@waobot:/work/system/Development_util_ok/yaffs2/utils$ sudo chmod +x /usr/local/bin/mkyaffs2image
waobot@waobot:/work/system/Development_util_ok/yaffs2/utils$ cd /work/nfs_root/
waobot@waobot:/work/nfs_root$ mkyaffs2image first_fs first_fs.yaffs2
 
遇到一个问题,不能启动提示:kernel panic - not syncing: No init found.  Try passing init= option to kernel.
问题解决:主要原因是编译器的问题,我用的是高版本的编译器,但是库加载的是低版本的编译器。换成低版本的编译器后,改一下环境变量如下
PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/work/tools/gcc-3.4.5-glibc-2.3.6/bin"
 
创建其他引导文件
①etc/inittab
②etc/init.d/rcS
③etc/fstab
 
①etc/inittab如果不想手工挂载,要加一个配置文件:
  1. book@book-desktop:/work/nfs_root/first_fs$ vi etc/inittab
  2. console::askfirst:-/bin/sh
  3. ::sysinit:/etc/init.d/rcS
  1. chmod +x etc/init.d/rcS
②etc/init.d/rcS增加mdev机制 创建proc路径和sys路径
  1. book@book-desktop:/work/nfs_root/first_fs$ vi etc/init.d/rcS
  2. #mount -t proc none /proc
  3. mount -a
  4. mkdir /dev/pts
  5. mount -t devpts devpts /dev/pts
  6. echo /sbin/mdev >/proc/sys/kernel/hotplug
  7. mdev -s
③etc/fstab 
  1. book@book-desktop:/work/nfs_root/first_fs$ vi etc/fstab
  2. #device mount-point type options dump fsck order
  3. proc /proc proc defaults 00
  4. sysfs /sys sysfs defaults 00
  5. tmpfs /dev tmpfs defaults 00
到这里最小根文件系统已经很完善了
 
6直接从NFS启动:

重启可以看到启动参数:
bootargs=noinitrd root=/dev/mtdblock3 rootfstype=jffs2 init=/linuxrc console=ttySAC0
修改启动参数:在linux-2.6.22.6\Documentation的nfsroot.txt里面有参数的说明
nfsroot=[<server-ip>:]<root-dir>[,<nfs-options>]
ip=<client-ip>:<server-ip>:<gw-ip>:<netmask>:<hostname>:<device>:<autoconf>

bootargs noinitrd root=/dev/nfs
nfsroot=192.168.1.51:/work/nfs_root/first_fs
ip=192.168.1.11:192.168.1.51:192.168.1.1:255.255.255.0::eth0:off
init=/linuxrc console=ttySAC0

OpenJTAG> set bootargs noinitrd root=/dev/nfs
nfsroot=192.168.1.51:/work/nfs_root/first_fs
ip=192.168.1.11:192.168.1.51:192.168.1.1:255.255.255.0::eth0:off
init=/linuxrc console=ttySAC0
OpenJTAG> save
OpenJTAG> boot
到这里网络文件系统已经搭建好了,这样你可以在服务器上面编辑代码,编译,然后在单板上面运行了。

 
 
 
 
作者:恒久力行 QQ:624668529
 

韦东山笔记之用busybox构建根文件系统的更多相关文章

  1. 使用busybox构建根文件系统

    当我们在Qemu上运行起来自己编译的内核之后,需要使用busybox构建一个文件系统,将此文件系统挂载上去就可以使用busybox提供的各种命令了. 1.编译安装busybox 源码下载地址:http ...

  2. Busybox构建根文件系统和制作Ramdisk

      定制根文件系统的方法很多,最常用的是使用BusyBox来构建定制根文件系统.它集成压缩了Linux的许多工具和命令,可以使用户迅速方便地建立一套相对完整.功能丰富的文件系统,其中包括大量常用的应用 ...

  3. linux2.6.30.4内核移植(5)——构建根文件系统(yaffs文件系统格式的镜像)

    一.首先编译并安装BusyBox 这里使用的交叉编译器还是3.4.5. 注意:编译内核.编译BusyBox以及编译文件系统中的所有应用程序的交叉编译器要使用同一个版本. 1.获取BusyBox源码 下 ...

  4. 通过busybox制作根文件系统

    通过busybox制作根文件系统可以自定义选项,在制作的根文件系统中添加需要的命令,指定生成的根文件系统到相应的目录下. 一. 根文件系统的获取方式--->官网: https://busybox ...

  5. 通过busybox制作根文件系统详细过程

    我在之前的uboot通过NFS挂载ubuntu根文件系统中也有实现过根文件系统的制作,那只是在ubuntu官网已经做好的根文件基础上安装一些自己所需的软解而已.而使用busybox制作根文件系统可以自 ...

  6. 移植最新u-boot(裁剪和修改默认参数)之韦东山笔记

    1.下载.建立source insight工程.编译.烧写.如果无运行分析原因 tar xjf u-boot-2012.04.01.tar.bz2 cd u-boot-2012.04.01 make ...

  7. 使用BusyBox制作根文件系统【转】

    本文转载自:http://www.cnblogs.com/lidabo/p/5300180.html 1.BusyBox简介 BusyBox 是很多标准 Linux 工具的一个单个可执行实现.Busy ...

  8. 使用BusyBox制作根文件系统

    1.BusyBox简介 BusyBox 是很多标准 Linux 工具的一个单个可执行实现.BusyBox 包含了一些简单的工具,例如 cat 和 echo,还包含了一些更大.更复杂的工具,例如 gre ...

  9. zju(4)使用busybox制作根文件系统

    1.实验目的 1.学习和掌握busybox相关知识及应用: 2.学会使用交叉编译器定制一个busybox: 3.利用该busybox制作一个文件系统: 4.熟悉根文件系统组织结构: 5.定制.编译ra ...

随机推荐

  1. 韩顺平循序渐进学JAVA从入门到精通 视频全套,需要的联系我

    0讲-开山篇.avi 10讲-访问修饰符.重载.覆盖.avi 11讲-约瑟夫问题.avi 12讲-多态.avi 13讲-抽象类.接口.avi 14讲-final.作业评讲.avi 15讲-作业.测试题 ...

  2. Java数组操作的10大方法

    转载自码农网 译文链接:http://www.codeceo.com/article/10-java-array-method.html 英文原文:Top 10 Methods for Java Ar ...

  3. C/C++中变量类型最值之宏定义

    C/C++ [climits(limits.h)] CHAR_BIT        Number of bits for a char object (byte)                    ...

  4. CSS样式基础:

    CSS:外部文件导入  <link rel="stylesheet" type="text/css" href="./style.css&quo ...

  5. ASE分析

    1.Prepare necessary input files(可以参考上次的博客http://www.cnblogs.com/renping/p/7391028.html) 1)对fq1和fq2合并 ...

  6. jdk 安装及环境变量配置

    一.jdk安装及基础配置,转自文章来源:http://www.cnblogs.com/smyhvae/p/3788534.html 1.jdk下载及安装 下载网站:http://www.oracle. ...

  7. java线程基础知识----java线程模型

    转载自http://www.cnblogs.com/nexiyi/p/java_memory_model_and_thread.html 1. 概述 多任务和高并发是衡量一台计算机处理器的能力重要指标 ...

  8. 审美赛_(java)实现

    问题描述 <审美的历程>课上有n位学生,帅老师展示了m幅画,其中有些是梵高的作品,另外的都出自五岁小朋友之手.老师请同学们分辨哪些画的作者是梵高,但是老师自己并没有答案,因为这些画看上去都 ...

  9. Zabbix监控系统配置之-自动发现规则入门

    假设你已经知道[模板-监控项-监控项原型-自动发现规则]之间的关系.(此处应有关系图,待填坑) 1. 添加模板 我新建了一个名叫Dapianzi SNMP Linux的模板,里面添加了已经启动了SNM ...

  10. POJ2151-Check the difficulty of problems

    题目链接:点击打开链接 Check the difficulty of problems Time Limit: 2000MS   Memory Limit: 65536K Total Submiss ...