Chinaunix首页 | 论坛 | 博客
  • 博客访问: 841105
  • 博文数量: 116
  • 博客积分: 1472
  • 博客等级: 上尉
  • 技术积分: 1725
  • 用 户 组: 普通用户
  • 注册时间: 2011-02-06 11:45
文章分类

全部博文(116)

文章存档

2015年(1)

2014年(42)

2013年(5)

2012年(19)

2011年(49)

我的朋友

分类:

2013-01-09 21:36:53

mount显示:
/dev/mtdblock0 on /flash type jffs2 (rw)
/dev/mtdblock0 on /etc type jffs2 (rw)

看到的现象是这样,我们再看一看启动脚本,为什么是这样:

先是mount /dev/mtdblock0 /flash
然后看一下/flash里内容,有一个目录 etc
然后mount --bind /flash/etc /etc
这样/etc里的内容就是/flash/etc里的内容了

用的linux是uClinux,image里包含了kernel+rootfs,当然也有/etc配置目录

这样处理的用处,大约是:
如果mtdblock0分区上已有etc配置文件,则不使用自带的
如果没有,则将其copy到mtdblock0上

下面是man mount对bind选项的说明:

Since Linux 2.4.0 it is possible to remount part of the file  hierarchy somewhere else. The call is

    mount --bind olddir newdir

After this call the same contents is accessible in two places.


阅读(1869) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~