Go to file
Tai-hwa Liang 2b3ce27cae arp(8): fixing the deletion failure of IEEE1394 associated addresses
Without this, 'arp -d ${IEEE1394_ADDRESS}' gives the following error:

	arp: delete: cannot locate 10.0.0.71

Reviewed by:	glebius

(cherry picked from commit a0d6d0d0b9)
2022-09-14 13:10:15 +00:00
bin MFC r270256, r298640: 2016-04-29 13:58:01 +00:00
cddl MFC r277433: MFV r277432: 2015-02-04 00:52:58 +00:00
contrib MFC r301291: 2017-12-12 12:59:04 +00:00
crypto MFS: r295060, r296462, r296597-296598, r299053, r306229, r306335, r308200 2018-01-04 01:21:24 +00:00
etc MFC r255949: Create /var/cache with mode 0755. 2016-03-01 17:33:27 +00:00
games MFC 248200: Remove fortunes-o from the base system. 2013-06-03 17:34:48 +00:00
gnu MFC r204227: Remove -b .orig from patch commands, since it's the default. 2015-02-20 01:03:44 +00:00
include MF9: r237968, r251504: 2013-06-07 21:39:46 +00:00
kerberos5 MFC: r250177 2013-06-14 00:33:55 +00:00
lib MFC r362623: 2020-06-30 15:53:52 +00:00
libexec MFC: r279364 2015-03-06 22:35:01 +00:00
release Document SA-15:14 through SA-15:17. 2015-07-28 20:38:52 +00:00
rescue MFC: r272245 2014-11-03 06:34:28 +00:00
sbin MFC r279324: 2015-03-05 10:12:28 +00:00
secure Merge OpenSSL 0.9.8zh. 2018-01-04 00:58:30 +00:00
share MFC r326362: 2017-12-08 15:37:36 +00:00
sys MFC r338200: Adding device ID for Terratec SiXPack 5.1+. 2018-12-26 04:06:16 +00:00
tools MFC 281887: 2015-06-02 19:20:39 +00:00
usr.bin MFC r206424: (by rdivacky in 2010) 2016-03-15 03:20:24 +00:00
usr.sbin arp(8): fixing the deletion failure of IEEE1394 associated addresses 2022-09-14 13:10:15 +00:00
COPYRIGHT MFC r276462: 2014-12-31 10:05:42 +00:00
LOCKS Update LOCKS syntax. 2008-06-05 19:47:58 +00:00
MAINTAINERS MFC r241828,r241891: 2012-10-26 00:44:34 +00:00
Makefile MFC r255286: don't stop the whole universe build if one kernel fails. 2014-08-20 00:06:54 +00:00
Makefile.inc1 When building on a newer host, boostrap using lex from the stable-8 source 2016-03-15 04:03:15 +00:00
ObsoleteFiles.inc MFC r271992 2014-11-05 16:27:27 +00:00
README
UPDATING Add a note on the second sendmail fix for WeakDH interoperability. 2015-06-25 01:57:47 +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.

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