码迷,mamicode.com
首页 > 系统相关 > 详细

linux内核-源码树(2.6.32) - 枯鱼的博客

时间:2019-09-30 12:56:17      阅读:103      评论:0      收藏:0      [点我收藏+]

标签:ref   href   link   内存管理   vdso   har   镜像   ext2   安全   

/home/fishcried/Code/linux-2.6.32.61/
├── arch                                特定体系结构的源码,每个体系结构都有一个目录.
│?? ├── ...
│?? ├── x86
│?? │?? ├── boot                        引导相关
│?? │?? │?? ├── compressed              压缩内核处理
│?? │?? │?? └── tools                   生成压缩内核镜像的程序 
│?? │?? ├── configs
│?? │?? ├── crypto
│?? │?? ├── ia32
│?? │?? ├── include
│?? │?? │?? └── asm
│?? │?? ├── kernel                      内核核心部分
│?? │?? │?? ├── acpi
│?? │?? │?? ├── apic
│?? │?? │?? └── cpu
│?? │?? ├── kvm
│?? │?? ├── lguest
│?? │?? ├── lib                         硬件相关工具函数
│?? │?? ├── math-emu
│?? │?? ├── mm                          内存管理
│?? │?? │?? └── kmemcheck
│?? │?? ├── oprofile
│?? │?? ├── pci
│?? │?? ├── power
│?? │?? ├── vdso
│?? │?? │?? └── vdso32
│?? │?? ├── video
│?? │?? └── xen
│?? └── ...
├── block                               块设备I/O层
├── crypto                              加密API
│?? └── async_tx
├── Documentation                       内核源码文档
│?? ├── ...
│?? └── zh_CN                           正文翻译
├── drivers                             设备驱动程序
│?? ├── ...
│?? ├── block                           块设备
│?? ├── bluetooth                       蓝牙设备
│?? ├── cdrom                           cd
│?? ├── char                            字符设备
│?? ├── ide
│?? ├── net
│?? ├── pci
│?? ├── pcmcia
│?? ├── platform
│?? ├── scsi
│?? ├── serial
│?? ├── usb
│?? ├── video
│?? ├── virtio
│?? └── ...
├── firmware                            使用某些驱动程序而需要设备固件
├── fs                                  VFS和各种文件系统
│?? ├── ...
│?? ├── ext2
│?? ├── ext3
│?? ├── ext4
│?? └── ...
├── include                             头文件
│?? ├── acpi
│?? ├── asm-generic
│?? ├── asm-x86
│?? ├── crypto
│?? ├── ...
│?? ├── linux
│?? └── ...
├── init                                内核引导和初始化
├── ipc                                 进程间通信代码
├── kernel                              像调度等核心子系统
├── lib                                 通用内核函数
├── mm                                  内存管理
├── net                                 网络子系统
│?? ├── ...
│?? ├── bridge
│?? ├── core
│?? ├── ethernet
│?? ├── ipv4
│?? │?? └── netfilter
│?? ├── mac80211
│?? ├── netfilter
│?? │?? └── ipvs
│?? ├── netlabel
│?? ├── netlink
│?? ├── packet
│?? └── ...
├── samples                             实例代码
├── scripts                             编译内核所用的脚本
├── security                            安全模块
│?? ├── ...
│?? ├── selinux
│?? └── ...
├── sound                               语音子系统
├── tools                               linux开发中有用的工具
│?? └── perf
├── usr                                 initramfs
└── virt                                虚拟化基础结构

变更记录

Why Who When
create fishcired 2014-10-09

原文:大专栏  linux内核-源码树(2.6.32) - 枯鱼的博客


linux内核-源码树(2.6.32) - 枯鱼的博客

标签:ref   href   link   内存管理   vdso   har   镜像   ext2   安全   

原文地址:https://www.cnblogs.com/petewell/p/11612007.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!