xref: /freebsd/UPDATING (revision d10910e6cee0dca8be3d5a7fdbe404a15d9e7b52)
157199806SWarner LoshUpdating Information for FreeBSD current users
253dfde79SWarner Losh
3e72fd46aSWarner LoshThis file is maintained and copyrighted by M. Warner Losh
49698f2c0SWarner Losh<imp@village.org>.  See end of file for further details.  For commonly
59698f2c0SWarner Loshdone items, please see the COMMON ITEMS: section later in the file.
6e72fd46aSWarner Losh
72c724730SWarner LoshItems affecting the ports and packages system can be found in
82c724730SWarner Losh/usr/ports/UPDATING.  Please read that file before running
94f638121SWarner Loshportupgrade.
102c724730SWarner Losh
11c15e0967SKen SmithNOTE TO PEOPLE WHO THINK THAT FreeBSD 8.x IS SLOW:
12c15e0967SKen Smith	FreeBSD 8.x has many debugging features turned on, in
1369f7bcf3SWarner Losh	both the kernel and userland.  These features attempt to detect
1469f7bcf3SWarner Losh	incorrect use of system primitives, and encourage loud failure
1569f7bcf3SWarner Losh	through extra sanity checking and fail stop semantics.  They
1669f7bcf3SWarner Losh	also substantially impact system performance.  If you want to
1769f7bcf3SWarner Losh	do performance measurement, benchmarking, and optimization,
1869f7bcf3SWarner Losh	you'll want to turn them off.  This includes various WITNESS-
1969f7bcf3SWarner Losh	related kernel options, INVARIANTS, malloc debugging flags
2069f7bcf3SWarner Losh	in userland, and various verbose features in the kernel.  Many
2169f7bcf3SWarner Losh	developers choose to disable these features on build machines
226bea5c3cSTom Rhodes	to maximize performance.  (To disable malloc debugging, run
236bea5c3cSTom Rhodes	ln -s aj /etc/malloc.conf.)
24efc06131SSam Leffler
25a091d2a5SAndrew Thompson20090309:
26d10910e6SBruce M Simpson	IGMPv3 and Source-Specific Multicast (SSM) have been merged
27d10910e6SBruce M Simpson	to the IPv4 stack. VIMAGE hooks are in but not yet used.
28d10910e6SBruce M Simpson
29d10910e6SBruce M Simpson	For kernel developers, the most important changes are that the
30d10910e6SBruce M Simpson	ip_output() and ip_input() paths no longer take the IN_MULTI_LOCK(),
31d10910e6SBruce M Simpson	and this lock has been downgraded to a non-recursive mutex.
32d10910e6SBruce M Simpson
33d10910e6SBruce M Simpson	Transport protocols (UDP, Raw IP) are now responsible for filtering
34d10910e6SBruce M Simpson	inbound multicast traffic according to group membership and source
35d10910e6SBruce M Simpson	filters. The imo_multicast_filter() KPI exists for this purpose.
36d10910e6SBruce M Simpson	Transports which do not use multicast (SCTP, TCP) already reject
37d10910e6SBruce M Simpson	multicast by default. Forwarding and receive performance may improve
38d10910e6SBruce M Simpson	as a mutex acquisition is no longer needed in the ip_input()
39d10910e6SBruce M Simpson	low-level input path.  in_addmulti() and in_delmulti() are shimmed
40d10910e6SBruce M Simpson	to new KPIs which exist to support SSM in-kernel.
41d10910e6SBruce M Simpson
42d10910e6SBruce M Simpson	For application developers, it is recommended that loopback of
43d10910e6SBruce M Simpson	multicast datagrams be disabled for best performance, as this
44d10910e6SBruce M Simpson	will still cause the lock to be taken for each looped-back
45d10910e6SBruce M Simpson	datagram transmission. The net.inet.ip.mcast.loop sysctl may
46d10910e6SBruce M Simpson	be tuned to 0 to disable loopback by default; it defaults to 1
47d10910e6SBruce M Simpson	to preserve the existing behaviour.
48d10910e6SBruce M Simpson
49d10910e6SBruce M Simpson	For systems administrators, to obtain best performance with
50d10910e6SBruce M Simpson	multicast reception and multiple groups, it is always recommended
51d10910e6SBruce M Simpson	that a card with a suitably precise hash filter is used. Hash
52d10910e6SBruce M Simpson	collisions will still result in the lock being taken within the
53d10910e6SBruce M Simpson	transport protocol input path to check group membership.
54d10910e6SBruce M Simpson
55d10910e6SBruce M Simpson	If deploying FreeBSD in an environment with IGMP snooping switches,
56d10910e6SBruce M Simpson	it is recommended that the net.inet.igmp.sendlocal sysctl remain
57d10910e6SBruce M Simpson	enabled; this forces 224.0.0.0/24 group membership to be announced
58d10910e6SBruce M Simpson	via IGMP.
59d10910e6SBruce M Simpson
60d10910e6SBruce M Simpson	The size of 'struct igmpstat' has changed; netstat needs to be
61d10910e6SBruce M Simpson	recompiled to reflect this.
62d10910e6SBruce M Simpson	Bump __FreeBSD_version to 800070.
63d10910e6SBruce M Simpson
64d10910e6SBruce M Simpson20090309:
65a091d2a5SAndrew Thompson	libusb20.so.1 is now installed as libusb.so.1 and the ports system
66a091d2a5SAndrew Thompson	updated to use it. This requires a buildworld/installworld in order to
67a091d2a5SAndrew Thompson	update the library and dependencies (usbconfig, etc). Its advisable to
68a091d2a5SAndrew Thompson	update your ports as the affected programs have had a revision bump.
69a091d2a5SAndrew Thompson
7065067cc8SKonstantin Belousov20090302:
719f960e98SKonstantin Belousov	A workaround is committed to allow the creation of System V shared
729f960e98SKonstantin Belousov	memory segment of size > 2 GB on the 64-bit architectures.
739f960e98SKonstantin Belousov	Due to a limitation of the existing ABI, the shm_segsz member
7465067cc8SKonstantin Belousov	of the struct shmid_ds, returned by shmctl(IPC_STAT) call is
759f960e98SKonstantin Belousov	wrong for large segments. Note that limits must be explicitely
7665067cc8SKonstantin Belousov	raised to allow such segments to be created.
7765067cc8SKonstantin Belousov
78176273eaSRobert Watson20090301:
79176273eaSRobert Watson	The layout of struct ifnet has changed, requiring a rebuild of all
80176273eaSRobert Watson	network device driver modules.
81176273eaSRobert Watson
82a13a5664SAndrew Thompson20090227:
83a13a5664SAndrew Thompson	The /dev handling for the new USB stack has changed, a
84a13a5664SAndrew Thompson	buildworld/installworld is required for libusb20.
85a13a5664SAndrew Thompson
8671e9286cSAndrew Thompson20090223:
8771e9286cSAndrew Thompson	The new USB2 stack has now been permanently moved in and all kernel and
88200dcf9aSAndrew Thompson	module names reverted to their previous values (eg, usb, ehci, ohci,
899c1e15b5SAndrew Thompson	ums, ...).  The old usb stack can be compiled in by prefixing the name
9071e9286cSAndrew Thompson	with the letter 'o', the old usb modules have been removed.
91a709c9a6SWarner Losh	Updating entry 20090216 for xorg and 20090215 for libmap may still
92a709c9a6SWarner Losh	apply.
9371e9286cSAndrew Thompson
94553bf6a4SMike Makonnen20090217:
95553bf6a4SMike Makonnen	The rc.conf(5) option if_up_delay has been renamed to
96553bf6a4SMike Makonnen	defaultroute_delay to better reflect its purpose. If you have
97553bf6a4SMike Makonnen	customized this setting in /etc/rc.conf you need to update it to
98553bf6a4SMike Makonnen	use the new name.
99553bf6a4SMike Makonnen
100bb71e4b6SAndrew Thompson20090216:
101bb71e4b6SAndrew Thompson	xorg 7.4 wants to configure its input devices via hald which does not
102bb71e4b6SAndrew Thompson	yet work with USB2. If the keyboard/mouse does not work in xorg then
103bb71e4b6SAndrew Thompson	add
104bb71e4b6SAndrew Thompson		Option "AllowEmptyInput" "off"
105bb71e4b6SAndrew Thompson	to your ServerLayout section.  This will cause X to use the configured
106cbb9c89eSMaxim Konovalov	kbd and mouse sections from your xorg.conf.
107bb71e4b6SAndrew Thompson
108e4edc14eSAndrew Thompson20090215:
109e4edc14eSAndrew Thompson	The GENERIC kernels for all architectures now default to the new USB2
110e4edc14eSAndrew Thompson	stack. No kernel config options or code have been removed so if a
111e4edc14eSAndrew Thompson	problem arises please report it and optionally revert to the old USB
112e4edc14eSAndrew Thompson	stack. If you are loading USB kernel modules or have a custom kernel
113e4edc14eSAndrew Thompson	that includes GENERIC then ensure that usb names are also changed over,
114cbb9c89eSMaxim Konovalov	eg uftdi -> usb2_serial_ftdi.
115e4edc14eSAndrew Thompson
116a709c9a6SWarner Losh	Older programs linked against the ports libusb 0.1 need to be
117a709c9a6SWarner Losh	redirected to the new stack's libusb20.  /etc/libmap.conf can
118a709c9a6SWarner Losh	be used for this:
119a709c9a6SWarner Losh		# Map old usb library to new one for usb2 stack
120a709c9a6SWarner Losh		libusb-0.1.so.8	libusb20.so.1
121a709c9a6SWarner Losh
12214943437SJohn Baldwin20090203:
12314943437SJohn Baldwin	The ichsmb(4) driver has been changed to require SMBus slave
12414943437SJohn Baldwin	addresses be left-justified (xxxxxxx0b) rather than right-justified.
12514943437SJohn Baldwin	All of the other SMBus controller drivers require left-justified
12614943437SJohn Baldwin	slave addresses, so this change makes all the drivers provide the
12714943437SJohn Baldwin	same interface.
12814943437SJohn Baldwin
12909f8c3ffSBjoern A. Zeeb20090201:
13009f8c3ffSBjoern A. Zeeb	INET6 statistics (struct ip6stat) was updated.
13109f8c3ffSBjoern A. Zeeb	netstat(1) needs to be recompiled.
13209f8c3ffSBjoern A. Zeeb
13374f91fb9SMaxim Sobolev20090119:
13474f91fb9SMaxim Sobolev	NTFS has been removed from GENERIC kernel on amd64 to match
13574f91fb9SMaxim Sobolev	GENERIC on i386. Should not cause any issues since mount_ntfs(8)
13674f91fb9SMaxim Sobolev	will load ntfs.ko module automatically when NTFS support is
13774f91fb9SMaxim Sobolev	actually needed, unless ntfs.ko is not installed or security
13874f91fb9SMaxim Sobolev	level prohibits loading kernel modules. If either is the case,
13974f91fb9SMaxim Sobolev	"options NTFS" has to be added into kernel config.
14074f91fb9SMaxim Sobolev
14124cb0f22SLawrence Stewart20090115:
14224cb0f22SLawrence Stewart	TCP Appropriate Byte Counting (RFC 3465) support added to kernel.
14324cb0f22SLawrence Stewart	New field in struct tcpcb breaks ABI, so bump __FreeBSD_version to
14424cb0f22SLawrence Stewart	800061. User space tools that rely on the size of struct tcpcb in
14524cb0f22SLawrence Stewart	tcp_var.h (e.g. sockstat) need to be recompiled.
14624cb0f22SLawrence Stewart
1475d55747eSAlexander Motin20081225:
1485d55747eSAlexander Motin	ng_tty(4) module updated to match the new TTY subsystem.
1495d55747eSAlexander Motin	Due to API change, user-level applications must be updated.
1505d55747eSAlexander Motin	New API support added to mpd5 CVS and expected to be present
1515d55747eSAlexander Motin	in next mpd5.3 release.
1525d55747eSAlexander Motin
153efc06131SSam Leffler20081219:
154a1c64cafSSam Leffler	With __FreeBSD_version 800060 the makefs tool is part of
155a1c64cafSSam Leffler	the base system (it was a port).
156efc06131SSam Leffler
157991f8615SKip Macy20081216:
158991f8615SKip Macy	The afdata and ifnet locks have been changed from mutexes to
159991f8615SKip Macy	rwlocks, network modules will need to be re-compiled.
1601d7e99caSJohn Baldwin
1616e6b3f7cSQing Li20081214:
1626e6b3f7cSQing Li	__FreeBSD_version 800059 incorporates the new arp-v2 rewrite.
1636e6b3f7cSQing Li	RTF_CLONING, RTF_LLINFO and RTF_WASCLONED flags are eliminated.
1646e6b3f7cSQing Li	The new code reduced struct rtentry{} by 16 bytes on 32-bit
1656e6b3f7cSQing Li	architecture and 40 bytes on 64-bit architecture. The userland
1666e6b3f7cSQing Li	applications "arp" and "ndp" have been updated accordingly.
1676e6b3f7cSQing Li	The output from "netstat -r" shows only routing entries and
1686e6b3f7cSQing Li	none of the L2 information.
1696e6b3f7cSQing Li
17033644623SSam Leffler20081130:
17133644623SSam Leffler	__FreeBSD_version 800057 marks the switchover from the
17233644623SSam Leffler	binary ath hal to source code. Users must add the line:
17333644623SSam Leffler
174c60b227cSSam Leffler	options	AH_SUPPORT_AR5416
17533644623SSam Leffler
17633644623SSam Leffler	to their kernel config files when specifying:
17733644623SSam Leffler
17833644623SSam Leffler	device	ath_hal
17933644623SSam Leffler
18033644623SSam Leffler	The ath_hal module no longer exists; the code is now compiled
18133644623SSam Leffler	together with the driver in the ath module.  It is now
18233644623SSam Leffler	possible to tailor chip support (i.e. reduce the set of chips
18333644623SSam Leffler	and thereby the code size); consult ath_hal(4) for details.
18433644623SSam Leffler
185db7f0b97SKip Macy20081121:
186db7f0b97SKip Macy	__FreeBSD_version 800054 adds memory barriers to
187db7f0b97SKip Macy	<machine/atomic.h>, new interfaces to ifnet to facilitate
188db7f0b97SKip Macy	multiple hardware transmit queues for cards that support
189db7f0b97SKip Macy	them, and a lock-less ring-buffer implementation to
190db7f0b97SKip Macy	enable drivers to more efficiently manage queueing of
191db7f0b97SKip Macy	packets.
192db7f0b97SKip Macy
193de2e1b35SXin LI20081117:
194de2e1b35SXin LI	A new version of ZFS (version 13) has been merged to -HEAD.
195de3a91a0SXin LI	This version has zpool attribute "listsnapshots" off by
196de3a91a0SXin LI	default, which means "zfs list" does not show snapshots,
197de2e1b35SXin LI	and is the same as Solaris behavior.
198de2e1b35SXin LI
19902d09f79SOleg Bulyzhin20081028:
20002d09f79SOleg Bulyzhin	dummynet(4) ABI has changed. ipfw(8) needs to be recompiled.
20102d09f79SOleg Bulyzhin
202e91c7c81SJoseph Koshy20081009:
203d8135f4aSNick Hibma	The uhci, ohci, ehci and slhci USB Host controller drivers have
204d8135f4aSNick Hibma	been put into separate modules. If you load the usb module
205d8135f4aSNick Hibma	separately through loader.conf you will need to load the
206d8135f4aSNick Hibma	appropriate *hci module as well. E.g. for a UHCI-based USB 2.0
207d8135f4aSNick Hibma	controller add the following to loader.conf:
208d8135f4aSNick Hibma
209d8135f4aSNick Hibma		uhci_load="YES"
210d8135f4aSNick Hibma		ehci_load="YES"
211d8135f4aSNick Hibma
212d8135f4aSNick Hibma20081009:
213e91c7c81SJoseph Koshy	The ABI used by the PMC toolset has changed.  Please keep
214e91c7c81SJoseph Koshy	userland (libpmc(3)) and the kernel module (hwpmc(4)) in
215e91c7c81SJoseph Koshy	sync.
216e91c7c81SJoseph Koshy
217bc093719SEd Schouten20080820:
218bc093719SEd Schouten	The TTY subsystem of the kernel has been replaced by a new
219bc093719SEd Schouten	implementation, which provides better scalability and an
220bc093719SEd Schouten	improved driver model. Most common drivers have been migrated to
221bc093719SEd Schouten	the new TTY subsystem, while others have not. The following
222bc093719SEd Schouten	drivers have not yet been ported to the new TTY layer:
223bc093719SEd Schouten
224bc093719SEd Schouten	PCI/ISA:
22566e7dc38SEd Schouten		cy, digi, rc, rp, sio
226bc093719SEd Schouten
227bc093719SEd Schouten	USB:
22866e7dc38SEd Schouten		ubser, ucycom
229bc093719SEd Schouten
230bc093719SEd Schouten	Line disciplines:
231bc093719SEd Schouten		ng_h4, ng_tty, ppp, sl, snp
232bc093719SEd Schouten
233bc093719SEd Schouten	Adding these drivers to your kernel configuration file shall
234bc093719SEd Schouten	cause compilation to fail.
235bc093719SEd Schouten
2369d965219SOllivier Robert20080818:
2379d965219SOllivier Robert	ntpd has been upgraded to 4.2.4p5.
2389d965219SOllivier Robert
239eaeb50d4SDag-Erling Smørgrav20080801:
240eaeb50d4SDag-Erling Smørgrav	OpenSSH has been upgraded to 5.1p1.
241eaeb50d4SDag-Erling Smørgrav
242eaeb50d4SDag-Erling Smørgrav	For many years, FreeBSD's version of OpenSSH preferred DSA
243eaeb50d4SDag-Erling Smørgrav	over RSA for host and user authentication keys.  With this
244eaeb50d4SDag-Erling Smørgrav	upgrade, we've switched to the vendor's default of RSA over
245eaeb50d4SDag-Erling Smørgrav	DSA.  This may cause upgraded clients to warn about unknown
246eaeb50d4SDag-Erling Smørgrav	host keys even for previously known hosts.  Users should
247eaeb50d4SDag-Erling Smørgrav	follow the usual procedure for verifying host keys before
248eaeb50d4SDag-Erling Smørgrav	accepting the RSA key.
249eaeb50d4SDag-Erling Smørgrav
250eaeb50d4SDag-Erling Smørgrav	This can be circumvented by setting the "HostKeyAlgorithms"
251eaeb50d4SDag-Erling Smørgrav	option to "ssh-dss,ssh-rsa" in ~/.ssh/config or on the ssh
252eaeb50d4SDag-Erling Smørgrav	command line.
253eaeb50d4SDag-Erling Smørgrav
254737d990aSXin LI	Please note that the sequence of keys offered for
255737d990aSXin LI	authentication has been changed as well.  You may want to
256737d990aSXin LI	specify IdentityFile in a different order to revert this
257737d990aSXin LI	behavior.
258737d990aSXin LI
259f4d811f0SEd Schouten20080713:
260f4d811f0SEd Schouten	The sio(4) driver has been removed from the i386 and amd64
261f4d811f0SEd Schouten	kernel configuration files. This means uart(4) is now the
262f4d811f0SEd Schouten	default serial port driver on those platforms as well.
263f4d811f0SEd Schouten
264f4d811f0SEd Schouten	To prevent collisions with the sio(4) driver, the uart(4) driver
265f4d811f0SEd Schouten	uses different names for its device nodes. This means the
266f4d811f0SEd Schouten	onboard serial port will now most likely be called "ttyu0"
267f4d811f0SEd Schouten	instead of "ttyd0". You may need to reconfigure applications to
268f4d811f0SEd Schouten	use the new device names.
269f4d811f0SEd Schouten
270db96ec0bSEd Schouten	When using the serial port as a boot console, be sure to update
271db96ec0bSEd Schouten	/boot/device.hints and /etc/ttys before booting the new kernel.
272db96ec0bSEd Schouten	If you forget to do so, you can still manually specify the hints
273db96ec0bSEd Schouten	at the loader prompt:
274db96ec0bSEd Schouten
275db96ec0bSEd Schouten		set hint.uart.0.at="isa"
276db96ec0bSEd Schouten		set hint.uart.0.port="0x3F8"
277db96ec0bSEd Schouten		set hint.uart.0.flags="0x10"
278db96ec0bSEd Schouten		set hint.uart.0.irq="4"
279db96ec0bSEd Schouten		boot -s
280db96ec0bSEd Schouten
281bdc03b37SMarcel Moolenaar20080609:
282bdc03b37SMarcel Moolenaar	The gpt(8) utility has been removed. Use gpart(8) to partition
283bdc03b37SMarcel Moolenaar	disks instead.
284bdc03b37SMarcel Moolenaar
28527f7c387SRoman Divacky20080603:
286a47444d5SRoman Divacky	The version that Linuxulator emulates was changed from 2.4.2
287a47444d5SRoman Divacky	to 2.6.16. If you experience any problems with Linux binaries
288a47444d5SRoman Divacky	please try to set sysctl compat.linux.osrelease to 2.4.2 and
289a47444d5SRoman Divacky	if it fixes the problem contact emulation mailing list.
290a47444d5SRoman Divacky
2912e598474SBjoern A. Zeeb20080525:
2922e598474SBjoern A. Zeeb	ISDN4BSD (I4B) was removed from the src tree. You may need to
2932e598474SBjoern A. Zeeb	update a your kernel configuration and remove relevant entries.
2942e598474SBjoern A. Zeeb
2954dcedde3SJulian Elischer20080509:
2964dcedde3SJulian Elischer	I have checked in code to support multiple routing tables.
297032e0bf8SMaxim Konovalov	See the man pages setfib(1) and setfib(2).
2984dcedde3SJulian Elischer	This is a hopefully backwards compatible version,
2994dcedde3SJulian Elischer	but to make use of it you need to compile your kernel
3004dcedde3SJulian Elischer	with options ROUTETABLES=2 (or more up to 16).
3014dcedde3SJulian Elischer
302de570baaSSam Leffler20080420:
303de570baaSSam Leffler	The 802.11 wireless support was redone to enable multi-bss
304de570baaSSam Leffler	operation on devices that are capable.  The underlying device
305de570baaSSam Leffler	is no longer used directly but instead wlanX devices are
306de570baaSSam Leffler	cloned with ifconfig.  This requires changes to rc.conf files.
3075318f840SWarner Losh	For example, change:
3085318f840SWarner Losh		ifconfig_ath0="WPA DHCP"
3095318f840SWarner Losh	to
3105318f840SWarner Losh		wlans_ath0=wlan0
3115318f840SWarner Losh		ifconfig_wlan0="WPA DHCP"
3120f95e625SWarner Losh	see rc.conf(5) for more details.  In addition, mergemaster of
3130f95e625SWarner Losh	/etc/rc.d is highly recommended.  Simultaneous update of userland
3140f95e625SWarner Losh	and kernel wouldn't hurt either.
315de570baaSSam Leffler
316de570baaSSam Leffler	As part of the multi-bss changes the wlan_scan_ap and wlan_scan_sta
317de570baaSSam Leffler	modules were merged into the base wlan module.  All references
318de570baaSSam Leffler	to these modules (e.g. in kernel config files) must be removed.
319de570baaSSam Leffler
320ff0af72cSJung-uk Kim20080408:
321ff0af72cSJung-uk Kim	psm(4) has gained write(2) support in native operation level.
322ff0af72cSJung-uk Kim	Arbitrary commands can be written to /dev/psm%d and status can
323ff0af72cSJung-uk Kim	be read back from it.  Therefore, an application is responsible
324ff0af72cSJung-uk Kim	for status validation and error recovery.  It is a no-op in
325ff0af72cSJung-uk Kim	other operation levels.
326ff0af72cSJung-uk Kim
327e4c67b94SJeff Roberson20080312:
328e4c67b94SJeff Roberson	Support for KSE threading has been removed from the kernel.  To
329e4c67b94SJeff Roberson	run legacy applications linked against KSE libmap.conf may
330e4c67b94SJeff Roberson	be used.  The following libmap.conf may be used to ensure
331e4c67b94SJeff Roberson	compatibility with any prior release:
332e4c67b94SJeff Roberson
333e4c67b94SJeff Roberson	libpthread.so.1 libthr.so.1
334e4c67b94SJeff Roberson	libpthread.so.2 libthr.so.2
335e4c67b94SJeff Roberson	libkse.so.3 libthr.so.3
336e4c67b94SJeff Roberson
3378775db6fSMarcel Moolenaar20080301:
3388775db6fSMarcel Moolenaar	The layout of struct vmspace has changed. This affects libkvm
3398775db6fSMarcel Moolenaar	and any executables that link against libkvm and use the
3408775db6fSMarcel Moolenaar	kvm_getprocs() function. In particular, but not exclusively,
3418775db6fSMarcel Moolenaar	it affects ps(1), fstat(1), pkill(1), systat(1), top(1) and w(1).
3428775db6fSMarcel Moolenaar	The effects are minimal, but it's advisable to upgrade world
3438775db6fSMarcel Moolenaar	nonetheless.
3448775db6fSMarcel Moolenaar
345df09ebc0SJack F Vogel20080229:
346df09ebc0SJack F Vogel	The latest em driver no longer has support in it for the
347df09ebc0SJack F Vogel	82575 adapter, this is now moved to the igb driver. The
348df09ebc0SJack F Vogel	split was done to make new features that are incompatible
349df09ebc0SJack F Vogel	with older hardware easier to do.
350df09ebc0SJack F Vogel
3511669d8afSAndrew Thompson20080220:
3521669d8afSAndrew Thompson	The new geom_lvm(4) geom class has been renamed to geom_linux_lvm(4),
3531669d8afSAndrew Thompson	likewise the kernel option is now GEOM_LINUX_LVM.
3541669d8afSAndrew Thompson
3552427fa19SKris Kennaway20080211:
3562427fa19SKris Kennaway	The default NFS mount mode has changed from UDP to TCP for
3572427fa19SKris Kennaway	increased reliability.  If you rely on (insecurely) NFS
3582427fa19SKris Kennaway	mounting across a firewall you may need to update your
3592427fa19SKris Kennaway	firewall rules.
3602427fa19SKris Kennaway
3615e9f6b73SSam Leffler20080208:
3625e9f6b73SSam Leffler	Belatedly note the addition of m_collapse for compacting
3635e9f6b73SSam Leffler	mbuf chains.
3645e9f6b73SSam Leffler
36548aaad5fSYaroslav Tykhiy20080126:
36648aaad5fSYaroslav Tykhiy	The fts(3) structures have been changed to use adequate
36748aaad5fSYaroslav Tykhiy	integer types for their members and so to be able to cope
36848aaad5fSYaroslav Tykhiy	with huge file trees.  The old fts(3) ABI is preserved
36948aaad5fSYaroslav Tykhiy	through symbol versioning in libc, so third-party binaries
37048aaad5fSYaroslav Tykhiy	using fts(3) should still work, although they will not take
37148aaad5fSYaroslav Tykhiy	advantage of the extended types.  At the same time, some
37248aaad5fSYaroslav Tykhiy	third-party software might fail to build after this change
37348aaad5fSYaroslav Tykhiy	due to unportable assumptions made in its source code about
37448aaad5fSYaroslav Tykhiy	fts(3) structure members.  Such software should be fixed
37548aaad5fSYaroslav Tykhiy	by its vendor or, in the worst case, in the ports tree.
37648aaad5fSYaroslav Tykhiy	FreeBSD_version 800015 marks this change for the unlikely
37748aaad5fSYaroslav Tykhiy	case that a portable fix is impossible.
37848aaad5fSYaroslav Tykhiy
37951dc1e12SRuslan Ermilov20080123:
3808015f45cSWarner Losh	To upgrade to -current after this date, you must be running
38151dc1e12SRuslan Ermilov	FreeBSD not older than 6.0-RELEASE.  Upgrading to -current
3828015f45cSWarner Losh	from 5.x now requires a stop over at RELENG_6 or RELENG_7 systems.
3838015f45cSWarner Losh
384ab4a2c41SMatteo Riondato20071128:
385ab4a2c41SMatteo Riondato	The ADAPTIVE_GIANT kernel option has been retired because its
386ab4a2c41SMatteo Riondato	functionality is the default now.
387ab4a2c41SMatteo Riondato
388e393af84SMarius Strobl20071118:
389e393af84SMarius Strobl	The AT keyboard emulation of sunkbd(4) has been turned on
390e393af84SMarius Strobl	by default. In order to make the special symbols of the Sun
391e393af84SMarius Strobl	keyboards driven by sunkbd(4) work under X these now have
392e393af84SMarius Strobl	to be configured the same way as Sun USB keyboards driven
393e393af84SMarius Strobl	by ukbd(4) (which also does AT keyboard emulation), f.e.:
394e393af84SMarius Strobl
395e393af84SMarius Strobl	Option	"XkbLayout" "us"
396e393af84SMarius Strobl	Option	"XkbRules" "xorg"
397e393af84SMarius Strobl	Option	"XkbSymbols" "pc(pc105)+sun_vndr/usb(sun_usb)+us"
398e393af84SMarius Strobl
39933d3fffaSMarius Strobl20071024:
40033d3fffaSMarius Strobl	It has been decided that it is desirable to provide ABI
40133d3fffaSMarius Strobl	backwards compatibility to the FreeBSD 4/5/6 versions of the
40233d3fffaSMarius Strobl	PCIOCGETCONF, PCIOCREAD and PCIOCWRITE IOCTLs, which was
40333d3fffaSMarius Strobl	broken with the introduction of PCI domain support (see the
40433d3fffaSMarius Strobl	20070930 entry). Unfortunately, this required the ABI of
40533d3fffaSMarius Strobl	PCIOCGETCONF to be broken again in order to be able to
40633d3fffaSMarius Strobl	provide backwards compatibility to the old version of that
40733d3fffaSMarius Strobl	IOCTL. Thus consumers of PCIOCGETCONF have to be recompiled
40833d3fffaSMarius Strobl	again. As for prominent ports this affects neither pciutils
40933d3fffaSMarius Strobl	nor xorg-server this time, the hal port needs to be rebuilt
41033d3fffaSMarius Strobl	however.
41133d3fffaSMarius Strobl
4123d461febSJulian Elischer20071020:
4133d461febSJulian Elischer	The misnamed kthread_create() and friends have been renamed
4143d461febSJulian Elischer	to kproc_create() etc. Many of the callers already
4153d461febSJulian Elischer	used kproc_start()..
4163d461febSJulian Elischer	I will return kthread_create() and friends in a while
4173d461febSJulian Elischer	with implementations that actually create threads, not procs.
4183d461febSJulian Elischer	Renaming corresponds with version 800002.
4193d461febSJulian Elischer
420c15e0967SKen Smith20071010:
421c15e0967SKen Smith	RELENG_7 branched.
422c15e0967SKen Smith
423dbc6a2cfSDavid E. O'Brien20071009:
42465c045e9SDavid E. O'Brien	Setting WITHOUT_LIBPTHREAD now means WITHOUT_LIBKSE and
42565c045e9SDavid E. O'Brien	WITHOUT_LIBTHR are set.
42665c045e9SDavid E. O'Brien
42755aaf894SMarius Strobl20070930:
42855aaf894SMarius Strobl	The PCI code has been made aware of PCI domains. This means that
42955aaf894SMarius Strobl	the location strings as used by pciconf(8) etc are now in the
43055aaf894SMarius Strobl	following format: pci<domain>:<bus>:<device>[:<function>]. It
43155aaf894SMarius Strobl	also means that consumers of <sys/pciio.h> potentially need to
43255aaf894SMarius Strobl	be recompiled; this includes the hal and xorg-server ports.
43355aaf894SMarius Strobl
434c97fe77dSMichael Bushkov20070928:
435c97fe77dSMichael Bushkov	The caching daemon (cached) was renamed to nscd. nscd.conf
436c97fe77dSMichael Bushkov	configuration file should be used instead of cached.conf and
437c97fe77dSMichael Bushkov	nscd_enable, nscd_pidfile and nscd_flags options should be used
438c97fe77dSMichael Bushkov	instead of cached_enable, cached_pidfile and cached_flags in
439c97fe77dSMichael Bushkov	rc.conf.
440c97fe77dSMichael Bushkov
44199f4ae2fSKevin Lo20070921:
44299f4ae2fSKevin Lo	The getfacl(1) utility now prints owning user and group name
44399f4ae2fSKevin Lo	instead of owning uid and gid in the three line comment header.
44499f4ae2fSKevin Lo	This is the same behavior as getfacl(1) on Solaris and Linux.
44599f4ae2fSKevin Lo
446fd954571SGeorge V. Neville-Neil20070704:
447fd954571SGeorge V. Neville-Neil	The new IPsec code is now compiled in using the IPSEC option.  The
448fd954571SGeorge V. Neville-Neil	IPSEC option now requires "device crypto" be defined in your kernel
449fd954571SGeorge V. Neville-Neil	configuration.  The FAST_IPSEC kernel option is now deprecated.
450fd954571SGeorge V. Neville-Neil
451be65697fSMax Laier20070702:
452be65697fSMax Laier	The packet filter (pf) code has been updated to OpenBSD 4.1 Please
453be65697fSMax Laier	note the changed syntax - keep state is now on by default.  Also
454be65697fSMax Laier	note the fact that ftp-proxy(8) has been changed from bottom up and
455be65697fSMax Laier	has been moved from libexec to usr/sbin.  Changes in the ALTQ
456be65697fSMax Laier	handling also affect users of IPFW's ALTQ capabilities.
457be65697fSMax Laier
458069441f7SAndrew Thompson20070701:
4592cb64cb2SGeorge V. Neville-Neil	Remove KAME IPsec in favor of FAST_IPSEC, which is now the
4602cb64cb2SGeorge V. Neville-Neil	only IPsec supported by FreeBSD.  The new IPsec stack
4612cb64cb2SGeorge V. Neville-Neil	supports both IPv4 and IPv6. The kernel option will change
4622cb64cb2SGeorge V. Neville-Neil	after the code changes have settled in.  For now the kernel
4632cb64cb2SGeorge V. Neville-Neil	option IPSEC is deprecated and FAST_IPSEC is the only option, that
4642cb64cb2SGeorge V. Neville-Neil	will change after some settling time.
4652cb64cb2SGeorge V. Neville-Neil
4662cb64cb2SGeorge V. Neville-Neil20070701:
467069441f7SAndrew Thompson	The wicontrol(8) utility has been removed from the base system. wi(4)
468069441f7SAndrew Thompson	cards should be configured using ifconfig(8), see the man page for more
469069441f7SAndrew Thompson	information.
470069441f7SAndrew Thompson
471628e65ecSPyun YongHyeon20070612:
47253ffeb8eSPyun YongHyeon	The i386/amd64 GENERIC kernel now defaults to the nfe(4) driver
47353ffeb8eSPyun YongHyeon	instead of the nve(4) driver. Please update your configuration
47453ffeb8eSPyun YongHyeon	accordingly.
47553ffeb8eSPyun YongHyeon
47671498f30SBruce M Simpson20070612:
4772bc2025cSGregory Neil Shapiro	By default, /etc/rc.d/sendmail no longer rebuilds the aliases
4782bc2025cSGregory Neil Shapiro	database if it is missing or older than the aliases file.  If
4792bc2025cSGregory Neil Shapiro	desired, set the new rc.conf option sendmail_rebuild_aliases
4802bc2025cSGregory Neil Shapiro	to "YES" to restore that functionality.
4812bc2025cSGregory Neil Shapiro
4822bc2025cSGregory Neil Shapiro20070612:
48371498f30SBruce M Simpson	The IPv4 multicast socket code has been considerably modified, and
48471498f30SBruce M Simpson	moved to the file sys/netinet/in_mcast.c. Initial support for the
48571498f30SBruce M Simpson	RFC 3678 Source-Specific Multicast Socket API has been added to
48671498f30SBruce M Simpson	the IPv4 network stack.
48771498f30SBruce M Simpson
48871498f30SBruce M Simpson	Strict multicast and broadcast reception is now the default for
48971498f30SBruce M Simpson	UDP/IPv4 sockets; the net.inet.udp.strict_mcast_mship sysctl variable
49071498f30SBruce M Simpson	has now been removed.
49171498f30SBruce M Simpson
49271498f30SBruce M Simpson	The RFC 1724 hack for interface selection has been removed; the use
49371498f30SBruce M Simpson	of the Linux-derived ip_mreqn structure with IP_MULTICAST_IF has
49471498f30SBruce M Simpson	been added to replace it. Consumers such as routed will soon be
49571498f30SBruce M Simpson	updated to reflect this.
49671498f30SBruce M Simpson
49771498f30SBruce M Simpson	These changes affect users who are running routed(8) or rdisc(8)
49871498f30SBruce M Simpson	from the FreeBSD base system on point-to-point or unnumbered
49971498f30SBruce M Simpson	interfaces.
50071498f30SBruce M Simpson
5019cd40e64SYaroslav Tykhiy20070610:
502e8aff090SSam Leffler	The net80211 layer has changed significantly and all wireless
503e8aff090SSam Leffler	drivers that depend on it need to be recompiled.  Further these
504e8aff090SSam Leffler	changes require that any program that interacts with the wireless
505e8aff090SSam Leffler	support in the kernel be recompiled; this includes: ifconfig,
506e8aff090SSam Leffler	wpa_supplicant, hostapd, and wlanstats.  Users must also, for
507e8aff090SSam Leffler	the moment, kldload the wlan_scan_sta and/or wlan_scan_ap modules
508e8aff090SSam Leffler	if they use modules for wireless support.  These modules implement
509e8aff090SSam Leffler	scanning support for station and ap modes, respectively.  Failure
510e8aff090SSam Leffler	to load the appropriate module before marking a wireless interface
511e8aff090SSam Leffler	up will result in a message to the console and the device not
512e8aff090SSam Leffler	operating properly.
513e8aff090SSam Leffler
514e8aff090SSam Leffler20070610:
5159cd40e64SYaroslav Tykhiy	The pam_nologin(8) module ceases to provide an authentication
5169cd40e64SYaroslav Tykhiy	function and starts providing an account management function.
5179cd40e64SYaroslav Tykhiy	Consequent changes to /etc/pam.d should be brought in using
5189cd40e64SYaroslav Tykhiy	mergemaster(8).  Third-party files in /usr/local/etc/pam.d may
5199cd40e64SYaroslav Tykhiy	need manual editing as follows.  Locate this line (or similar):
5209cd40e64SYaroslav Tykhiy
5219cd40e64SYaroslav Tykhiy		auth	required	pam_nologin.so	no_warn
5229cd40e64SYaroslav Tykhiy
5239cd40e64SYaroslav Tykhiy	and change it according to this example:
5249cd40e64SYaroslav Tykhiy
5259cd40e64SYaroslav Tykhiy		account	required	pam_nologin.so	no_warn
5269cd40e64SYaroslav Tykhiy
5279cd40e64SYaroslav Tykhiy	That is, the first word needs to be changed from "auth" to
5289cd40e64SYaroslav Tykhiy	"account".  The new line can be moved to the account section
5299cd40e64SYaroslav Tykhiy	within the file for clarity.  Not updating pam.conf(5) files
5309cd40e64SYaroslav Tykhiy	will result in nologin(5) ignored by the respective services.
5319cd40e64SYaroslav Tykhiy
532995c7fd1SYaroslav Tykhiy20070529:
533995c7fd1SYaroslav Tykhiy	The ether_ioctl() function has been synchronized with ioctl(2)
534995c7fd1SYaroslav Tykhiy	and ifnet.if_ioctl.  Due to that, the size of one of its arguments
535995c7fd1SYaroslav Tykhiy	has changed on 64-bit architectures.  All kernel modules using
536995c7fd1SYaroslav Tykhiy	ether_ioctl() need to be rebuilt on such architectures.
537995c7fd1SYaroslav Tykhiy
538332fd25cSWojciech A. Koszek20070516:
539332fd25cSWojciech A. Koszek	Improved INCLUDE_CONFIG_FILE support has been introduced to the
540332fd25cSWojciech A. Koszek	config(8) utility. In order to take advantage of this new
541332fd25cSWojciech A. Koszek	functionality, you are expected to recompile and install
542332fd25cSWojciech A. Koszek	src/usr.sbin/config. If you don't rebuild config(8), and your
543332fd25cSWojciech A. Koszek	kernel configuration depends on INCLUDE_CONFIG_FILE, the kernel
544332fd25cSWojciech A. Koszek	build will be broken because of a missing "kernconfstring"
545332fd25cSWojciech A. Koszek	symbol.
546332fd25cSWojciech A. Koszek
547c4bc02eaSDaniel Eischen20070513:
548c4bc02eaSDaniel Eischen	Symbol versioning is enabled by default.  To disable it, use
549c4bc02eaSDaniel Eischen	option WITHOUT_SYMVER.  It is not advisable to attempt to
550c4bc02eaSDaniel Eischen	disable symbol versioning once it is enabled; your installworld
551c4bc02eaSDaniel Eischen	will break because a symbol version-less libc will get installed
552c4bc02eaSDaniel Eischen	before the install tools.  As a result, the old install tools,
553c4bc02eaSDaniel Eischen	which previously had symbol dependencies to FBSD_1.0, will fail
554c4bc02eaSDaniel Eischen	because the freshly installed libc will not have them.
555c4bc02eaSDaniel Eischen
55665c045e9SDavid E. O'Brien	The default threading library (providing "libpthread") has been
55765c045e9SDavid E. O'Brien	changed to libthr.  If you wish to have libkse as your default,
55865c045e9SDavid E. O'Brien	use option DEFAULT_THREAD_LIB=libkse for the buildworld.
559c4bc02eaSDaniel Eischen
560a69c10f5SGregory Neil Shapiro20070423:
561a69c10f5SGregory Neil Shapiro	The ABI breakage in sendmail(8)'s libmilter has been repaired
562a69c10f5SGregory Neil Shapiro	so it is no longer necessary to recompile mail filters (aka,
563a69c10f5SGregory Neil Shapiro	milters).  If you recompiled mail filters after the 20070408
564a69c10f5SGregory Neil Shapiro	note, it is not necessary to recompile them again.
565a69c10f5SGregory Neil Shapiro
5661a19fe2aSAndrew Thompson20070417:
5671a19fe2aSAndrew Thompson	The new trunk(4) driver has been renamed to lagg(4) as it better
5681a19fe2aSAndrew Thompson	reflects its purpose. ifconfig will need to be recompiled.
5691a19fe2aSAndrew Thompson
570ac01a4c6SGregory Neil Shapiro20070408:
571ac01a4c6SGregory Neil Shapiro	sendmail(8) has been updated to version 8.14.1.  Mail filters
572ac01a4c6SGregory Neil Shapiro	(aka, milters) compiled against the libmilter included in the
573ac01a4c6SGregory Neil Shapiro	base operating system should be recompiled.
574ac01a4c6SGregory Neil Shapiro
575d08ec007SFlorent Thoumie20070302:
576d08ec007SFlorent Thoumie	Firmwares for ipw(4) and iwi(4) are now included in the base tree.
577d08ec007SFlorent Thoumie	In order to use them one must agree to the respective LICENSE in
578329d3aa3SChristian Brueffer	share/doc/legal and define legal.intel_<name>.license_ack=1 via
579bc42e3d0SMax Laier	loader.conf(5) or kenv(1).  Make sure to deinstall the now
580bc42e3d0SMax Laier	deprecated modules from the respective firmware ports.
581d08ec007SFlorent Thoumie
58280a65301SBruce M Simpson20070228:
58380a65301SBruce M Simpson	The name resolution/mapping functions addr2ascii(3) and ascii2addr(3)
58480a65301SBruce M Simpson	were removed from FreeBSD's libc. These originally came from INRIA
58580a65301SBruce M Simpson	IPv6. Nothing in FreeBSD ever used them. They may be regarded as
58680a65301SBruce M Simpson	deprecated in previous releases.
58780a65301SBruce M Simpson	The AF_LINK support for getnameinfo(3) was merged from NetBSD to
58880a65301SBruce M Simpson	replace it as a more portable (and re-entrant) API.
58980a65301SBruce M Simpson
59008bc2d8aSBruce M Simpson20070224:
591663829feSPaolo Pisati	To support interrupt filtering a modification to the newbus API
59282e5a028SPaolo Pisati	has occurred, ABI was broken and __FreeBSD_version was bumped
59382e5a028SPaolo Pisati	to 700031. Please make sure that your kernel and modules are in
594eb29c8f4SSimon L. B. Nielsen	sync. For more info:
595eb29c8f4SSimon L. B. Nielsen	http://docs.freebsd.org/cgi/mid.cgi?20070221233124.GA13941
596663829feSPaolo Pisati
597663829feSPaolo Pisati20070224:
59808bc2d8aSBruce M Simpson	The IPv6 multicast forwarding code may now be loaded into GENERIC
59933672cd9SBruce M Simpson	kernels by loading the ip_mroute.ko module. This is built into the
60033672cd9SBruce M Simpson	module unless WITHOUT_INET6 or WITHOUT_INET6_SUPPORT options are
60133672cd9SBruce M Simpson	set; see src.conf(5) for more information.
60208bc2d8aSBruce M Simpson
603d092c06cSBruce M Simpson20070214:
604d092c06cSBruce M Simpson	The output of netstat -r has changed. Without -n, we now only
605d092c06cSBruce M Simpson	print a "network name" without the prefix length if the network
606d092c06cSBruce M Simpson	address and mask exactly match a Class A/B/C network, and an entry
607d092c06cSBruce M Simpson	exists in the nsswitch "networks" map.
608d092c06cSBruce M Simpson	With -n, we print the full unabbreviated CIDR network prefix in
609d092c06cSBruce M Simpson	the form "a.b.c.d/p". 0.0.0.0/0 is always printed as "default".
610d092c06cSBruce M Simpson	This change is in preparation for changes such as equal-cost
611d092c06cSBruce M Simpson	multipath, and to more generally assist operational deployment
612d092c06cSBruce M Simpson	of FreeBSD as a modern IPv4 router.
613d092c06cSBruce M Simpson
6140948f0a2SBruce M Simpson20070210:
6150948f0a2SBruce M Simpson	PIM has been turned on by default in the IPv4 multicast
6160948f0a2SBruce M Simpson	routing code. The kernel option 'PIM' has now been removed.
6170948f0a2SBruce M Simpson	PIM is now built by default if option 'MROUTING' is specified.
6180948f0a2SBruce M Simpson	It may now be loaded into GENERIC kernels by loading the
6190948f0a2SBruce M Simpson	ip_mroute.ko module.
6200948f0a2SBruce M Simpson
62178cb087eSBruce M Simpson20070207:
62278cb087eSBruce M Simpson	Support for IPIP tunnels (VIFF_TUNNEL) in IPv4 multicast routing
62378cb087eSBruce M Simpson	has been removed. Its functionality may be achieved by explicitly
62478cb087eSBruce M Simpson	configuring gif(4) interfaces and using the 'phyint' keyword in
62578cb087eSBruce M Simpson	mrouted.conf.
62678cb087eSBruce M Simpson	XORP does not support source-routed IPv4 multicast tunnels nor the
62778cb087eSBruce M Simpson	integrated IPIP tunneling, therefore it is not affected by this
62878cb087eSBruce M Simpson	change. The __FreeBSD_version macro has been bumped to 700030.
62978cb087eSBruce M Simpson
630067c6db2SJohn Polstra20061221:
631067c6db2SJohn Polstra	Support for PCI Message Signalled Interrupts has been
632067c6db2SJohn Polstra	re-enabled in the bge driver, only for those chips which are
633067c6db2SJohn Polstra	believed to support it properly.  If there are any problems,
634067c6db2SJohn Polstra	MSI can be disabled completely by setting the
635067c6db2SJohn Polstra	'hw.pci.enable_msi' and 'hw.pci.enable_msix' tunables to 0
636067c6db2SJohn Polstra	in the loader.
637067c6db2SJohn Polstra
6383ebdb4eeSJohn Polstra20061214:
639cca510b1SJohn Polstra	Support for PCI Message Signalled Interrupts has been
640cca510b1SJohn Polstra	disabled again in the bge driver.  Many revisions of the
641cca510b1SJohn Polstra	hardware fail to support it properly.  Support can be
642cca510b1SJohn Polstra	re-enabled by removing the #define of BGE_DISABLE_MSI in
643cca510b1SJohn Polstra	"src/sys/dev/bge/if_bge.c".
644cca510b1SJohn Polstra
645cca510b1SJohn Polstra20061214:
6463ebdb4eeSJohn Polstra	Support for PCI Message Signalled Interrupts has been added
6473ebdb4eeSJohn Polstra	to the bge driver.  If there are any problems, MSI can be
6483ebdb4eeSJohn Polstra	disabled completely by setting the 'hw.pci.enable_msi' and
6493ebdb4eeSJohn Polstra	'hw.pci.enable_msix' tunables to 0 in the loader.
6503ebdb4eeSJohn Polstra
651fc19e4c4SJulian Elischer20061205:
652fc19e4c4SJulian Elischer	The removal of several facets of the experimental Threading
653fc19e4c4SJulian Elischer	system from the kernel means that the proc and thread structures
654fc19e4c4SJulian Elischer	have changed quite a bit. I suggest all kernel modules that might
655fc19e4c4SJulian Elischer	reference these structures be recompiled.. Especially the
656fc19e4c4SJulian Elischer	linux module.
657fc19e4c4SJulian Elischer
658a580b31aSAriff Abdullah20061126:
659a580b31aSAriff Abdullah	Sound infrastructure has been updated with various fixes and
660a580b31aSAriff Abdullah	improvements. Most of the changes are pretty much transparent,
661a580b31aSAriff Abdullah	with exceptions of followings:
662a580b31aSAriff Abdullah	1) All sound driver specific sysctls (hw.snd.pcm%d.*) have been
663a580b31aSAriff Abdullah	   moved to their own dev sysctl nodes, for example:
664a580b31aSAriff Abdullah		hw.snd.pcm0.vchans -> dev.pcm.0.vchans
665a580b31aSAriff Abdullah	2) /dev/dspr%d.%d has been deprecated. Each channel now has its
666a580b31aSAriff Abdullah	   own chardev in the form of "dsp%d.<function>%d", where <function>
667a580b31aSAriff Abdullah	   is p = playback, r = record and v = virtual, respectively. Users
668a580b31aSAriff Abdullah	   are encouraged to use these devs instead of (old) "/dev/dsp%d.%d".
669a580b31aSAriff Abdullah	   This does not affect those who are using "/dev/dsp".
670a580b31aSAriff Abdullah
671a484c95aSCraig Rodrigues20061122:
672b5db8ef0SRemko Lodder	geom(4)'s gmirror(8) class metadata structure has been
673b5db8ef0SRemko Lodder	rev'd from v3 to v4. If you update across this point and
674b5db8ef0SRemko Lodder	your metadata is converted for you, you will not be easily
675b5db8ef0SRemko Lodder	able to downgrade since the /boot/kernel.old/geom_mirror.ko
676b5db8ef0SRemko Lodder	kernel module will be unable to read the v4 metadata.  You
677b5db8ef0SRemko Lodder	can resolve this by doing from the loader(8) prompt:
678b5db8ef0SRemko Lodder
679b5db8ef0SRemko Lodder		set vfs.root.mountfrom="ufs:/dev/XXX"
680b5db8ef0SRemko Lodder
681b5db8ef0SRemko Lodder	where XXX is the root slice of one of the disks that composed
68203efdfd1SRemko Lodder	the mirror (i.e.: /dev/ad0s1a). You can then rebuild
683b5db8ef0SRemko Lodder	the array the same way you built it originally.
684b5db8ef0SRemko Lodder
685b5db8ef0SRemko Lodder20061122:
686a484c95aSCraig Rodrigues	The following binaries have been disconnected from the build:
687a484c95aSCraig Rodrigues	mount_devfs, mount_ext2fs, mount_fdescfs, mount_procfs, mount_linprocfs,
688a484c95aSCraig Rodrigues	and mount_std.  The functionality of these programs has been
689a484c95aSCraig Rodrigues	moved into the mount program.  For example, to mount a devfs
690a484c95aSCraig Rodrigues	filesystem, instead of using mount_devfs, use: "mount -t devfs".
691a484c95aSCraig Rodrigues	This does not affect entries in /etc/fstab, since entries in
692a484c95aSCraig Rodrigues	/etc/fstab are always processed with "mount -t fstype".
693a484c95aSCraig Rodrigues
6941d7e99caSJohn Baldwin20061113:
6951d7e99caSJohn Baldwin	Support for PCI Message Signalled Interrupts on i386 and amd64
6961d7e99caSJohn Baldwin	has been added to the kernel and various drivers will soon be
6971d7e99caSJohn Baldwin	updated to use MSI when it is available.  If there are any problems,
6981d7e99caSJohn Baldwin	MSI can be disabled completely by setting the 'hw.pci.enable_msi'
6991d7e99caSJohn Baldwin	and 'hw.pci.enable_msix' tunables to 0 in the loader.
7001d7e99caSJohn Baldwin
7017c0435b9SKip Macy20061110:
7027c0435b9SKip Macy	The MUTEX_PROFILING option has been renamed to LOCK_PROFILING.
7037c0435b9SKip Macy	The lockmgr object layout has been changed as a result of having
7047c0435b9SKip Macy	a lock_object embedded in it. As a consequence all file system
7057c0435b9SKip Macy	kernel modules must be re-compiled. The mutex profiling man page
7067c0435b9SKip Macy	has not yet been updated to reflect this change.
707c1f61aa9SDavid E. O'Brien
708013d6d8cSJohn Birrell20061026:
7098460a577SJohn Birrell	KSE in the kernel has now been made optional and turned on by
710013d6d8cSJohn Birrell	default. Use 'nooption KSE' in your kernel config to turn it
711013d6d8cSJohn Birrell	off. All kernel modules *must* be recompiled after this change.
712013d6d8cSJohn Birrell	There-after, modules from a KSE kernel should be compatible with
713013d6d8cSJohn Birrell	modules from a NOKSE kernel due to the temporary padding fields
714013d6d8cSJohn Birrell	added to 'struct proc'.
7158460a577SJohn Birrell
71613b3ebf1SBruce M Simpson20060929:
71713b3ebf1SBruce M Simpson	mrouted and its utilities have been removed from the base system.
71813b3ebf1SBruce M Simpson
719014a1a84SRuslan Ermilov20060927:
720014a1a84SRuslan Ermilov	Some ioctl(2) command codes have changed.  Full backward ABI
721014a1a84SRuslan Ermilov	compatibility is provided if the "options COMPAT_FREEBSD6" is
722014a1a84SRuslan Ermilov	present in the kernel configuration file.  Make sure to add
723014a1a84SRuslan Ermilov	this option to your kernel config file, or recompile X.Org
724014a1a84SRuslan Ermilov	and the rest of ports; otherwise they may refuse to work.
725014a1a84SRuslan Ermilov
726481544f3SBruce M Simpson20060924:
727481544f3SBruce M Simpson	tcpslice has been removed from the base system.
728481544f3SBruce M Simpson
72960206edeSRuslan Ermilov20060913:
73060206edeSRuslan Ermilov	The sizes of struct tcpcb (and struct xtcpcb) have changed due to
73160206edeSRuslan Ermilov	the rewrite of TCP syncookies.  Tools like netstat, sockstat, and
73260206edeSRuslan Ermilov	systat needs to be rebuilt.
73360206edeSRuslan Ermilov
73450bdd720SSam Leffler20060903:
73550bdd720SSam Leffler	libpcap updated to v0.9.4 and tcpdump to v3.9.4
73650bdd720SSam Leffler
7373b4109aaSJulian Elischer20060816:
7383b4109aaSJulian Elischer	The IPFIREWALL_FORWARD_EXTENDED option is gone and the behaviour
7395f738ae6SMaxim Konovalov	for IPFIREWALL_FORWARD is now as it was before when it was first
7403b4109aaSJulian Elischer	committed and for years after. The behaviour is now ON.
7413b4109aaSJulian Elischer
742c8450a54SJung-uk Kim20060725:
743c8450a54SJung-uk Kim	enigma(1)/crypt(1) utility has been changed on 64 bit architectures.
744c8450a54SJung-uk Kim	Now it can decrypt files created from different architectures.
745c8450a54SJung-uk Kim	Unfortunately, it is no longer able to decrypt a cipher text
746c8450a54SJung-uk Kim	generated with an older version on 64 bit architectures.
747c8450a54SJung-uk Kim	If you have such a file, you need old utility to decrypt it.
748c8450a54SJung-uk Kim
7495d0c7501SThomas Wintergerst20060709:
7505d0c7501SThomas Wintergerst	The interface version of the i4b kernel part has changed. So
7515d0c7501SThomas Wintergerst	after updating the kernel sources and compiling a new kernel,
7525d0c7501SThomas Wintergerst	the i4b user space tools in "/usr/src/usr.sbin/i4b" must also
7535d0c7501SThomas Wintergerst	be rebuilt, and vice versa.
7545d0c7501SThomas Wintergerst
75544a8277bSRink Springer20060627:
75644a8277bSRink Springer	The XBOX kernel now defaults to the nfe(4) driver instead of
75744a8277bSRink Springer	the nve(4) driver. Please update your configuration
75844a8277bSRink Springer	accordingly.
75944a8277bSRink Springer
760647ef1a9SMarius Strobl20060514:
761647ef1a9SMarius Strobl	The i386-only lnc(4) driver for the AMD Am7900 LANCE and Am79C9xx
762647ef1a9SMarius Strobl	PCnet family of NICs has been removed. The new le(4) driver serves
763647ef1a9SMarius Strobl	as an equivalent but cross-platform replacement with the pcn(4)
764647ef1a9SMarius Strobl	driver still providing performance-optimized support for the subset
765647ef1a9SMarius Strobl	of AMD Am79C971 PCnet-FAST and greater chips as before.
766647ef1a9SMarius Strobl
7679f8d2f6cSGiorgos Keramidas20060511:
7689f8d2f6cSGiorgos Keramidas	The machdep.* sysctls and the adjkerntz utility have been
7699f8d2f6cSGiorgos Keramidas	modified a bit.  The new adjkerntz utility uses the new
7709f8d2f6cSGiorgos Keramidas	sysctl names and sysctlbyname() calls, so it may be impossible
7719f8d2f6cSGiorgos Keramidas	to run an old /sbin/adjkerntz utility in single-user mode
7729f8d2f6cSGiorgos Keramidas	with a new kernel.  Replace the `adjkerntz -i' step before
7739f8d2f6cSGiorgos Keramidas	`make installworld' with:
7749f8d2f6cSGiorgos Keramidas
7759f8d2f6cSGiorgos Keramidas	    /usr/obj/usr/src/sbin/adjkerntz/adjkerntz -i
7769f8d2f6cSGiorgos Keramidas
7779f8d2f6cSGiorgos Keramidas	and proceed as usual with the rest of the installworld-stage
7789f8d2f6cSGiorgos Keramidas	steps.  Otherwise, you risk installing binaries with their
7799f8d2f6cSGiorgos Keramidas	timestamp set several hours in the future, especially if
7809f8d2f6cSGiorgos Keramidas	you are running with local time set to GMT+X hours.
7819f8d2f6cSGiorgos Keramidas
782a0a9755eSMax Laier20060412:
783a0a9755eSMax Laier	The ip6fw utility has been removed.  The behavior provided by
784a0a9755eSMax Laier	ip6fw has been in ipfw2 for a good while and the rc.d scripts
7854919094eSChristian Brueffer	have been updated to deal with it.  There are some rules that
786a0a9755eSMax Laier	might not migrate cleanly.  Use rc.firewall6 as a template to
787a0a9755eSMax Laier	rewrite rules.
788a0a9755eSMax Laier
789ff6a2d00SMarcel Moolenaar20060428:
790ff6a2d00SMarcel Moolenaar	The puc(4) driver has been overhauled. The ebus(4) and sbus(4)
791ff6a2d00SMarcel Moolenaar	attachments have been removed. Make sure to configure scc(4)
792ff6a2d00SMarcel Moolenaar	on sparc64. Note also that by default puc(4) will use uart(4)
793ff6a2d00SMarcel Moolenaar	and not sio(4) for serial ports because interrupt handling has
794ff6a2d00SMarcel Moolenaar	been optimized for multi-port serial cards and only uart(4)
795ff6a2d00SMarcel Moolenaar	implements the interface to support it.
796ff6a2d00SMarcel Moolenaar
797ff6a2d00SMarcel Moolenaar20060330:
798ff6a2d00SMarcel Moolenaar	The scc(4) driver replaces puc(4) for Serial Communications
799ff6a2d00SMarcel Moolenaar	Controllers (SCCs) like the Siemens SAB82532 and the Zilog
800ff6a2d00SMarcel Moolenaar	Z8530. On sparc64, it is advised to add scc(4) to the kernel
801ff6a2d00SMarcel Moolenaar	configuration to make sure that the serial ports remain
802ff6a2d00SMarcel Moolenaar	functional.
803ff6a2d00SMarcel Moolenaar
804c60fab8cSRuslan Ermilov20060317:
805c60fab8cSRuslan Ermilov	Most world/kernel related NO_* build options changed names.
806c60fab8cSRuslan Ermilov	New knobs have common prefixes WITHOUT_*/WITH_* (modelled
807c60fab8cSRuslan Ermilov	after FreeBSD ports) and should be set in /etc/src.conf
808c60fab8cSRuslan Ermilov	(the src.conf(5) manpage is provided).  Full backwards
809c60fab8cSRuslan Ermilov	compatibility is maintained for the time being though it's
810c60fab8cSRuslan Ermilov	highly recommended to start moving old options out of the
811c60fab8cSRuslan Ermilov	system-wide /etc/make.conf file into the new /etc/src.conf
812c60fab8cSRuslan Ermilov	while also properly renaming them.  More conversions will
813c60fab8cSRuslan Ermilov	likely follow.  Posting to current@:
814c60fab8cSRuslan Ermilov
815c60fab8cSRuslan Ermilov	http://lists.freebsd.org/pipermail/freebsd-current/2006-March/061725.html
816c60fab8cSRuslan Ermilov
8178d96e455SYaroslav Tykhiy20060305:
8188d96e455SYaroslav Tykhiy	The NETSMBCRYPTO kernel option has been retired because its
8198d96e455SYaroslav Tykhiy	functionality is always included in NETSMB and smbfs.ko now.
8208d96e455SYaroslav Tykhiy
821375ce679SYaroslav Tykhiy20060303:
822375ce679SYaroslav Tykhiy	The TDFX_LINUX kernel option was retired and replaced by the
82305ab391fSYaroslav Tykhiy	tdfx_linux device.  The latter can be loaded as the 3dfx_linux.ko
82405ab391fSYaroslav Tykhiy	kernel module.  Loading it alone should suffice to get 3dfx support
82505ab391fSYaroslav Tykhiy	for Linux apps because it will pull in 3dfx.ko and linux.ko through
82605ab391fSYaroslav Tykhiy	its dependencies.
827375ce679SYaroslav Tykhiy
82819dc3462SWarner Losh20060204:
82919dc3462SWarner Losh	The 'audit' group was added to support the new auditing functionality
83019dc3462SWarner Losh	in the base system.  Be sure to follow the directions for updating,
83119dc3462SWarner Losh	including the requirement to run mergemaster -p.
83219dc3462SWarner Losh
833dc422d87SYaroslav Tykhiy20060201:
834dc422d87SYaroslav Tykhiy	The kernel ABI to file system modules was changed on i386.
835dc422d87SYaroslav Tykhiy	Please make sure that your kernel and modules are in sync.
836dc422d87SYaroslav Tykhiy
837347daa0fSJulian Elischer20060118:
838347daa0fSJulian Elischer	This actually occured some time ago, but installing the kernel
839347daa0fSJulian Elischer	now also installs a bunch of symbol files for the kernel modules.
8406aa6311fSPav Lucistnik	This increases the size of /boot/kernel to about 67Mbytes. You
841347daa0fSJulian Elischer	will need twice this if you will eventually back this up to kernel.old
842347daa0fSJulian Elischer	on your next install.
843347daa0fSJulian Elischer	If you have a shortage of room in your root partition, you should add
844347daa0fSJulian Elischer	-DINSTALL_NODEBUG to your make arguments or add INSTALL_NODEBUG="yes"
845347daa0fSJulian Elischer	to your /etc/make.conf.
846347daa0fSJulian Elischer
847cc61a0b1SJason Evans20060113:
848cc61a0b1SJason Evans	libc's malloc implementation has been replaced.  This change has the
849cc61a0b1SJason Evans	potential to uncover application bugs that previously went unnoticed.
850cc61a0b1SJason Evans	See the malloc(3) manual page for more details.
851cc61a0b1SJason Evans
8527f4faad8SGleb Smirnoff20060112:
8537f4faad8SGleb Smirnoff	The generic netgraph(4) cookie has been changed. If you upgrade
8547f4faad8SGleb Smirnoff	kernel passing this point, you also need to upgrade userland
8557f4faad8SGleb Smirnoff	and netgraph(4) utilities like ports/net/mpd or ports/net/mpd4.
8567f4faad8SGleb Smirnoff
8576bed9d9eSJohn Baldwin20060106:
85890482dafSJohn Baldwin	si(4)'s device files now contain the unit number.
85990482dafSJohn Baldwin	Uses of {cua,tty}A[0-9a-f] should be replaced by {cua,tty}A0[0-9a-f].
86090482dafSJohn Baldwin
86190482dafSJohn Baldwin20060106:
8626bed9d9eSJohn Baldwin	The kernel ABI was mostly destroyed due to a change in the size
8636bed9d9eSJohn Baldwin	of struct lock_object which is nested in other structures such
8646bed9d9eSJohn Baldwin	as mutexes which are nested in all sorts of other structures.
8656bed9d9eSJohn Baldwin	Make sure your kernel and modules are in sync.
8666bed9d9eSJohn Baldwin
86752a16db3SAlexander Leidinger20051231:
86852a16db3SAlexander Leidinger	The page coloring algorithm in the VM subsystem was converted
86952a16db3SAlexander Leidinger	from tuning with kernel options to autotuning. Please remove
87052a16db3SAlexander Leidinger	any PQ_* option except PQ_NOOPT from your kernel config.
87152a16db3SAlexander Leidinger
8726dba929aSSam Leffler20051211:
8736dba929aSSam Leffler	The net80211-related tools in the tools/tools/ath directory
8746dba929aSSam Leffler	have been moved to tools/tools/net80211 and renamed with a
8756dba929aSSam Leffler	"wlan" prefix.  Scripts that use them should be adjusted
8766dba929aSSam Leffler	accordingly.
8776dba929aSSam Leffler
878a0cdeaecSDoug Barton20051202:
879a0cdeaecSDoug Barton	Scripts in the local_startup directories (as defined in
880a0cdeaecSDoug Barton	/etc/defaults/rc.conf) that have the new rc.d semantics will
881a0cdeaecSDoug Barton	now be run as part of the base system rcorder. If there are
882a0cdeaecSDoug Barton	errors or problems with one of these local scripts, it could
883a0cdeaecSDoug Barton	cause boot problems. If you encounter such problems, boot in
884a0cdeaecSDoug Barton	single user mode, remove that script from the */rc.d directory.
885a0cdeaecSDoug Barton	Please report the problem to the port's maintainer, and the
886a0cdeaecSDoug Barton	freebsd-ports@freebsd.org mailing list.
887a0cdeaecSDoug Barton
888b090e4ceSGleb Smirnoff20051129:
889a358ddbbSCraig Rodrigues	The nodev mount option was deprecated in RELENG_6 (where it
890a358ddbbSCraig Rodrigues	was a no-op), and is now unsupported.  If you have nodev or dev listed
891a358ddbbSCraig Rodrigues	in /etc/fstab, remove it, otherwise it will result in a mount error.
892a358ddbbSCraig Rodrigues
893a358ddbbSCraig Rodrigues20051129:
894b090e4ceSGleb Smirnoff	ABI between ipfw(4) and ipfw(8) has been changed. You need
895b090e4ceSGleb Smirnoff	to rebuild ipfw(8) when rebuilding kernel.
896b090e4ceSGleb Smirnoff
897d6b4b3b3SDavid E. O'Brien20051108:
898d6b4b3b3SDavid E. O'Brien	rp(4)'s device files now contain the unit number.
899d6b4b3b3SDavid E. O'Brien	Uses of {cua,tty}R[0-9a-f] should be replaced by {cua,tty}R0[0-9a-f].
900d6b4b3b3SDavid E. O'Brien
901a52364d5SYaroslav Tykhiy20051029:
902a52364d5SYaroslav Tykhiy	/etc/rc.d/ppp-user has been renamed to /etc/rc.d/ppp.
903a52364d5SYaroslav Tykhiy	Its /etc/rc.conf.d configuration file has been `ppp' from
904a52364d5SYaroslav Tykhiy	the beginning, and hence there is no need to touch it.
905a52364d5SYaroslav Tykhiy
906fc18f73dSYaroslav Tykhiy20051014:
907fc18f73dSYaroslav Tykhiy	Now most modules get their build-time options from the kernel
908fc18f73dSYaroslav Tykhiy	configuration file.  A few modules still have fixed options
909fc18f73dSYaroslav Tykhiy	due to their non-conformant implementation, but they will be
910fc18f73dSYaroslav Tykhiy	corrected eventually.  You may need to review the options of
911fc18f73dSYaroslav Tykhiy	the modules in use, explicitly specify the non-default options
912fc18f73dSYaroslav Tykhiy	in the kernel configuration file, and rebuild the kernel and
913fc18f73dSYaroslav Tykhiy	modules afterwards.
914fc18f73dSYaroslav Tykhiy
915114d09d8SGleb Smirnoff20051001:
916114d09d8SGleb Smirnoff	kern.polling.enable sysctl MIB is now deprecated. Use ifconfig(8)
917114d09d8SGleb Smirnoff	to turn polling(4) on your interfaces.
918114d09d8SGleb Smirnoff
919b6de9e91SMax Laier20050927:
920b6de9e91SMax Laier	The old bridge(4) implementation was retired.  The new
921b6de9e91SMax Laier	if_bridge(4) serves as a full functional replacement.
922b6de9e91SMax Laier
923bb518265SHajimu UMEMOTO20050722:
924bb518265SHajimu UMEMOTO	The ai_addrlen of a struct addrinfo was changed to a socklen_t
925bb518265SHajimu UMEMOTO	to conform to POSIX-2001.  This change broke an ABI
926bb518265SHajimu UMEMOTO	compatibility on 64 bit architecture.  You have to recompile
927bb518265SHajimu UMEMOTO	userland programs that use getaddrinfo(3) on 64 bit
928bb518265SHajimu UMEMOTO	architecture.
929bb518265SHajimu UMEMOTO
93099b22782SKen Smith20050711:
93199b22782SKen Smith	RELENG_6 branched here.
93299b22782SKen Smith
9337657f595SBrooks Davis20050629:
9347657f595SBrooks Davis	The pccard_ifconfig rc.conf variable has been removed and a new
9357657f595SBrooks Davis	variable, ifconfig_DEFAULT has been introduced.  Unlike
9367657f595SBrooks Davis	pccard_ifconfig, ifconfig_DEFAULT applies to ALL interfaces that
9377657f595SBrooks Davis	do not have ifconfig_ifn entries rather than just those in
9387657f595SBrooks Davis	removable_interfaces.
9397657f595SBrooks Davis
940d33db00cSDag-Erling Smørgrav20050616:
941d33db00cSDag-Erling Smørgrav	Some previous versions of PAM have permitted the use of
942d33db00cSDag-Erling Smørgrav	non-absolute paths in /etc/pam.conf or /etc/pam.d/* when referring
943d33db00cSDag-Erling Smørgrav	to third party PAM modules in /usr/local/lib.  A change has been
944d33db00cSDag-Erling Smørgrav	made to require the use of absolute paths in order to avoid
945d33db00cSDag-Erling Smørgrav	ambiguity and dependence on library path configuration, which may
946d33db00cSDag-Erling Smørgrav	affect existing configurations.
947d33db00cSDag-Erling Smørgrav
948ad0fdce5SBrooks Davis20050610:
949ad0fdce5SBrooks Davis	Major changes to network interface API.  All drivers must be
950ad0fdce5SBrooks Davis	recompiled.  Drivers not in the base system will need to be
951ad0fdce5SBrooks Davis	updated to the new APIs.
952ad0fdce5SBrooks Davis
953038164a1SGarance A Drosehn20050609:
954038164a1SGarance A Drosehn	Changes were made to kinfo_proc in sys/user.h.  Please recompile
955038164a1SGarance A Drosehn	userland, or commands like `fstat', `pkill', `ps', `top' and `w'
956038164a1SGarance A Drosehn	will not behave correctly.
957038164a1SGarance A Drosehn
95831f91694SJoseph Koshy	The API and ABI for hwpmc(4) have changed with the addition
95931f91694SJoseph Koshy	of sampling support.  Please recompile lib/libpmc(3) and
96031f91694SJoseph Koshy	usr.sbin/{pmcstat,pmccontrol}.
96131f91694SJoseph Koshy
962a8d23252SBrooks Davis20050606:
963a8d23252SBrooks Davis	The OpenBSD dhclient was imported in place of the ISC dhclient
964a8d23252SBrooks Davis	and the network interface configuration scripts were updated
965a8d23252SBrooks Davis	accordingly.  If you use DHCP to configure your interfaces, you
966a8d23252SBrooks Davis	must now run devd.  Also, DNS updating was lost so you will need
967a8d23252SBrooks Davis	to find a workaround if you use this feature.
968a8d23252SBrooks Davis
96919dc3462SWarner Losh	The '_dhcp' user was added to support the OpenBSD dhclient.  Be
97019dc3462SWarner Losh	sure to run mergemaster -p (like you are supposed to do every time
97119dc3462SWarner Losh	anyway).
97219dc3462SWarner Losh
973dfa58a49SAndrew Thompson20050605:
974dfa58a49SAndrew Thompson	if_bridge was added to the tree. This has changed struct ifnet.
975dfa58a49SAndrew Thompson	Please recompile userland and all network related modules.
976dfa58a49SAndrew Thompson
9772554b2d1SHajimu UMEMOTO20050603:
9782554b2d1SHajimu UMEMOTO	The n_net of a struct netent was changed to an uint32_t, and
9792554b2d1SHajimu UMEMOTO	1st argument of getnetbyaddr() was changed to an uint32_t, to
9801d6a063bSHajimu UMEMOTO	conform to POSIX-2001.  These changes broke an ABI
9810fe9e21bSHajimu UMEMOTO	compatibility on 64 bit architecture.  With these changes,
9820fe9e21bSHajimu UMEMOTO	shlib major of libpcap was bumped.  You have to recompile
9830fe9e21bSHajimu UMEMOTO	userland programs that use getnetbyaddr(3), getnetbyname(3),
9840fe9e21bSHajimu UMEMOTO	getnetent(3) and/or libpcap on 64 bit architecture.
9852554b2d1SHajimu UMEMOTO
9860a4c2543SGarance A Drosehn20050528:
9870a4c2543SGarance A Drosehn	Kernel parsing of extra options on '#!' first lines of shell
9880a4c2543SGarance A Drosehn	scripts has changed.  Lines with multiple options likely will
9890a4c2543SGarance A Drosehn	fail after this date.  For full details, please see
9900a4c2543SGarance A Drosehn		http://people.freebsd.org/~gad/Updating-20050528.txt
9910a4c2543SGarance A Drosehn
9926441fe95SMax Laier20050503:
9936441fe95SMax Laier	The packet filter (pf) code has been updated to OpenBSD 3.7
9946441fe95SMax Laier	Please note the changed anchor syntax and the fact that
9956441fe95SMax Laier	authpf(8) now needs a mounted fdescfs(5) to function.
9966441fe95SMax Laier
997cfdb76e5SScott Long20050415:
998cfdb76e5SScott Long	The NO_MIXED_MODE kernel option has been removed from the i386
999cfdb76e5SScott Long	amd64 platforms as its use has been superceded by the new local
1000cfdb76e5SScott Long	APIC timer code.  Any kernel config files containing this option
1001cfdb76e5SScott Long	should be updated.
1002cfdb76e5SScott Long
10034bb8b8beSRuslan Ermilov20050227:
10044bb8b8beSRuslan Ermilov	The on-disk format of LC_CTYPE files was changed to be machine
10054bb8b8beSRuslan Ermilov	independent.  Please make sure NOT to use NO_CLEAN buildworld
100665f1be68SGleb Smirnoff	when crossing this point. Crossing this point also requires
100765f1be68SGleb Smirnoff	recompile or reinstall of all locale depended packages.
10084bb8b8beSRuslan Ermilov
1009bc9d2991SBrooks Davis20050225:
1010bc9d2991SBrooks Davis	The ifi_epoch member of struct if_data has been changed to
1011bc9d2991SBrooks Davis	contain the uptime at which the interface was created or the
1012bc9d2991SBrooks Davis	statistics zeroed rather then the wall clock time because
1013bc9d2991SBrooks Davis	wallclock time may go backwards.  This should have no impact
1014bc9d2991SBrooks Davis	unless an snmp implementation is using this value (I know of
1015bc9d2991SBrooks Davis	none at this point.)
1016bc9d2991SBrooks Davis
1017915a554bSNate Lawson20050224:
1018915a554bSNate Lawson	The acpi_perf and acpi_throttle drivers are now part of the
1019915a554bSNate Lawson	acpi(4) main module.  They are no longer built separately.
1020915a554bSNate Lawson
102110d6bd76SNate Lawson20050223:
102290dc539bSMaxim Sobolev	The layout of struct image_params has changed. You have to
102390dc539bSMaxim Sobolev	recompile all compatibility modules (linux, svr4, etc) for use
102490dc539bSMaxim Sobolev	with the new kernel.
102590dc539bSMaxim Sobolev
102690dc539bSMaxim Sobolev20050223:
102710d6bd76SNate Lawson	The p4tcc driver has been merged into cpufreq(4).  This makes
102810d6bd76SNate Lawson	"options CPU_ENABLE_TCC" obsolete.  Please load cpufreq.ko or
102910d6bd76SNate Lawson	compile in "device cpufreq" to restore this functionality.
103010d6bd76SNate Lawson
1031aea80a64SXin LI20050220:
1032aea80a64SXin LI	The responsibility of recomputing the file system summary of
1033aea80a64SXin LI	a SoftUpdates-enabled dirty volume has been transferred to the
1034aea80a64SXin LI	background fsck.  A rebuild of fsck(8) utility is recommended
1035aea80a64SXin LI	if you have updated the kernel.
1036aea80a64SXin LI
1037aea80a64SXin LI	To get the old behavior (recompute file system summary at mount
1038aea80a64SXin LI	time), you can set vfs.ffs.compute_summary_at_mount=1 before
1039aea80a64SXin LI	mounting the new volume.
1040aea80a64SXin LI
1041da71ab85SGleb Smirnoff20050206:
1042398dd94cSNate Lawson	The cpufreq import is complete.  As part of this, the sysctls for
1043915a554bSNate Lawson	acpi(4) throttling have been removed.  The power_profile script
1044398dd94cSNate Lawson	has been updated, so you can use performance/economy_cpu_freq in
1045915a554bSNate Lawson	rc.conf(5) to set AC on/offline cpu frequencies.
1046398dd94cSNate Lawson
1047398dd94cSNate Lawson20050206:
1048da71ab85SGleb Smirnoff	NG_VERSION has been increased. Recompiling kernel (or ng_socket.ko)
1049da71ab85SGleb Smirnoff	requires recompiling libnetgraph and userland netgraph utilities.
10505ddd0622SBrooks Davis
10515ddd0622SBrooks Davis20050114:
10525ddd0622SBrooks Davis	Support for abbreviated forms of a number of ipfw options is
10535ddd0622SBrooks Davis	now deprecated.  Warnings are printed to stderr indicating the
10545ddd0622SBrooks Davis	correct full form when a match occurs.  Some abbreviations may
10555ddd0622SBrooks Davis	be supported at a later date based on user feedback.  To be
10565ddd0622SBrooks Davis	considered for support, abbreviations must be in use prior to
10575ddd0622SBrooks Davis	this commit and unlikely to be confused with current key words.
10585ddd0622SBrooks Davis
1059b521988eSRuslan Ermilov20041221:
1060b521988eSRuslan Ermilov	By a popular demand, a lot of NOFOO options were renamed
1061b521988eSRuslan Ermilov	to NO_FOO (see bsd.compat.mk for a full list).  The old
1062b521988eSRuslan Ermilov	spellings are still supported, but will cause annoying
1063b521988eSRuslan Ermilov	warnings on stderr.  Make sure you upgrade properly (see
1064b521988eSRuslan Ermilov	the COMMON ITEMS: section later in this file).
1065b521988eSRuslan Ermilov
106687c9e370SSam Leffler20041219:
106787c9e370SSam Leffler	Auto-loading of ancillary wlan modules such as wlan_wep has
106887c9e370SSam Leffler	been temporarily disabled; you need to statically configure
106987c9e370SSam Leffler	the modules you need into your kernel or explicitly load them
107087c9e370SSam Leffler	prior to use.  Specifically, if you intend to use WEP encryption
107187c9e370SSam Leffler	with an 802.11 device load/configure wlan_wep; if you want to
107287c9e370SSam Leffler	use WPA with the ath driver load/configure wlan_tkip, wlan_ccmp,
107387c9e370SSam Leffler	and wlan_xauth as required.
107487c9e370SSam Leffler
107571c1c49aSBrian Somers20041213:
107671c1c49aSBrian Somers	The behaviour of ppp(8) has changed slightly.  If lqr is enabled
107771c1c49aSBrian Somers	(``enable lqr''), older versions would revert to LCP ECHO mode on
107871c1c49aSBrian Somers	negotiation failure.  Now, ``enable echo'' is required for this
107971c1c49aSBrian Somers	behaviour.  The ppp version number has been bumped to 3.4.2 to
108071c1c49aSBrian Somers	reflect the change.
108171c1c49aSBrian Somers
108288046524SSam Leffler20041201:
108388046524SSam Leffler	The wlan support has been updated to split the crypto support
108488046524SSam Leffler	into separate modules.  For static WEP you must configure the
108588046524SSam Leffler	wlan_wep module in your system or build and install the module
108688046524SSam Leffler	in place where it can be loaded (the kernel will auto-load
108788046524SSam Leffler	the module when a wep key is configured).
108888046524SSam Leffler
108988046524SSam Leffler20041201:
109088046524SSam Leffler	The ath driver has been updated to split the tx rate control
109188046524SSam Leffler	algorithm into a separate module.  You need to include either
109288046524SSam Leffler	ath_rate_onoe or ath_rate_amrr when configuring the kernel.
109388046524SSam Leffler
109481adddf3SJohn Baldwin20041116:
109581adddf3SJohn Baldwin	Support for systems with an 80386 CPU has been removed.  Please
109681adddf3SJohn Baldwin	use FreeBSD 5.x or earlier on systems with an 80386.
109781adddf3SJohn Baldwin
109842ba1c57SPoul-Henning Kamp20041110:
109942ba1c57SPoul-Henning Kamp	We have had a hack which would mount the root filesystem
110042ba1c57SPoul-Henning Kamp	R/W if the device were named 'md*'.  As part of the vnode
110142ba1c57SPoul-Henning Kamp	work I'm doing I have had to remove this hack.  People
110242ba1c57SPoul-Henning Kamp	building systems which use preloaded MD root filesystems
110342ba1c57SPoul-Henning Kamp	may need to insert a "/sbin/mount -u -o rw /dev/md0 /" in
110442ba1c57SPoul-Henning Kamp	their /etc/rc scripts.
110542ba1c57SPoul-Henning Kamp
1106dcb5d8f8SRuslan Ermilov20041104:
1107dcb5d8f8SRuslan Ermilov	FreeBSD 5.3 shipped here.
1108dcb5d8f8SRuslan Ermilov
1109c94c54e4SAndre Oppermann20041102:
1110c94c54e4SAndre Oppermann	The size of struct tcpcb has changed again due to the removal
1111c94c54e4SAndre Oppermann	of RFC1644 T/TCP.  You have to recompile userland programs that
1112c94c54e4SAndre Oppermann	read kmem for tcp sockets directly (netstat, sockstat, etc.)
1113c94c54e4SAndre Oppermann
1114cd109b0dSAndre Oppermann20041022:
1115cd109b0dSAndre Oppermann	The size of struct tcpcb has changed.  You have to recompile
1116cd109b0dSAndre Oppermann	userland programs that read kmem for tcp sockets directly
1117cd109b0dSAndre Oppermann	(netstat, sockstat, etc.)
1118cd109b0dSAndre Oppermann
1119b2723608SWarner Losh20041016:
1120b2723608SWarner Losh	RELENG_5 branched here.  For older entries, please see updating
1121b2723608SWarner Losh	in the RELENG_5 branch.
112257199806SWarner Losh
1123dc0dbf5cSWarner LoshCOMMON ITEMS:
1124dc0dbf5cSWarner Losh
1125a24eff53SWarner Losh	General Notes
1126a24eff53SWarner Losh	-------------
1127a24eff53SWarner Losh	Avoid using make -j when upgrading.  From time to time in the
1128a24eff53SWarner Losh	past there have been problems using -j with buildworld and/or
1129a24eff53SWarner Losh	installworld.  This is especially true when upgrading between
1130a24eff53SWarner Losh	"distant" versions (eg one that cross a major release boundary
1131a24eff53SWarner Losh	or several minor releases, or when several months have passed
1132a24eff53SWarner Losh	on the -current branch).
1133a24eff53SWarner Losh
11345780f3baSWarner Losh	Sometimes, obscure build problems are the result of environment
11355780f3baSWarner Losh	poisoning.  This can happen because the make utility reads its
11365780f3baSWarner Losh	environment when searching for values for global variables.
11375780f3baSWarner Losh	To run your build attempts in an "environmental clean room",
11385780f3baSWarner Losh	prefix all make commands with 'env -i '.  See the env(1) manual
11395780f3baSWarner Losh	page for more details.
11405780f3baSWarner Losh
1141081ff8acSDoug Barton	When upgrading from one major version to another it is generally
1142081ff8acSDoug Barton	best to upgrade to the latest code in the currently installed branch
1143081ff8acSDoug Barton	first, then do an upgrade to the new branch. This is the best-tested
1144081ff8acSDoug Barton	upgrade path, and has the highest probability of being successful.
1145081ff8acSDoug Barton	Please try this approach before reporting problems with a major
1146081ff8acSDoug Barton	version upgrade.
1147081ff8acSDoug Barton
1148dc0dbf5cSWarner Losh	To build a kernel
1149dc0dbf5cSWarner Losh	-----------------
1150ba01eb20SWarner Losh	If you are updating from a prior version of FreeBSD (even one just
11511cf0ef11SDavid E. O'Brien	a few days old), you should follow this procedure.  It is the most
11521cf0ef11SDavid E. O'Brien	failsafe as it uses a /usr/obj tree with a fresh mini-buildworld,
11531cf0ef11SDavid E. O'Brien
11541cf0ef11SDavid E. O'Brien	make kernel-toolchain
1155282e0f01SRuslan Ermilov	make -DALWAYS_CHECK_MAKE buildkernel KERNCONF=YOUR_KERNEL_HERE
1156282e0f01SRuslan Ermilov	make -DALWAYS_CHECK_MAKE installkernel KERNCONF=YOUR_KERNEL_HERE
1157dc0dbf5cSWarner Losh
11582e937dd6SAlexander Leidinger	To test a kernel once
11592e937dd6SAlexander Leidinger	---------------------
11602e937dd6SAlexander Leidinger	If you just want to boot a kernel once (because you are not sure
11612e937dd6SAlexander Leidinger	if it works, or if you want to boot a known bad kernel to provide
11622e937dd6SAlexander Leidinger	debugging information) run
11632e937dd6SAlexander Leidinger	make installkernel KERNCONF=YOUR_KERNEL_HERE KODIR=/boot/testkernel
11642e937dd6SAlexander Leidinger	nextboot -k testkernel
11652e937dd6SAlexander Leidinger
1166ba01eb20SWarner Losh	To just build a kernel when you know that it won't mess you up
1167ba01eb20SWarner Losh	--------------------------------------------------------------
11680fbd2da9SKen Smith	This assumes you are already running a 5.X system.  Replace
11690fbd2da9SKen Smith	${arch} with the architecture of your machine (e.g. "i386",
11700fbd2da9SKen Smith	"alpha", "amd64", "ia64", "pc98", "sparc64", etc).
11710fbd2da9SKen Smith
11720fbd2da9SKen Smith	cd src/sys/${arch}/conf
117347d0d01fSWarner Losh	config KERNEL_NAME_HERE
11740fbd2da9SKen Smith	cd ../compile/KERNEL_NAME_HERE
1175ba01eb20SWarner Losh	make depend
1176ba01eb20SWarner Losh	make
1177ba01eb20SWarner Losh	make install
1178ba01eb20SWarner Losh
1179ba01eb20SWarner Losh	If this fails, go to the "To build a kernel" section.
1180ba01eb20SWarner Losh
1181ba01eb20SWarner Losh	To rebuild everything and install it on the current system.
1182ba01eb20SWarner Losh	-----------------------------------------------------------
118363cb445eSWarner Losh	# Note: sometimes if you are running current you gotta do more than
118463cb445eSWarner Losh	# is listed here if you are upgrading from a really old current.
118563cb445eSWarner Losh
1186f643de42SWarner Losh	<make sure you have good level 0 dumps>
118763cb445eSWarner Losh	make buildworld
11886586253aSWarner Losh	make kernel KERNCONF=YOUR_KERNEL_HERE
118963cb445eSWarner Losh							[1]
119063cb445eSWarner Losh	<reboot in single user>				[3]
119163cb445eSWarner Losh	mergemaster -p					[5]
119263cb445eSWarner Losh	make installworld
1193e2a36081SAlexander Leidinger	make delete-old
119463cb445eSWarner Losh	mergemaster					[4]
119563cb445eSWarner Losh	<reboot>
119663cb445eSWarner Losh
1197759f0aefSWarner Losh
1198f27b1fceSJoseph Koshy	To cross-install current onto a separate partition
1199f27b1fceSJoseph Koshy	--------------------------------------------------
1200f27b1fceSJoseph Koshy	# In this approach we use a separate partition to hold
1201f27b1fceSJoseph Koshy	# current's root, 'usr', and 'var' directories.   A partition
1202f27b1fceSJoseph Koshy	# holding "/", "/usr" and "/var" should be about 2GB in
1203f27b1fceSJoseph Koshy	# size.
1204f27b1fceSJoseph Koshy
1205f27b1fceSJoseph Koshy	<make sure you have good level 0 dumps>
1206f27b1fceSJoseph Koshy	<boot into -stable>
1207f27b1fceSJoseph Koshy	make buildworld
12083ecf3bddSRuslan Ermilov	make buildkernel KERNCONF=YOUR_KERNEL_HERE
1209f27b1fceSJoseph Koshy	<maybe newfs current's root partition>
1210f27b1fceSJoseph Koshy	<mount current's root partition on directory ${CURRENT_ROOT}>
1211f27b1fceSJoseph Koshy	make installworld DESTDIR=${CURRENT_ROOT}
12122d5cde04SRuslan Ermilov	make distribution DESTDIR=${CURRENT_ROOT} # if newfs'd
12133ecf3bddSRuslan Ermilov	make installkernel KERNCONF=YOUR_KERNEL_HERE DESTDIR=${CURRENT_ROOT}
1214f27b1fceSJoseph Koshy	cp /etc/fstab ${CURRENT_ROOT}/etc/fstab 		   # if newfs'd
1215f27b1fceSJoseph Koshy	<edit ${CURRENT_ROOT}/etc/fstab to mount "/" from the correct partition>
1216f27b1fceSJoseph Koshy	<reboot into current>
1217f27b1fceSJoseph Koshy	<do a "native" rebuild/install as described in the previous section>
1218737d990aSXin LI	<maybe install compatibility libraries from ports/misc/compat*>
1219f27b1fceSJoseph Koshy	<reboot>
1220f27b1fceSJoseph Koshy
1221f27b1fceSJoseph Koshy
12228ce4cbbfSWarner Losh	To upgrade in-place from 5.x-stable to current
1223f27b1fceSJoseph Koshy	----------------------------------------------
1224f643de42SWarner Losh	<make sure you have good level 0 dumps>
122521c075eaSWarner Losh	make buildworld					[9]
1226e5dc5f61SWarner Losh	make kernel KERNCONF=YOUR_KERNEL_HERE		[8]
1227fc8c157fSWarner Losh							[1]
1228fc8c157fSWarner Losh	<reboot in single user>				[3]
1229835284beSWarner Losh	mergemaster -p					[5]
1230ba26da8eSWarner Losh	make installworld
1231e2a36081SAlexander Leidinger	make delete-old
1232802fc49dSBrian Feldman	mergemaster -i					[4]
1233ba26da8eSWarner Losh	<reboot>
1234ba26da8eSWarner Losh
1235fdb9f54dSWarner Losh	Make sure that you've read the UPDATING file to understand the
1236fdb9f54dSWarner Losh	tweaks to various things you need.  At this point in the life
1237fdb9f54dSWarner Losh	cycle of current, things change often and you are on your own
1238fdb9f54dSWarner Losh	to cope.  The defaults can also change, so please read ALL of
1239fdb9f54dSWarner Losh	the UPDATING entries.
1240ba26da8eSWarner Losh
12411dece4a9SWarner Losh	Also, if you are tracking -current, you must be subscribed to
12421dece4a9SWarner Losh	freebsd-current@freebsd.org.  Make sure that before you update
12431dece4a9SWarner Losh	your sources that you have read and understood all the recent
12441dece4a9SWarner Losh	messages there.  If in doubt, please track -stable which has
12451dece4a9SWarner Losh	much fewer pitfalls.
12461dece4a9SWarner Losh
1247134d2e86SWarner Losh	[1] If you have third party modules, such as vmware, you
1248134d2e86SWarner Losh	should disable them at this point so they don't crash your
1249134d2e86SWarner Losh	system on reboot.
1250134d2e86SWarner Losh
1251ee6e1fc3SWarner Losh	[3] From the bootblocks, boot -s, and then do
1252ee6e1fc3SWarner Losh		fsck -p
1253ee6e1fc3SWarner Losh		mount -u /
1254ee6e1fc3SWarner Losh		mount -a
12556586253aSWarner Losh		cd src
125647d0d01fSWarner Losh		adjkerntz -i		# if CMOS is wall time
1257f6a0ef01SWarner Losh	Also, when doing a major release upgrade, it is required that
1258f6a0ef01SWarner Losh	you boot into single user mode to do the installworld.
1259ee6e1fc3SWarner Losh
1260a6cd4f9dSWarner Losh	[4] Note: This step is non-optional.  Failure to do this step
1261a6cd4f9dSWarner Losh	can result in a significant reduction in the functionality of the
1262a6cd4f9dSWarner Losh	system.  Attempting to do it by hand is not recommended and those
1263a6cd4f9dSWarner Losh	that pursue this avenue should read this file carefully, as well
1264a6cd4f9dSWarner Losh	as the archives of freebsd-current and freebsd-hackers mailing lists
1265a6cd4f9dSWarner Losh	for potential gotchas.
1266a6cd4f9dSWarner Losh
1267835284beSWarner Losh	[5] Usually this step is a noop.  However, from time to time
1268835284beSWarner Losh	you may need to do this if you get unknown user in the following
1269835284beSWarner Losh	step.  It never hurts to do it all the time.  You may need to
1270835284beSWarner Losh	install a new mergemaster (cd src/usr.sbin/mergemaster && make
1271835284beSWarner Losh	install) after the buildworld before this step if you last updated
1272835284beSWarner Losh	from current before 20020224 or from -stable before 20020408.
1273835284beSWarner Losh
1274c74fe6afSWarner Losh	[8] In order to have a kernel that can run the 4.x binaries
1275c74fe6afSWarner Losh	needed to do an installworld, you must include the COMPAT_FREEBSD4
1276c74fe6afSWarner Losh	option in your kernel.  Failure to do so may leave you with a system
127765f1be68SGleb Smirnoff	that is hard to boot to recover. A similar kernel option COMPAT_FREEBSD5
127865f1be68SGleb Smirnoff	is required to run the 5.x binaries on more recent kernels.
1279c74fe6afSWarner Losh
1280e5dc5f61SWarner Losh	Make sure that you merge any new devices from GENERIC since the
1281e5dc5f61SWarner Losh	last time you updated your kernel config file.
1282e5dc5f61SWarner Losh
128321c075eaSWarner Losh	[9] When checking out sources, you must include the -P flag to have
1284e5dc5f61SWarner Losh	cvs prune empty directories.
1285e5dc5f61SWarner Losh
1286e5dc5f61SWarner Losh	If CPUTYPE is defined in your /etc/make.conf, make sure to use the
1287e5dc5f61SWarner Losh	"?=" instead of the "=" assignment operator, so that buildworld can
1288e5dc5f61SWarner Losh	override the CPUTYPE if it needs to.
1289e5dc5f61SWarner Losh
1290e5dc5f61SWarner Losh	MAKEOBJDIRPREFIX must be defined in an environment variable, and
1291e5dc5f61SWarner Losh	not on the command line, or in /etc/make.conf.  buildworld will
1292e5dc5f61SWarner Losh	warn if it is improperly defined.
1293dc0dbf5cSWarner LoshFORMAT:
1294dc0dbf5cSWarner Losh
1295f699bbbbSMark OvensThis file contains a list, in reverse chronological order, of major
12961fc1a0dcSWarner Loshbreakages in tracking -current.  Not all things will be listed here,
12978ce4cbbfSWarner Loshand it only starts on October 16, 2004.  Updating files can found in
1298f8ab1dd6SWarner Loshprevious releases if your system is older than this.
12991fc1a0dcSWarner Losh
1300e72fd46aSWarner LoshCopyright information:
1301e72fd46aSWarner Losh
13028ce4cbbfSWarner LoshCopyright 1998-2005 M. Warner Losh.  All Rights Reserved.
1303e72fd46aSWarner Losh
1304772730c7SWarner LoshRedistribution, publication, translation and use, with or without
1305772730c7SWarner Loshmodification, in full or in part, in any form or format of this
13069698f2c0SWarner Loshdocument are permitted without further permission from the author.
1307e72fd46aSWarner Losh
1308e72fd46aSWarner LoshTHIS DOCUMENT IS PROVIDED BY WARNER LOSH ``AS IS'' AND ANY EXPRESS OR
1309e72fd46aSWarner LoshIMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
1310e72fd46aSWarner LoshWARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
1311e72fd46aSWarner LoshDISCLAIMED.  IN NO EVENT SHALL WARNER LOSH BE LIABLE FOR ANY DIRECT,
1312e72fd46aSWarner LoshINDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
1313e72fd46aSWarner Losh(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
1314e72fd46aSWarner LoshSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
1315e72fd46aSWarner LoshHOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
1316e72fd46aSWarner LoshSTRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
1317e72fd46aSWarner LoshIN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
1318e72fd46aSWarner LoshPOSSIBILITY OF SUCH DAMAGE.
1319e72fd46aSWarner Losh
1320e72fd46aSWarner LoshIf you find this document useful, and you want to, you may buy the
1321e72fd46aSWarner Loshauthor a beer.
1322e72fd46aSWarner Losh
132322306abcSWarner LoshContact Warner Losh if you have any questions about your use of
1324772730c7SWarner Loshthis document.
1325772730c7SWarner Losh
132697d92980SPeter Wemm$FreeBSD$
1327