标签:oid try console void entry 初始化 管理 ext ade
bootloader 最后调用
((void(*))(void) ()ELF->e_entry& 0xffffff)() ;
在 ld 进行连接的时候 钦定了kern_init 作为程序的入口,所以这里就调用了 init.c 中的 kern_init 函数
先extenrn 了 edata end 实际上是连接时候的 是bss 段区的起始段和终止段
直接将bss 段清零(??)
调用cons_init() 初始化 console 这个要说起来还蛮复杂的
调用pmm_init() 初始化内存管理
pic_init() 初始化 interrupt controller
标签:oid try console void entry 初始化 管理 ext ade
原文地址:https://www.cnblogs.com/sfzyk/p/8978176.html