linux-2.6.36内核

start       arch/arm/boot/compressed/head.S

arch/arm/kernel/head.S

start_kernel()    init/main.c

linux通用内核启动代码在init/main.c中:

汇编执行完后跳转到start_kernel()开始C 执行。

...

setup_arch(&command_line);      //把.config中配置的CONFIG_CMDLINE赋予command_line输出

...

setup_command_line(command_line);     //boot_command_line =>save_command_line;

//command_line =>static_command_line;

...

printk(KERN_NOTICE ''kernel command line:%s\n", boot_command_line);

...

console_init();

...

rest_init();    //创建两线程kernel_init /kthreadd

|----------->kernel_thread(kernel_init, NULL, CLONE_FS | CLONE_SIGHAND);

|----------->kernel_thread(kthreadd, NULL, CLONE_FS | CLONE_FILES);            //kernel/kthread.c

pid_t kernel_thread(int (*fn)(void *), void *args, unsigned long  flags);  //arch/arm/kernel/process.c

----------------------------------------------------------------------------------------------------------------------------------------

kernel_init()                    //init/main.c

|---------->do_basic_setup()   //解压了相关文件系统

sys_open("/dev/console", O_RDWR, 0) <0

printk(KERN_WARNING "Warning: unable to open an initial console.\n");

if(! ramdisk_execute_command)

ramdisk_execute_command = "/init";             //initramfs 默认启动进程衔接

if(sys_access(ramdisk_execute_command, 0) != 0){

ramdisk_execute_command = NULL;

prepare_namespace();  //处理除ramdisk和initramfs外的其他文件系统。

}

|---------->init_post();

// ramdisk_execute_command <= "rdinit="

// execute_command <= "init="   //bootargs传递

-----------------------------------------------------------------------------------------------------------------

kernel_init()-->do_basic_setup()

mm/CPU已运行,没有设备被创建。

786 /*
787  * Ok, the machine is now initialized. None of the devices
788  * have been touched yet, but the CPU subsystem is up and
789  * running, and memory and process management works.
790  *
791  * Now we can finally start doing some real work..
792  */
793 static void __init do_basic_setup(void)
794 {
795     cpuset_init_smp();
796     usermodehelper_init();
797     init_tmpfs();
798     driver_init();
799     init_irq_proc();
800     do_ctors();
801     do_initcalls();
802 }

773 extern initcall_t __initcall_start[], __initcall_end[], __early_initcall_end    [];
774
775 static void __init do_initcalls(void)
776 {
777     initcall_t *fn;
778
779     for (fn = __early_initcall_end; fn < __initcall_end; fn++)
780         do_one_initcall(*fn);
781
782     /* Make sure there is no pending stuff from the initcall sequence */
783     flush_scheduled_work();
784 }
kernel_init()  -> do_basic_setup() -> do_initcalls() ->rootfs_initcall(populate_rootfs) -> populate_rootfs()

ramdisk或initramfs的处理都是通过populate_rootfs()实现,位于init/initramfs.c中。

-----------------------------------------------------------------------------------------------------------------

init_post()      // init/main.c

if (ramdisk_execute_command) {
835         run_init_process(ramdisk_execute_command);
836         printk(KERN_WARNING "Failed to execute %s\n",
837                 ramdisk_execute_command);
838     }
839
840     /*
841      * We try each of these until one succeeds.
842      *
843      * The Bourne shell can be used instead of init if we are
844      * trying to recover a really broken machine.
845      */
846     if (execute_command) {
847         run_init_process(execute_command);
848         printk(KERN_WARNING "Failed to execute %s.  Attempting "
849                     "defaults...\n", execute_command);
850     }
851     run_init_process("/sbin/init");
852     run_init_process("/etc/init");
853     run_init_process("/bin/init");
854     run_init_process("/bin/sh");
855
856     panic("No init found.  Try passing init= option to kernel. "
857           "See Linux Documentation/init.txt for guidance.");

linux系统启动完成后,任务都交给init进程完成。
---------------------------------------------------------------------------------------------------------

ramdisk和initramfs都是通过populate_rootfs()实现;

jffs,yaffs等通过prepare_namespace()实现,在do_mounts.c中。

linux挂载根文件系统过程的更多相关文章

  1. 根文件系统制作、NFS配置与安装及利用NFS挂载根文件系统

    最近打算从头开始制作根文件系统,下面是开发过程. 一.根文件系统的制作 0.FHS(Filesystem Hierarchy Standard)标准介绍 该标准规定了根目录下各个子目录的名称及其存放的 ...

  2. 用Qemu模拟vexpress-a9 (四) --- u-boot引导kernel,用nfs挂载根文件系统

    环境介绍 Win7 64 + Vmware 11 + ubuntu14.04 32 u-boot 版本:u-boot-2015-04 Linux kernel版本:linux-3.16.y busyb ...

  3. 目标板通过nfs挂载根文件系统

    目标板挂载根文件系统的方法有两种(这里所说的服务端就是ubuntu,Ubuntu已经成功安装了nfs服务,并且保证服务端与目标板ping 通) 第一种:等待开发板启动之后去挂载,此时文件系统从Flas ...

  4. 嵌入式Linux内核+根文件系统构建工具-Buildroot 快速入手指导【转】

    本文转载自:https://my.oschina.net/freeblues/blog/596448 嵌入式Linux内核+根文件系统构建工具-Buildroot 快速入手指导 buildroot 是 ...

  5. 【原创】-- nfs安装配置及使用,挂载根文件系统

    环境:ubuntu14.04(非虚拟机),OK6410 环境搭建: (1) #sudo apt-get install nfs-kernel-server 如果已经是最新版本了,无需安装 (2) 建立 ...

  6. Linux制作根文件系统笔记

    测试平台 宿主机平台:Ubuntu 12.04.4 LTS 目标机:Easy-ARM IMX283 目标机内核:Linux 2.6.35.3 交叉编译器:arm-linux-gcc 4.4.4 Bus ...

  7. Linux之根文件系统的构建20160611

    说一下LINUX根文件系统的构建: 制作文件系统 1. 交叉编译busybox 安装:make install CONFIG_PREFIX=/work/nfs_root/fs_mini_mdev_ne ...

  8. 使用ubifs格式的根文件系统---过程记录

    配置内核,使其支持ubifs文件系统 1)Device Drivers  --->Memory Technology Device (MTD) support  --->UBI - Uns ...

  9. linux内核挂载根文件系统时报错”VFS: Cannot open root device "ram0" or unknown-block(0,0): error -6“如何处理?

    1. 通过error -6得到: #define ENXIO            6      /* No such device or address */ 2. 解决办法 使能CONFIG_BL ...

