Go to file
Tai-hwa Liang 59bc2f0952 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
MFC after:	2 weeks

(cherry picked from commit a0d6d0d0b9)
2021-05-26 00:27:12 +00:00
bin MFC r310367: 2016-12-26 16:45:00 +00:00
cddl MFstable/10 r305233: 2016-09-01 19:36:39 +00:00
contrib MFC r357226: 2020-01-31 20:04:32 +00:00
crypto Backport OpenSSL commit af58be768ebb690f78530f796e92b8ae5c9a4401: 2016-11-02 07:09:31 +00:00
etc MFC r304779, r304780, r304781, r304782, r304802 2016-08-27 02:53:21 +00:00
games MFC r283929: Correct grdc(1) 12-hour display between 12:00 and 13:00 2015-09-24 19:42:32 +00:00
gnu MFC r289410: 2018-01-10 21:59:21 +00:00
include Add posix_tnode to <search.h>. 2016-10-29 15:04:33 +00:00
kerberos5 MFC: r250177 2013-05-16 00:56:41 +00:00
lib MFC r362623: 2020-06-30 15:53:52 +00:00
libexec MFstable/10 r296756: 2016-03-12 19:11:45 +00:00
release Fix whitespace nit, not functional changes. 2016-12-07 19:01:38 +00:00
rescue MFC r275435: Add sleep(1) to /rescue. 2015-01-02 18:57:51 +00:00
sbin MFC r309027: 2016-11-30 01:41:40 +00:00
secure Fix multiple OpenSSL vulnerabilities as published in 2016-03-07 16:18:07 +00:00
share MFC r326362: 2017-12-08 15:30:59 +00:00
sys if_firewire: fixing panic upon packet reception for VNET build 2021-05-25 23:53:59 +00:00
tools MFstable/10 r311552: 2017-01-06 21:36:51 +00:00
usr.bin MFC r308808, r308809: Lookup locale when print all keywords as well. 2016-11-26 02:53:35 +00:00
usr.sbin arp(8): fixing the deletion failure of IEEE1394 associated addresses 2021-05-26 00:27:12 +00:00
.arcconfig MFstable/10 r292879: 2015-12-29 18:33:43 +00:00
.arclint MFstable/10 r292879: 2015-12-29 18:33:43 +00:00
COPYRIGHT MFC r292983: 2015-12-31 11:25:45 +00:00
LOCKS Update LOCKS syntax. 2008-06-05 19:47:58 +00:00
MAINTAINERS MFH (r263160): remove lukemftpd 2014-08-23 15:07:02 +00:00
Makefile MFC r295161,r296014: 2016-03-12 19:01:45 +00:00
Makefile.inc1 MFC r309332: 2016-12-06 07:33:49 +00:00
Makefile.mips Retire TARGET_ABI. 2011-01-07 20:26:33 +00:00
ObsoleteFiles.inc MFC 300253: Remove dangling references to rman_await_resource(). 2016-07-24 04:38:50 +00:00
README MFC: sync the version of netmap with the one in HEAD, including device 2013-05-10 16:16:33 +00:00
UPDATING UPDATING: move the note about the Linux kernel version bump to the top and 2016-02-29 18:58:26 +00:00

$FreeBSD$
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