// The Directory Tree of Linux Kernel 0.11
\---linux-0.11  
+---boot       // Assembly programs to boot system
+---fs         // File System
+---include    // Head Files (*.h)
| +---asm      // Related to CPU architecture
| +---linux    // Exclusive used by Kernel
| \---sys      // Data structures of System
+---init       // Programs to initialize Kernel
+---kernel     // Process Scheduler, Signal Handler, System Call of Kernel
| +---blk_drv  // Block Device Driver
| +---chr_drv  // Character Device Driver
| \---math     // Math Co-processor Simulator
+---lib        // Kernel Function Library
+---mm         // Memory Management Programs
\---tools      // Tools to generate Kernel Image file

相关文章: