NameDateSize

..Today47

amd64/H27-Nov-202313

arm/H10-Nov-202117

arm64/H22-Feb-202418

bsm/H25-Aug-202310

cam/H10-Feb-202427

cddl/H22-Jun-20216

compat/H22-Sep-202110

conf/HToday56

contrib/H11-Mar-202324

crypto/H27-Nov-202324

ddb/H12-Apr-202434

dev/H11-Jan-2024299

dts/H17-Aug-202312

fs/H04-Feb-202324

gdb/H12-Apr-20249

geom/H23-Apr-202446

gnu/H22-Jun-20214

i386/H27-Nov-202310

isa/H15-Mar-202416

kern/HToday245

kgssapi/H27-Nov-202334

libkern/H27-Nov-202376

MakefileH A D17-Aug-20232 KiB

modules/HToday464

net/H27-Apr-2024118

net80211/H16-Apr-202476

netgraph/H25-Apr-2024106

netinet/H25-Apr-2024154

netinet6/H14-Apr-202459

netipsec/H23-Apr-202432

netlink/H29-Apr-202431

netpfil/H21-Dec-20215

netsmb/H27-Nov-202319

nfs/H27-Nov-202314

nfsclient/H27-Nov-20237

nfsserver/H27-Nov-20234

nlm/H27-Nov-202312

ofed/H22-Jun-20214

opencrypto/H27-Nov-202338

powerpc/H22-Jun-202119

README.mdH A D05-Aug-20232.7 KiB

riscv/H28-Feb-20248

rpc/H27-Apr-202444

security/H25-Aug-202323

sys/HToday361

teken/H14-Oct-202313

tests/H25-Jan-202410

tools/H18-Apr-202418

ufs/H22-Jun-20214

vm/HToday55

x86/H22-Jun-202113

xdr/H27-Nov-20238

xen/H22-Feb-202420

README.md

1FreeBSD Kernel Source:
2----------------------
3
4This directory contains the source files and build glue that make up the FreeBSD
5kernel and its modules, including both original and contributed software.
6
7Kernel configuration files are located in the `conf/` subdirectory of each
8architecture. `GENERIC` is the configuration used in release builds. `NOTES`
9contains documentation of all possible entries. `LINT` is a compile-only
10configuration used to maximize build coverage and detect regressions.
11
12Documentation:
13--------------
14
15Source code documentation is maintained in a set of man pages, under section 9.
16These pages are located in [`share/man/man9`](../share/man/man9), from the
17top-level of the src tree. Consult [`intro(9)`](https://man.freebsd.org/intro/9)
18for an overview of existing pages.
19
20Some additional high-level documentation of the kernel is maintained in the
21[Architecture Handbook](https://docs.freebsd.org/en/books/arch-handbook/).
22
23Source Roadmap:
24---------------
25| Directory | Description |
26| --------- | ----------- |
27| amd64 | AMD64 (64-bit x86) architecture support |
28| arm | 32-bit ARM architecture support |
29| arm64 | 64-bit ARM (AArch64) architecture support |
30| cam | Common Access Method storage subsystem - `cam(4)` and `ctl(4)` |
31| cddl | CDDL-licensed optional sources such as DTrace |
32| conf | kernel build glue |
33| compat | Linux compatibility layer, FreeBSD 32-bit compatibility |
34| contrib | 3rd-party imported software such as OpenZFS |
35| crypto | crypto drivers |
36| ddb | interactive kernel debugger - `ddb(4)` |
37| fs | most filesystems, excluding UFS, NFS, and ZFS |
38| dev | device drivers and other arch independent code |
39| gdb | kernel remote GDB stub - `gdb(4)` |
40| geom | GEOM framework - `geom(4)` |
41| i386 | i386 (32-bit x86) architecture support |
42| kern | main part of the kernel |
43| libkern | libc-like and other support functions for kernel use |
44| modules | kernel module infrastructure |
45| net | core networking code |
46| net80211 | wireless networking (IEEE 802.11) - `net80211(4)` |
47| netgraph | graph-based networking subsystem - `netgraph(4)` |
48| netinet | IPv4 protocol implementation - `inet(4)` |
49| netinet6 | IPv6 protocol implementation - `inet6(4)` |
50| netipsec | IPsec protocol implementation - `ipsec(4)` |
51| netpfil | packet filters - `ipfw(4)`, `pf(4)`, and `ipfilter(4)` |
52| opencrypto | OpenCrypto framework - `crypto(7)` |
53| powerpc | PowerPC/POWER (32 and 64-bit) architecture support |
54| riscv | 64-bit RISC-V architecture support |
55| security | security facilities - `audit(4)` and `mac(4)` |
56| sys | kernel headers |
57| tests | kernel unit tests |
58| ufs | Unix File System - `ffs(7)` |
59| vm | virtual memory system |
60| x86 | code shared by AMD64 and i386 architectures |
61