linux内核-源码树(2.6.32) - 枯鱼的博客
Posted petewell
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了linux内核-源码树(2.6.32) - 枯鱼的博客相关的知识,希望对你有一定的参考价值。
/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) - 枯鱼的博客的主要内容,如果未能解决你的问题,请参考以下文章