Changes between Version 10 and Version 11 of wade/boot_process
- Timestamp:
- Feb 26, 2008, 4:33:35 PM (17 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
wade/boot_process
v10 v11 19 19 Boot loader 的責任還有一些常見的設計將會在第2節中討論。 20 20 21 21 22 == 1.2 Up and running == 22 23 當 kernel 開始執行的時候,它會初使化內部的資料結構、偵測硬體並驅動個別的驅動程式,直到它準備好執行 user-space 的程式。在它可以啟動 user-space 環境之前,它需要一個 file system ,所以它必需先掛載 root file system 。 23 24 24 為了要掛載 root file system , kernel 需要以下二項條件: 25 * 25 為了要掛載 Root file system , kernel 需要以下二項條件: 26 * 它必須知道媒體( media )位於 Root file system 的何處。 27 * 它必須透過驅動程式來存取媒體。 26 28 29 最常見的配置是,當 Root file system 是一種簡單的在 IDE 碟磁中的 ext2 分割時,root 裝置的號碼會以一個參數的型式送給 kernel。 27 30 28 31