ARM根文件系统制作
Busybox源码:http://www.busybox.net/downloads/
# cd /home/liao
# tar –jxvf busybox-1.13.3.tar.bz2
# cd busybox-1.13.3
2. busybox编译
2.1修改Makefile
CROSS_COMPILE ?=arm-linux-
ARCH ?=arm
2.2
# make menuconfig
Busybox Settings--->
Build Options--->
[*] Build BusyBox as a static binary(no shared libs)
[*] Build with Large File Support(for accessing files>2GB)
[]Don’t use /usr
Applets links (as soft-links) --->
(./_install) BusyBox installation prefix
[*] vi-style line editing commands
[*]Fancy shell prompts
Linux Module Utilities--->
(/lib/modules)Default directory containing modules
(modules.dep)Default name of modules.dep
[ ] simplified modutils
[*] insmod
[*] rmmod
[*] lsmod
[*] modprobe
-----options common to multiple modutils
[ ] support version 2.2/2.4 Linux kernels
[*]Support tainted module checking with new kernels
[*]Support for module .aliases file
[*] support for modules.symbols file
Linux System Utilities --->
[*]Support /etc/mdev.conf
[*]Support command execution at device addition/removal
# make
# make install
编译出错:
networking/interface.c:818: error: `ARPHRD_INFINIBAND undeclared here (not in a function)
networking/interface.c:818: error: initializer element is not constant
networking/interface.c:818: error: (near initialization for `ib_hwtype.type)
make[1]: *** [networking/interface.o]
make: *** [networking]
解决:在networking/interface.c文件中添加:
#define ARPHRD_INFINIBAND 32
编译后,在rootfs目录下会生成目录bin、sbin、usr和文件linuxrc的内容
3.
# mkdir dev etc lib proc sys mnt tmp var home boot root
# mkdir usr/lib usr/modules
# mkdir etc/init.d etc/sysconfig
# mkdir mnt/etc mnt/jffs2 mnt/data mnt/temp
# mkdir var/lib var/lock var/run var/tmp
# chmod 1777 tmp
# chmod 1777 var/tmp
# sudo mknod -m 600 dev/console c 5 1
# sudo mknod -m 600 dev/null c 1 3
这两个设备节点需要root用户建立,具体原因有待研究
4.
4.1 etc/mdev.conf文件,内容可有可无。
4.2 passwd、group、shadow文件,手动、自动创建
手动创建是根据规范手动编写这三个文件内容
# cat passwd
root:x:0:0:root:/root:/bin/sh
passwd一共由7个字段组成,6个冒号将其隔开。它们的含义分别为:
1
2
3
4
5
6
7
#cat group
root:x:0:
group一共由4个字段组成,3个冒号将其隔开,它们的含义分别为:
1
2
3
4
#cat shadow
root:$1$3jZ93Mwq$oaeef6lWIuThavs8wD0Wh1:0:0:99999:7:::
shadow一共由9个字段组成,8个冒号将其隔开,它们的含义分别为:
1
2
3
4
5
6
7
8
9
自动创建是使用busybox提供的adduser和passwd
在文件系统正常运行起来后,使用adduser命令,使用方法为:
#adduser root
然后就会在etc目录下自动生成passwd
passwd:unknown uid 0
这表示不能为该用户设置密码,此时你会发现要passwd命令也无法使用。解决的办法是,打开passwd文件,其内容为:
root:x:1000:1000:Linux User…:/home/root:/bin/sh
将用户ID和组ID均更改为0
打开group文件,其内容为:
root:x:1000:
同样将组ID改为0
然后,passwd命令就可以正常使用了。这时为root用户设置口令:
#passwd root
根据提示输入密码。其中,root用户登陆后的目录可以手动进行更改。
4.3 etc/inittab文件:
::sysinit:/etc/init.d/rcS
s3c2410_serial0::ask
ARM根文件系 相关文章:
- Windows CE 进程、线程和内存管理(11-09)
- RedHatLinux新手入门教程(5)(11-12)
- uClinux介绍(11-09)
- openwebmailV1.60安装教学(11-12)
- Linux嵌入式系统开发平台选型探讨(11-09)
- Windows CE 进程、线程和内存管理(二)(11-09)