随机推荐

  1. 用 python 爬虫抓站的一些技巧总结

    学用python也有3个多月了,用得最多的还是各类爬虫脚本:写过抓代理本机验证的脚本,写过在discuz论坛中自动登录自动发贴的脚本,写过自动收邮件的脚本,写过简单的验证码识别的脚本,本来想写goog ...

  2. windows平台下压缩tar.gz

    windows平台下很多压缩软件(如360压缩)都支持tar.gz的解压,但不支持压缩 推荐一款支持tar.gz压缩的软件7zip 下面介绍可视化和命令行两种操作方式将文件压缩为tar.gz 可视化操 ...

  3. jquery ajax调用WCF,采用System.ServiceModel.WSHttpBinding协议

    采用System.ServiceModel.WSHttpBinding或者basicHttpBinding 协议.客户端就不能直接在前端通过url直接访问服务了 它是基于SOAP协议的bing,会采用 ...

  4. OAF_OAF控件系列5 - Train的实现(案例)

    2014-06-02 Created By BaoXinjian

  5. Python2 cmp() 函数

    描述 cmp(x,y) 函数用于比较2个对象,如果 x < y 返回 -1, 如果 x == y 返回 0, 如果 x > y 返回 1. 语法 以下是 cmp() 方法的语法: cmp( ...

  6. JSP页面中文乱码

    近期搭建了一个JAVA WEB项目,引入了国际化的ResourceBundle. 顺便赞一个,Eclipse Mars,自带了中文转unicode编码的功能. ① 根据语言选择,初始化Resource ...

  7. WinForm中变Enter键为Tab键实现焦点转移的方法

    if (e.KeyCode == Keys.Enter) { //this.SelectNextControl(this.ActiveControl,true, true, true, true); ...

  8. php将session保存到数据库的类实例(php版本需要大于5.4)

    这里实现了一个把session存储到数据库的类,包括数据表的创建.类的使用.php的配置. 可以更好地进行用户控制管理. 做项目的时候,有一个需求,是要实现禁止一个账号两处登录.同时要统计当前在线用户 ...

  9. [转]如何使用Fiddler抓取指定浏览器的数据包

    参考资料:https://www.cnblogs.com/lauren1003/p/6519630.html 使用fiddler抓取不到浏览器的包时常用的解决办法: 1.必须先打开Fiddler,再打 ...

  10. C++学习笔记16,C++11中的显式的默认构造函数以及显示删除默认构造函数

    在早期的C++中.假设须要一些接受一些參数的构造函数,同一时候须要一个不接收不论什么參数的默认构造函数.就必须显示地编写空的默认构造函数.比如: //tc.h class A{ private: in ...