FreeBSD src
Go to file
Simon J. Gerraty b17ff922d4 Merge from head
2015-05-26 21:52:57 +00:00
bin Convert to use libxo. Document use of libxo as well. 2015-05-22 23:07:55 +00:00
cddl Remove stray DEBUG_FLAGS=-g that's been here since the initial import. 2015-05-21 14:36:12 +00:00
contrib ipf(1): Use strchr(3) instead of deprecated index(3) 2015-05-22 18:31:26 +00:00
crypto Merge OpenSSL 1.0.1j. 2014-10-15 19:12:05 +00:00
etc Adjust default argument construction for -c to be getopt compliant for 2015-05-22 21:33:13 +00:00
games Merge from head@274682 2014-11-19 01:07:58 +00:00
gnu all is MAIN target 2014-11-30 18:46:34 +00:00
include Remove clause 3 and 4 from the license 2015-05-21 08:38:25 +00:00
kerberos5 Make kerberos use the same sqlite libraries as other sqlite consumer. 2015-05-20 18:56:29 +00:00
lib Remove the stray DEBUG_FLAGS=-g line that snuck in with the 2015-05-21 14:36:11 +00:00
libexec Merge from head@274682 2014-11-19 01:07:58 +00:00
release Use mkimg(1) to create the i386 memstick images, similar to 2015-05-23 00:32:58 +00:00
rescue Merge from head@274682 2014-11-19 01:07:58 +00:00
sbin Bring back support for checking tables via "ipfw -n". 2015-05-19 18:29:13 +00:00
secure Merge from head@274682 2014-11-19 01:07:58 +00:00
share Merge from head 2015-05-26 21:52:57 +00:00
sys Fix a lock up where we enter swapper() with interrupts disabled. 2015-05-23 23:08:16 +00:00
targets Renamed pkgs/ targets/ 2014-11-30 18:45:46 +00:00
tests Only reparent a traced process to its old parent if the tracing process is 2015-05-22 11:04:54 +00:00
tools Mark libgomp.so.1 as an old lib not an old file 2015-05-21 15:05:46 +00:00
usr.bin Advertise ctlstat(8) a little better. 2015-05-22 11:59:37 +00:00
usr.sbin Fix a syntax error in bsdinstall/zfsboot 2015-05-22 15:57:42 +00:00
.arcconfig Update the URL to the phabricator instance. 2014-08-14 16:25:43 +00:00
.arclint arc: add linting for python files 2014-06-02 00:21:42 +00:00
COPYRIGHT
LOCKS
MAINTAINERS Add freebsd-testing and myself to MAINTAINERS for contrib/netbsd-tests and 2014-11-16 19:47:29 +00:00
Makefile If we are doing META_MODE use targets/Makefile as top-level 2014-11-30 18:50:15 +00:00
Makefile.inc1 _Really_, _Really_ fix buildworld by moving the conditionals down, fixing some 2015-05-21 05:02:08 +00:00
ObsoleteFiles.inc Removed files not installed anymore with mandoc 2015-05-21 13:04:14 +00:00
README
UPDATING Switch TI platform support code from using FreeBSD's custom-baked DTS 2015-05-22 03:16:18 +00:00

This is the top level of the FreeBSD source directory.  This file
was last revised on:
$FreeBSD$

For copyright information, please see the file COPYRIGHT in this
directory (additional copyright information also exists for some
sources in this tree - please see the specific source directories for
more information).

The Makefile in this directory supports a number of targets for
building components (or all) of the FreeBSD source tree, the most
commonly used one being ``world'', which rebuilds and installs
everything in the FreeBSD system from the source tree except the
kernel, the kernel-modules and the contents of /etc.  The ``world''
target should only be used in cases where the source tree has not
changed from the currently running version.  See:
http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/makeworld.html
for more information, including setting make(1) variables.

The ``buildkernel'' and ``installkernel'' targets build and install
the kernel and the modules (see below).  Please see the top of
the Makefile in this directory for more information on the
standard build targets and compile-time flags.

Building a kernel is a somewhat more involved process, documentation
for which can be found at:
   http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/kernelconfig.html
And in the config(8) man page.
Note: If you want to build and install the kernel with the
``buildkernel'' and ``installkernel'' targets, you might need to build
world before.  More information is available in the handbook.

The sample kernel configuration files reside in the sys/<arch>/conf
sub-directory (assuming that you've installed the kernel sources), the
file named GENERIC being the one used to build your initial installation
kernel.  The file NOTES contains entries and documentation for all possible
devices, not just those commonly used.  It is the successor of the ancient
LINT file, but in contrast to LINT, it is not buildable as a kernel but a
pure reference and documentation file.


Source Roadmap:
---------------
bin		System/user commands.

cddl		Various commands and libraries under the Common Development
		and Distribution License.

contrib		Packages contributed by 3rd parties.

crypto		Cryptography stuff (see crypto/README).

etc		Template files for /etc.

games		Amusements.

gnu		Various commands and libraries under the GNU Public License.
		Please see gnu/COPYING* for more information.

include		System include files.

kerberos5	Kerberos5 (Heimdal) package.

lib		System libraries.

libexec		System daemons.

release		Release building Makefile & associated tools.

rescue		Build system for statically linked /rescue utilities.

sbin		System commands.

secure		Cryptographic libraries and commands.

share		Shared resources.

sys		Kernel sources.

tools		Utilities for regression testing and miscellaneous tasks.

usr.bin		User commands.

usr.sbin	System administration commands.


For information on synchronizing your source tree with one or more of
the FreeBSD Project's development branches, please see:

  http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/synching.html