OPNsense - FreeBSD source
Find a file
2019-11-13 16:34:45 +01:00
bin HBSD: sync up with hardened/11.2-releng/master branch 2018-10-07 14:26:34 +02:00
cddl Revert "dwatch: do not install" 2018-10-08 09:39:48 +02:00
contrib Import tzdata 2019c. 2019-10-23 07:38:13 +02:00
crypto HBSD: sync up with hardened/11.2-releng/master branch 2018-10-07 14:26:34 +02:00
etc pkg: better fix, keep vanilla file, but don't install 2018-10-11 10:34:02 +02:00
gnu src: switch to release/11.2.0 2018-10-07 14:26:34 +02:00
include src: switch to release/11.2.0 2018-10-07 14:26:34 +02:00
kerberos5 src: switch to release/11.2.0 2018-10-07 14:26:34 +02:00
lib libc: bump syslog line size to 8k 2019-11-11 07:09:44 +01:00
libexec MFS11 r342229: bootpd: validate hardware type 2018-12-19 22:44:03 +01:00
release HBSD: sync up with hardened/11.2-releng/master branch 2018-10-07 14:26:34 +02:00
rescue HBSD: sync up with hardened/11.2-releng/master branch 2018-10-07 14:26:34 +02:00
sbin Fix kernel stack disclosure in UFS/FFS. 2019-07-10 07:33:56 +02:00
secure HBSD: cleanups, smaller reverts and review 2018-10-07 17:29:46 +02:00
share Revis manual pages. [SA-18:08.tcp] 2018-10-07 19:52:35 +02:00
stand Fix deferred kernel loading breaks loader password. [EN-18:15.loader] 2018-11-28 07:02:17 +01:00
sys Add UPDATING entries and bump version numbers. 2019-11-13 16:34:45 +01:00
targets HBSD: sync up with hardened/11.2-releng/master branch 2018-10-07 14:26:34 +02:00
tests HBSD: cleanups, smaller reverts and review 2018-10-07 17:29:46 +02:00
tools HBSD: cleanups, smaller reverts and review 2018-10-07 17:29:46 +02:00
usr.bin Fix partially matching relative paths in xinstall. 2019-05-15 07:08:27 +02:00
usr.sbin Fix insufficient validation of guest-supplied data (e1000 device). 2019-08-18 06:17:34 +02:00
.arcconfig src: switch to release/11.2.0 2018-10-07 14:26:34 +02:00
.arclint src: switch to release/11.2.0 2018-10-07 14:26:34 +02:00
.gitattributes src: switch to release/11.2.0 2018-10-07 14:26:34 +02:00
.gitignore HBSD: sync up with hardened/11.2-releng/master branch 2018-10-07 14:26:34 +02:00
COPYRIGHT src: switch to release/11.2.0 2018-10-07 14:26:34 +02:00
credits-HardenedBSD HBSD: sync up with hardened/11.2-releng/master branch 2018-10-07 14:26:34 +02:00
LOCKS src: initial commit based on FreeBSD-10.0 2014-11-09 09:30:14 +01:00
MAINTAINERS src: switch to release/11.2.0 2018-10-07 14:26:34 +02:00
Makefile src: switch to release/11.2.0 2018-10-07 14:26:34 +02:00
Makefile.inc1 HBSD: sync up with hardened/11.2-releng/master branch 2018-10-07 14:26:34 +02:00
Makefile.libcompat HBSD: sync up with hardened/11.2-releng/master branch 2018-10-07 14:26:34 +02:00
ObsoleteFiles.inc HBSD: sync up with hardened/11.2-releng/master branch 2018-10-07 14:26:34 +02:00
README src: switch to release/11.2.0 2018-10-07 14:26:34 +02:00
UPDATING Add UPDATING entries and bump version numbers. 2019-11-13 16:34:45 +01:00
UPDATING-HardenedBSD HBSD: sync up with hardened/11.2-releng/master branch 2018-10-07 14:26:34 +02: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.  See build(7)
and 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.  See build(7), config(8),
and http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/kernelconfig.html
for more information.

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 kernel configuration files reside in the sys/<arch>/conf
sub-directory.  GENERIC is the default configuration used in release builds.
NOTES contains entries and documentation for all possible
devices, not just those commonly used.


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.

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.

stand		Boot loader sources.

sys		Kernel sources.

tests		Regression tests which can be run by Kyua.  See tests/README
		for additional information.

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:

  https://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/updating-src.html