NameDateSize

..22-Jun-202150

.arcconfigH A D05-Mar-201885

.arclintH A D01-Apr-2018448

.cirrus.ymlH A D03-Sep-2021488

.gitattributesH A D03-Oct-2019152

.gitignoreH A D20-Feb-2021184

bin/H08-Sep-201744

cddl/H20-Dec-201611

contrib/H06-May-202087

COPYRIGHTH A D07-Jan-20216 KiB

crypto/H20-Dec-20166

etc/H31-Jul-202097

gnu/H20-Dec-20169

include/H09-Nov-2020106

kerberos5/H30-May-201711

lib/H06-May-2020124

libexec/H04-Dec-201943

LOCKSH A D18-Aug-2016687

MAINTAINERSH A D06-May-20205.7 KiB

MakefileH A D21-Oct-201922.1 KiB

Makefile.inc1H A D22-Sep-202089.5 KiB

Makefile.libcompatH A D03-Oct-20196.1 KiB

ObsoleteFiles.incH A D25-Jul-2020499.8 KiB

READMEH A D12-Feb-20182.7 KiB

release/H16-Jan-202025

rescue/H20-Dec-20166

sbin/H03-Oct-2019100

secure/H25-Jan-202010

share/H20-Dec-201630

stand/H04-May-202037

sys/H12-Feb-201857

targets/H20-Dec-20166

testcode/H03-Jun-20213

tests/H20-Dec-20169

tools/H06-Feb-201820

UPDATINGH A D13-Sep-202078 KiB

usr.bin/H03-Dec-2020291

usr.sbin/H25-Jan-2020242

README

1This is the top level of the FreeBSD source directory.  This file
2was last revised on:
3$FreeBSD: stable/11/README 329145 2018-02-12 01:08:44Z kevans $
4
5For copyright information, please see the file COPYRIGHT in this
6directory (additional copyright information also exists for some
7sources in this tree - please see the specific source directories for
8more information).
9
10The Makefile in this directory supports a number of targets for
11building components (or all) of the FreeBSD source tree.  See build(7)
12and http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/makeworld.html
13for more information, including setting make(1) variables.
14
15The `buildkernel` and `installkernel` targets build and install
16the kernel and the modules (see below).  Please see the top of
17the Makefile in this directory for more information on the
18standard build targets and compile-time flags.
19
20Building a kernel is a somewhat more involved process.  See build(7), config(8),
21and http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/kernelconfig.html
22for more information.
23
24Note: If you want to build and install the kernel with the
25`buildkernel` and `installkernel` targets, you might need to build
26world before.  More information is available in the handbook.
27
28The kernel configuration files reside in the sys/<arch>/conf
29sub-directory.  GENERIC is the default configuration used in release builds.
30NOTES contains entries and documentation for all possible
31devices, not just those commonly used.
32
33
34Source Roadmap:
35---------------
36
37bin		System/user commands.
38
39cddl		Various commands and libraries under the Common Development
40		and Distribution License.
41
42contrib		Packages contributed by 3rd parties.
43
44crypto		Cryptography stuff (see crypto/README).
45
46etc		Template files for /etc.
47
48gnu		Various commands and libraries under the GNU Public License.
49		Please see gnu/COPYING* for more information.
50
51include		System include files.
52
53kerberos5	Kerberos5 (Heimdal) package.
54
55lib		System libraries.
56
57libexec		System daemons.
58
59release		Release building Makefile & associated tools.
60
61rescue		Build system for statically linked /rescue utilities.
62
63sbin		System commands.
64
65secure		Cryptographic libraries and commands.
66
67share		Shared resources.
68
69stand		Boot loader sources.
70
71sys		Kernel sources.
72
73tests		Regression tests which can be run by Kyua.  See tests/README
74		for additional information.
75
76tools		Utilities for regression testing and miscellaneous tasks.
77
78usr.bin		User commands.
79
80usr.sbin	System administration commands.
81
82
83For information on synchronizing your source tree with one or more of
84the FreeBSD Project's development branches, please see:
85
86  https://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/updating-src.html
87