Linux Kernel second note directory structure (generally modify files in the Arch and Drivers Directories) www.2cto.com unzip umentation kernel Documentation 4. drivers directory device driver program 5. fs directory stores implementation code of various file systems. Each sub-directory corresponds to the implementation of a file system. The common source program is used to implement the Virtual File System VFS www.2cto.com.
6. include the header file required by the Directory kernel. Platform-independent header files are in the include/linux subdirectory, and all platform-related files are placed in the corresponding subdirectory. 7. init directory kernel initialization code 8. ipc directory inter-process communication implementation code 9. kenerl directory most Linux core functions are implemented in this directory (Scheduler, process control, modular ). 10. lib directory Library File Code 11.mm directory files in the mm directory are used to implement the protocol code www.2cto.com for implementing the 12.net directory network that is not related to the architecture in memory management.
13. examples of kernel programming in the samples directory 14. script directory configuration kernel script 15. security directory SElinux Module 16. sound directory audio device driver 17. usr directory cpio command implementation 18. virt directory kernel Virtual Machine author hubi0952