xref: /freebsd/UPDATING (revision 0ac2c3d1f39909ee764bcb342c9f3deed6ad41a8)
112f22a78SPeter WemmUpdating Information for FreeBSD current users.
253dfde79SWarner Losh
3456b5dd8SWarner LoshThis file is maintained and copyrighted by M. Warner Losh <imp@freebsd.org>.
4456b5dd8SWarner LoshSee end of file for further details.  For commonly done items, please see the
5456b5dd8SWarner LoshCOMMON ITEMS: section later in the file.  These instructions assume that you
6456b5dd8SWarner Loshbasically know what you are doing.  If not, then please consult the FreeBSD
7e0fb6dc3SRobert Watsonhandbook:
8e0fb6dc3SRobert Watson
9e0fb6dc3SRobert Watson    http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/makeworld.html
10e72fd46aSWarner Losh
112c724730SWarner LoshItems affecting the ports and packages system can be found in
12456b5dd8SWarner Losh/usr/ports/UPDATING.  Please read that file before running portupgrade.
132c724730SWarner Losh
144f1def68SWarner LoshNOTE: FreeBSD has switched from gcc to clang. If you have trouble bootstrapping
15a46954e2SWarner Loshfrom older versions of FreeBSD, try WITHOUT_CLANG and WITH_GCC to bootstrap to
16a46954e2SWarner Loshthe tip of head, and then rebuild without this option. The bootstrap process from
1755b76981SWarner Losholder version of current across the gcc/clang cutover is a bit fragile.
184f1def68SWarner Losh
19006a42a9SGlen BarberNOTE TO PEOPLE WHO THINK THAT FreeBSD 11.x IS SLOW:
20006a42a9SGlen Barber	FreeBSD 11.x has many debugging features turned on, in both the kernel
21456b5dd8SWarner Losh	and userland.  These features attempt to detect incorrect use of
22456b5dd8SWarner Losh	system primitives, and encourage loud failure through extra sanity
23456b5dd8SWarner Losh	checking and fail stop semantics.  They also substantially impact
24456b5dd8SWarner Losh	system performance.  If you want to do performance measurement,
25456b5dd8SWarner Losh	benchmarking, and optimization, you'll want to turn them off.  This
26456b5dd8SWarner Losh	includes various WITNESS- related kernel options, INVARIANTS, malloc
27456b5dd8SWarner Losh	debugging flags in userland, and various verbose features in the
28456b5dd8SWarner Losh	kernel.  Many developers choose to disable these features on build
2999e449f2SJason Evans	machines to maximize performance.  (To completely disable malloc
3099e449f2SJason Evans	debugging, define MALLOC_PRODUCTION in /etc/make.conf, or to merely
3199e449f2SJason Evans	disable the most expensive debugging functionality run
3299e449f2SJason Evans	"ln -s 'abort:false,junk:false' /etc/malloc.conf".)
33efc06131SSam Leffler
34143c11b4SDimitry Andric20141231:
35143c11b4SDimitry Andric	Clang, llvm and lldb have been upgraded to 3.5.0 release.
36143c11b4SDimitry Andric
37*0ac2c3d1SDimitry Andric	As of this release, a prerequisite for building clang, llvm and lldb is
38*0ac2c3d1SDimitry Andric	a C++11 capable compiler and C++11 standard library.  This means that to
39143c11b4SDimitry Andric	be able to successfully build the cross-tools stage of buildworld, with
40143c11b4SDimitry Andric	clang as the bootstrap compiler, your system compiler or cross compiler
41143c11b4SDimitry Andric	should either be clang 3.3 or later, or gcc 4.8 or later, and your
42143c11b4SDimitry Andric	system C++ library should be libc++, or libdstdc++ from gcc 4.8 or
43143c11b4SDimitry Andric	later.
44143c11b4SDimitry Andric
45*0ac2c3d1SDimitry Andric	On any standard FreeBSD 10.x or 11.x installation, where clang and
46*0ac2c3d1SDimitry Andric	libc++ are on by default (that is, on x86 or arm), this should work out
47*0ac2c3d1SDimitry Andric	of the box.
48143c11b4SDimitry Andric
49143c11b4SDimitry Andric	On 9.x installations where clang is enabled by default, e.g. on x86 and
50143c11b4SDimitry Andric	powerpc, libc++ will not be enabled by default, so libc++ should be
51143c11b4SDimitry Andric	built (with clang) and installed first.  If both clang and libc++ are
52143c11b4SDimitry Andric	missing, build clang first, then use it to build libc++.
53143c11b4SDimitry Andric
54143c11b4SDimitry Andric	On 8.x and earlier installations, upgrade to 9.x first, and then follow
55143c11b4SDimitry Andric	the instructions for 9.x above.
56143c11b4SDimitry Andric
57*0ac2c3d1SDimitry Andric	Sparc64 and mips users are unaffected, as they still use gcc 4.2.1 by
58*0ac2c3d1SDimitry Andric	default, and do not build clang.
59*0ac2c3d1SDimitry Andric
60*0ac2c3d1SDimitry Andric	Many embedded systems are resource constrained, and will not be able to
61*0ac2c3d1SDimitry Andric	build clang in a reasonable time, or in some cases at all.  In those
62*0ac2c3d1SDimitry Andric	cases, cross building bootable systems on amd64 is a workaround.
63*0ac2c3d1SDimitry Andric
64143c11b4SDimitry Andric	This new version of clang introduces a number of new warnings, of which
65143c11b4SDimitry Andric	the following are most likely to appear:
66143c11b4SDimitry Andric
67143c11b4SDimitry Andric	-Wabsolute-value
68143c11b4SDimitry Andric
69143c11b4SDimitry Andric	This warns in two cases, for both C and C++:
70143c11b4SDimitry Andric	* When the code is trying to take the absolute value of an unsigned
71143c11b4SDimitry Andric	  quantity, which is effectively a no-op, and almost never what was
72143c11b4SDimitry Andric	  intended.  The code should be fixed, if at all possible.  If you are
73143c11b4SDimitry Andric	  sure that the unsigned quantity can be safely cast to signed, without
74143c11b4SDimitry Andric	  loss of information or undefined behavior, you can add an explicit
75143c11b4SDimitry Andric	  cast, or disable the warning.
76143c11b4SDimitry Andric
77143c11b4SDimitry Andric	* When the code is trying to take an absolute value, but the called
78143c11b4SDimitry Andric	  abs() variant is for the wrong type, which can lead to truncation.
79143c11b4SDimitry Andric	  If you want to disable the warning instead of fixing the code, please
80143c11b4SDimitry Andric	  make sure that truncation will not occur, or it might lead to unwanted
81143c11b4SDimitry Andric	  side-effects.
82143c11b4SDimitry Andric
83143c11b4SDimitry Andric	-Wtautological-undefined-compare and
84143c11b4SDimitry Andric	-Wundefined-bool-conversion
85143c11b4SDimitry Andric
86143c11b4SDimitry Andric	These warn when C++ code is trying to compare 'this' against NULL, while
87143c11b4SDimitry Andric	'this' should never be NULL in well-defined C++ code.  However, there is
88143c11b4SDimitry Andric	some legacy (pre C++11) code out there, which actively abuses this
89143c11b4SDimitry Andric	feature, which was less strictly defined in previous C++ versions.
90143c11b4SDimitry Andric
91143c11b4SDimitry Andric	Squid and openjdk do this, for example.  The warning can be turned off
92143c11b4SDimitry Andric	for C++98 and earlier, but compiling the code in C++11 mode might result
93143c11b4SDimitry Andric	in unexpected behavior; for example, the parts of the program that are
94143c11b4SDimitry Andric	unreachable could be optimized away.
95143c11b4SDimitry Andric
960b327b63SRick Macklem20141222:
970b327b63SRick Macklem	The old NFS client and server (kernel options NFSCLIENT, NFSSERVER)
980b327b63SRick Macklem	kernel sources have been removed. The .h files remain, since some
990b327b63SRick Macklem	utilities include them. This will need to be fixed later.
1000b327b63SRick Macklem	If "mount -t oldnfs ..." is attempted, it will fail.
1010b327b63SRick Macklem	If the "-o" option on mountd(8), nfsd(8) or nfsstat(1) is used,
1020b327b63SRick Macklem	the utilities will report errors.
1030b327b63SRick Macklem
1045f25ee9cSBrooks Davis20141121:
1055f25ee9cSBrooks Davis	The handling of LOCAL_LIB_DIRS has been altered to skip addition of
1065f25ee9cSBrooks Davis	directories to top level SUBDIR variable when their parent
1075f25ee9cSBrooks Davis	directory is included in LOCAL_DIRS.  Users with build systems with
1085f25ee9cSBrooks Davis	such hierarchies and without SUBDIR entries in the parent
1095f25ee9cSBrooks Davis	directory Makefiles should add them or add the directories to
1105f25ee9cSBrooks Davis	LOCAL_DIRS.
1115f25ee9cSBrooks Davis
112603eaf79SAlexander V. Chernikov20141109:
113603eaf79SAlexander V. Chernikov	faith(4) and faithd(8) has been removed from base system. It
114603eaf79SAlexander V. Chernikov	has been obsolete for a very long time.
115603eaf79SAlexander V. Chernikov
1162d6f6d63SJean-Sébastien Pédron20141104:
1172d6f6d63SJean-Sébastien Pédron	vt(4), the new console driver, is enabled by default. It brings
1182d6f6d63SJean-Sébastien Pédron	support for Unicode and double-width characters, as well as
1192d6f6d63SJean-Sébastien Pédron	support for UEFI and integration with the KMS kernel video
1202d6f6d63SJean-Sébastien Pédron	drivers.
1212d6f6d63SJean-Sébastien Pédron
1222d6f6d63SJean-Sébastien Pédron	You may need to update your console settings in /etc/rc.conf,
1232d6f6d63SJean-Sébastien Pédron	most probably the keymap. During boot, /etc/rc.d/syscons will
1242d6f6d63SJean-Sébastien Pédron	indicate what you need to do.
1252d6f6d63SJean-Sébastien Pédron
1262d6f6d63SJean-Sébastien Pédron	vt(4) still has issues and lacks some features compared to
1272d6f6d63SJean-Sébastien Pédron	syscons(4). See the wiki for up-to-date information:
1282d6f6d63SJean-Sébastien Pédron	  https://wiki.freebsd.org/Newcons
1292d6f6d63SJean-Sébastien Pédron
1302d6f6d63SJean-Sébastien Pédron	If you want to keep using syscons(4), you can do so by adding
1312d6f6d63SJean-Sébastien Pédron	the following line to /boot/loader.conf:
1322d6f6d63SJean-Sébastien Pédron	  kern.vty=sc
1332d6f6d63SJean-Sébastien Pédron
134fa809347SEnji Cooper20141102:
135fa809347SEnji Cooper	pjdfstest has been integrated into kyua as an opt-in test suite.
136fa809347SEnji Cooper	Please see share/doc/pjdfstest/README for a more details on how to
137fa809347SEnji Cooper	execute it.
138fa809347SEnji Cooper
139ddd96d23SEd Maste20141009:
140ddd96d23SEd Maste	gperf has been removed from the base system for architectures
141ddd96d23SEd Maste	that use clang. Ports that require gperf will obtain it from the
142ddd96d23SEd Maste	devel/gperf port.
143ddd96d23SEd Maste
14440a8ac8fSEnji Cooper20140923:
14540a8ac8fSEnji Cooper	pjdfstest has been moved from tools/regression/pjdfstest to
14640a8ac8fSEnji Cooper	contrib/pjdfstest .
14740a8ac8fSEnji Cooper
148243d6a50SSean Bruno20140922:
149243d6a50SSean Bruno	At svn r271982, The default linux compat kernel ABI has been adjusted
150243d6a50SSean Bruno	to 2.6.18 in support of the linux-c6 compat ports infrastructure
151243d6a50SSean Bruno	update.  If you wish to continue using the linux-f10 compat ports,
152243d6a50SSean Bruno	add compat.linux.osrelease=2.6.16 to your local sysctl.conf.  Users are
153243d6a50SSean Bruno	encouraged to update their linux-compat packages to linux-c6 during
154243d6a50SSean Bruno	their next update cycle.
155243d6a50SSean Bruno
156232490c6SNathan Whitehorn20140729:
157232490c6SNathan Whitehorn	The ofwfb driver, used to provide a graphics console on PowerPC when
158232490c6SNathan Whitehorn	using vt(4), no longer allows mmap() of all of physical memory. This
159232490c6SNathan Whitehorn	will prevent Xorg on PowerPC with some ATI graphics cards from
160232490c6SNathan Whitehorn	initializing properly unless x11-servers/xorg-server is updated to
161232490c6SNathan Whitehorn	1.12.4_8 or newer.
162232490c6SNathan Whitehorn
1630aafd404SWarner Losh20140723:
1640aafd404SWarner Losh	The xdev targets have been converted to using TARGET and
1650aafd404SWarner Losh	TARGET_ARCH instead of XDEV and XDEV_ARCH.
1660aafd404SWarner Losh
1670d0485e2SDag-Erling Smørgrav20140719:
1680d0485e2SDag-Erling Smørgrav	The default unbound configuration has been modified to address
1690d0485e2SDag-Erling Smørgrav	issues with reverse lookups on networks that use private
1700d0485e2SDag-Erling Smørgrav	address ranges.  If you use the local_unbound service, run
1710d0485e2SDag-Erling Smørgrav	"service local_unbound setup" as root to regenerate your
1720d0485e2SDag-Erling Smørgrav	configuration, then "service local_unbound reload" to load the
1730d0485e2SDag-Erling Smørgrav	new configuration.
1740d0485e2SDag-Erling Smørgrav
175f4717209SBaptiste Daroussin20140709:
176f4717209SBaptiste Daroussin	The GNU texinfo and GNU info pages are not built and installed
177f4717209SBaptiste Daroussin	anymore, WITH_INFO knob has been added to allow to built and install
178f4717209SBaptiste Daroussin	them again.
179f4717209SBaptiste Daroussin
1808a833bdaSBaptiste Daroussin20140708:
1818a833bdaSBaptiste Daroussin	The GNU readline library is now an INTERNALLIB - that is, it is
1828a833bdaSBaptiste Daroussin	statically linked into consumers (GDB and variants) in the base
1838a833bdaSBaptiste Daroussin	system, and the shared library is no longer installed.  The
1848a833bdaSBaptiste Daroussin	devel/readline port is available for third party software that
1858a833bdaSBaptiste Daroussin	requires readline.
1868a833bdaSBaptiste Daroussin
18750f73640SMarcel Moolenaar20140702:
18850f73640SMarcel Moolenaar	The Itanium architecture (ia64) has been removed from the list of
18950f73640SMarcel Moolenaar	known architectures. This is the first step in the removal of the
19050f73640SMarcel Moolenaar	architecture.
19150f73640SMarcel Moolenaar
19218aa7fccSRick Macklem20140701:
19318aa7fccSRick Macklem	Commit r268115 has added NFSv4.1 server support, merged from
19418aa7fccSRick Macklem	projects/nfsv4.1-server.  Since this includes changes to the
19518aa7fccSRick Macklem	internal interfaces between the NFS related modules, a full
19618aa7fccSRick Macklem	build of the kernel and modules will be necessary.
19718aa7fccSRick Macklem	__FreeBSD_version has been bumped.
19818aa7fccSRick Macklem
199824a9093SEd Maste20140629:
200824a9093SEd Maste	The WITHOUT_VT_SUPPORT kernel config knob has been renamed
201824a9093SEd Maste	WITHOUT_VT.  (The other _SUPPORT knobs have a consistent meaning
202824a9093SEd Maste	which differs from the behaviour controlled by this knob.)
203824a9093SEd Maste
20438b72f8cSAlexander Motin20140619:
20538b72f8cSAlexander Motin	Maximal length of the serial number in CTL was increased from 16 to
20638b72f8cSAlexander Motin	64 chars, that breaks ABI.  All CTL-related tools, such as ctladm
20738b72f8cSAlexander Motin	and ctld, need to be rebuilt to work with a new kernel.
20838b72f8cSAlexander Motin
209727a7ce8SJulio Merino20140606:
210727a7ce8SJulio Merino	The libatf-c and libatf-c++ major versions were downgraded to 0 and
211727a7ce8SJulio Merino	1 respectively to match the upstream numbers.  They were out of
212727a7ce8SJulio Merino	sync because, when they were originally added to FreeBSD, the
213727a7ce8SJulio Merino	upstream versions were not respected.  These libraries are private
214727a7ce8SJulio Merino	and not yet built by default, so renumbering them should be a
215727a7ce8SJulio Merino	non-issue.  However, unclean source trees will yield broken test
216727a7ce8SJulio Merino	programs once the operator executes "make delete-old-libs" after a
217727a7ce8SJulio Merino	"make installworld".
218727a7ce8SJulio Merino
2198c7ec47aSJulio Merino	Additionally, the atf-sh binary was made private by moving it into
2208c7ec47aSJulio Merino	/usr/libexec/.  Already-built shell test programs will keep the
2218c7ec47aSJulio Merino	path to the old binary so they will break after "make delete-old"
2228c7ec47aSJulio Merino	is run.
2238c7ec47aSJulio Merino
224727a7ce8SJulio Merino	If you are using WITH_TESTS=yes (not the default), wipe the object
225727a7ce8SJulio Merino	tree and rebuild from scratch to prevent spurious test failures.
2268c7ec47aSJulio Merino	This is only needed once: the misnumbered libraries and misplaced
2278c7ec47aSJulio Merino	binaries have been added to OptionalObsoleteFiles.inc so they will
2288c7ec47aSJulio Merino	be removed during a clean upgrade.
229727a7ce8SJulio Merino
23085d60e68SDimitry Andric20140512:
23185d60e68SDimitry Andric	Clang and llvm have been upgraded to 3.4.1 release.
23285d60e68SDimitry Andric
233fa114234SWarner Losh20140508:
234fa114234SWarner Losh	We bogusly installed src.opts.mk in /usr/share/mk. This file should
235fa114234SWarner Losh	be removed to avoid issues in the future (and has been added to
236fa114234SWarner Losh	ObsoleteFiles.inc).
237fa114234SWarner Losh
238a46954e2SWarner Losh20140505:
239a46954e2SWarner Losh	/etc/src.conf now affects only builds of the FreeBSD src tree. In the
240a46954e2SWarner Losh	past, it affected all builds that used the bsd.*.mk files. The old
241a46954e2SWarner Losh	behavior was a bug, but people may have relied upon it. To get this
242a46954e2SWarner Losh	behavior back, you can .include /etc/src.conf from /etc/make.conf
243a46954e2SWarner Losh	(which is still global and isn't changed). This also changes the
244a46954e2SWarner Losh	behavior of incremental builds inside the tree of individual
24559a24370SWarner Losh	directories. Set MAKESYSPATH to ".../share/mk" to do that.
246a46954e2SWarner Losh	Although this has survived make universe and some upgrade scenarios,
24755b76981SWarner Losh	other upgrade scenarios may have broken. At least one form of
24855b76981SWarner Losh	temporary breakage was fixed with MAKESYSPATH settings for buildworld
24959a24370SWarner Losh	as well... In cases where MAKESYSPATH isn't working with this
25059a24370SWarner Losh	setting, you'll need to set it to the full path to your tree.
251a46954e2SWarner Losh
252bd871f14SWarner Losh	One side effect of all this cleaning up is that bsd.compiler.mk
253bd871f14SWarner Losh	is no longer implicitly included by bsd.own.mk. If you wish to
254bd871f14SWarner Losh	use COMPILER_TYPE, you must now explicitly include bsd.compiler.mk
255bd871f14SWarner Losh	as well.
256bd871f14SWarner Losh
257461dbce2SEitan Adler20140430:
258461dbce2SEitan Adler	The lindev device has been removed since /dev/full has been made a
259461dbce2SEitan Adler	standard device.  __FreeBSD_version has been bumped.
260461dbce2SEitan Adler
2612bb08298SWarner Losh20140418:
2622bb08298SWarner Losh	The YES_HESIOD knob has been removed. It has been obsolete for
2632bb08298SWarner Losh	a decade. Please move to using WITH_HESIOD instead or your builds
2642bb08298SWarner Losh	will silently lack HESIOD.
2652bb08298SWarner Losh
2664c710b67SMarcel Moolenaar20140405:
2674c710b67SMarcel Moolenaar	The uart(4) driver has been changed with respect to its handling
2684c710b67SMarcel Moolenaar	of the low-level console. Previously the uart(4) driver prevented
2694c710b67SMarcel Moolenaar	any process from changing the baudrate or the CLOCAL and HUPCL
2704c710b67SMarcel Moolenaar	control flags. By removing the restrictions, operators can make
2714c710b67SMarcel Moolenaar	changes to the serial console port without having to reboot.
2724c710b67SMarcel Moolenaar	However, when getty(8) is started on the serial device that is
2734c710b67SMarcel Moolenaar	associated with the low-level console, a misconfigured terminal
2744c710b67SMarcel Moolenaar	line in /etc/ttys will now have a real impact.
2754c710b67SMarcel Moolenaar	Before upgrading the kernel, make sure that /etc/ttys has the
2764c710b67SMarcel Moolenaar	serial console device configured as 3wire without baudrate to
277086036aaSMarcel Moolenaar	preserve the previous behaviour. E.g:
2784c710b67SMarcel Moolenaar	    ttyu0  "/usr/libexec/getty 3wire"  vt100  on  secure
2794c710b67SMarcel Moolenaar
280ea9ed3d8SAlexander Motin20140306:
281ea9ed3d8SAlexander Motin	Support for libwrap (TCP wrappers) in rpcbind was disabled by default
282ea9ed3d8SAlexander Motin	to improve performance.  To re-enable it, if needed, run rpcbind
283ea9ed3d8SAlexander Motin	with command line option -W.
284ea9ed3d8SAlexander Motin
285a9fd2218SWarner Losh20140226:
286a9fd2218SWarner Losh	Switched back to the GPL dtc compiler due to updates in the upstream
287a9fd2218SWarner Losh	dts files not being supported by the BSDL dtc compiler. You will need
288a9fd2218SWarner Losh	to rebuild your kernel toolchain to pick up the new compiler. Core dumps
289a9fd2218SWarner Losh	may result while building dtb files during a kernel build if you fail
290a9fd2218SWarner Losh	to do so. Set WITHOUT_GPL_DTC if you require the BSDL compiler.
291a9fd2218SWarner Losh
2928de08345SChristian Brueffer20140216:
2933ad1a091SWarner Losh	Clang and llvm have been upgraded to 3.4 release.
2943ad1a091SWarner Losh
295f785676fSDimitry Andric20140216:
2968de08345SChristian Brueffer	The nve(4) driver has been removed.  Please use the nfe(4) driver
2978de08345SChristian Brueffer	for NVIDIA nForce MCP Ethernet adapters instead.
2988de08345SChristian Brueffer
2999f23d19aSDimitry Andric20140212:
3009f23d19aSDimitry Andric	An ABI incompatibility crept into the libc++ 3.4 import in r261283.
3019f23d19aSDimitry Andric	This could cause certain C++ applications using shared libraries built
3029f23d19aSDimitry Andric	against the previous version of libc++ to crash.  The incompatibility
3039f23d19aSDimitry Andric	has now been fixed, but any C++ applications or shared libraries built
3049f23d19aSDimitry Andric	between r261283 and r261801 should be recompiled.
3059f23d19aSDimitry Andric
3065e4b8b0dSXin LI20140204:
3075e4b8b0dSXin LI	OpenSSH will now ignore errors caused by kernel lacking of Capsicum
3085e4b8b0dSXin LI	capability mode support.  Please note that enabling the feature in
3095e4b8b0dSXin LI	kernel is still highly recommended.
3105e4b8b0dSXin LI
3115e4b8b0dSXin LI20140131:
3125e4b8b0dSXin LI	OpenSSH is now built with sandbox support, and will use sandbox as
3135e4b8b0dSXin LI	the default privilege separation method.  This requires Capsicum
3145e4b8b0dSXin LI	capability mode support in kernel.
3155e4b8b0dSXin LI
316d1166b82SKai Wang20140128:
3172e503d34SKai Wang	The libelf and libdwarf libraries have been updated to newer
3182e503d34SKai Wang	versions from upstream. Shared library version numbers for
3192e503d34SKai Wang	these two libraries were bumped. Any ports or binaries
3202e503d34SKai Wang	requiring these two libraries should be recompiled.
3212e503d34SKai Wang	__FreeBSD_version is bumped to 1100006.
3222e503d34SKai Wang
323d7efee23SJulio Merino20140110:
324d7efee23SJulio Merino	If a Makefile in a tests/ directory was auto-generating a Kyuafile
325d7efee23SJulio Merino	instead of providing an explicit one, this would prevent such
326d7efee23SJulio Merino	Makefile from providing its own Kyuafile in the future during
327d7efee23SJulio Merino	NO_CLEAN builds.  This has been fixed in the Makefiles but manual
328d7efee23SJulio Merino	intervention is needed to clean an objdir if you use NO_CLEAN:
329d7efee23SJulio Merino	  # find /usr/obj -name Kyuafile | xargs rm -f
330d7efee23SJulio Merino
3312773bfa9SBenjamin Kaduk20131213:
3322773bfa9SBenjamin Kaduk	The behavior of gss_pseudo_random() for the krb5 mechanism
3332773bfa9SBenjamin Kaduk	has changed, for applications requesting a longer random string
3342773bfa9SBenjamin Kaduk	than produced by the underlying enctype's pseudo-random() function.
3352773bfa9SBenjamin Kaduk	In particular, the random string produced from a session key of
3362773bfa9SBenjamin Kaduk	enctype aes256-cts-hmac-sha1-96 or aes256-cts-hmac-sha1-96 will
3372773bfa9SBenjamin Kaduk	be different at the 17th octet and later, after this change.
3382773bfa9SBenjamin Kaduk	The counter used in the PRF+ construction is now encoded as a
3392773bfa9SBenjamin Kaduk	big-endian integer in accordance with RFC 4402.
3402773bfa9SBenjamin Kaduk	__FreeBSD_version is bumped to 1100004.
3412773bfa9SBenjamin Kaduk
342e01d128aSJulio Merino20131108:
343e01d128aSJulio Merino	The WITHOUT_ATF build knob has been removed and its functionality
344e01d128aSJulio Merino	has been subsumed into the more generic WITHOUT_TESTS.  If you were
345e01d128aSJulio Merino	using the former to disable the build of the ATF libraries, you
346e01d128aSJulio Merino	should change your settings to use the latter.
347e01d128aSJulio Merino
348b9cd6b0aSBrooks Davis20131025:
349b9cd6b0aSBrooks Davis	The default version of mtree is nmtree which is obtained from
350b9cd6b0aSBrooks Davis	NetBSD.  The output is generally the same, but may vary
351b9cd6b0aSBrooks Davis	slightly.  If you found you need identical output adding
352b9cd6b0aSBrooks Davis	"-F freebsd9" to the command line should do the trick.  For the
353b9cd6b0aSBrooks Davis	time being, the old mtree is available as fmtree.
354b9cd6b0aSBrooks Davis
355e3ededfaSBryan Drewery20131014:
356e3ededfaSBryan Drewery	libbsdyml has been renamed to libyaml and moved to /usr/lib/private.
357e3ededfaSBryan Drewery	This will break ports-mgmt/pkg. Rebuild the port, or upgrade to pkg
358e3ededfaSBryan Drewery	1.1.4_8 and verify bsdyml not linked in, before running "make
359e3ededfaSBryan Drewery	delete-old-libs":
360e3ededfaSBryan Drewery	  # make -C /usr/ports/ports-mgmt/pkg build deinstall install clean
361e3ededfaSBryan Drewery	  or
362e3ededfaSBryan Drewery	  # pkg install pkg; ldd /usr/local/sbin/pkg | grep bsdyml
363e3ededfaSBryan Drewery
36484b354cbSHiroki Sato20131010:
36584b354cbSHiroki Sato	The rc.d/jail script has been updated to support jail(8)
36684b354cbSHiroki Sato	configuration file.  The "jail_<jname>_*" rc.conf(5) variables
36784b354cbSHiroki Sato	for per-jail configuration are automatically converted to
36884b354cbSHiroki Sato	/var/run/jail.<jname>.conf before the jail(8) utility is invoked.
36984b354cbSHiroki Sato	This is transparently backward compatible.  See below about some
37084b354cbSHiroki Sato	incompatibilities and rc.conf(5) manual page for more details.
37184b354cbSHiroki Sato
37284b354cbSHiroki Sato	These variables are now deprecated in favor of jail(8) configuration
37384b354cbSHiroki Sato	file.  One can use "rc.d/jail config <jname>" command to generate
37484b354cbSHiroki Sato	a jail(8) configuration file in /var/run/jail.<jname>.conf without
37584b354cbSHiroki Sato	running the jail(8) utility.   The default pathname of the
37684b354cbSHiroki Sato	configuration file is /etc/jail.conf and can be specified by
37784b354cbSHiroki Sato	using $jail_conf or $jail_<jname>_conf variables.
37884b354cbSHiroki Sato
37984b354cbSHiroki Sato	Please note that jail_devfs_ruleset accepts an integer at
38084b354cbSHiroki Sato	this moment.  Please consider to rewrite the ruleset name
38184b354cbSHiroki Sato	with an integer.
38284b354cbSHiroki Sato
3832d69252aSDag-Erling Smørgrav20130930:
3842d69252aSDag-Erling Smørgrav	BIND has been removed from the base system.  If all you need
3852d69252aSDag-Erling Smørgrav	is a local resolver, simply enable and start the local_unbound
3862d69252aSDag-Erling Smørgrav	service instead.  Otherwise, several versions of BIND are
3878a65c0b9SCraig Rodrigues	available in the ports tree.   The dns/bind99 port is one example.
3888a65c0b9SCraig Rodrigues
3898a65c0b9SCraig Rodrigues	With this change, nslookup(1) and dig(1) are no longer in the base
390edc144a1SCraig Rodrigues	system.  Users should instead use host(1) and drill(1) which are
3918a65c0b9SCraig Rodrigues	in the base system.  Alternatively, nslookup and dig can
3928a65c0b9SCraig Rodrigues	be obtained by installing the dns/bind-tools port.
3932d69252aSDag-Erling Smørgrav
394665751ecSGlen Barber20130916:
395665751ecSGlen Barber	With the addition of unbound(8), a new unbound user is now
396665751ecSGlen Barber	required during installworld.  "mergemaster -p" can be used to
397665751ecSGlen Barber	add the user prior to installworld, as documented in the handbook.
398665751ecSGlen Barber
399bd8277b4SDag-Erling Smørgrav20130911:
400bd8277b4SDag-Erling Smørgrav	OpenSSH is now built with DNSSEC support, and will by default
401bd8277b4SDag-Erling Smørgrav	silently trust signed SSHFP records.  This can be controlled with
402bd8277b4SDag-Erling Smørgrav	the VerifyHostKeyDNS client configuration setting.  DNSSEC support
403bd8277b4SDag-Erling Smørgrav	can be disabled entirely with the WITHOUT_LDNS option in src.conf.
404bd8277b4SDag-Erling Smørgrav
405d6d3e03eSDavid Chisnall20130906:
406d6d3e03eSDavid Chisnall	The GNU Compiler Collection and C++ standard library (libstdc++)
407d6d3e03eSDavid Chisnall	are no longer built by default on platforms where clang is the system
408d6d3e03eSDavid Chisnall	compiler.  You can enable them with the WITH_GCC and WITH_GNUCXX
409d6d3e03eSDavid Chisnall	options in src.conf.
410d6d3e03eSDavid Chisnall
4114877522eSPawel Jakub Dawidek20130905:
4122057b58bSPawel Jakub Dawidek	The PROCDESC kernel option is now part of the GENERIC kernel
4132057b58bSPawel Jakub Dawidek	configuration and is required for the rwhod(8) to work.
4142057b58bSPawel Jakub Dawidek	If you are using custom kernel configuration, you should include
4152057b58bSPawel Jakub Dawidek	'options PROCDESC'.
4162057b58bSPawel Jakub Dawidek
4172057b58bSPawel Jakub Dawidek20130905:
4184877522eSPawel Jakub Dawidek	The API and ABI related to the Capsicum framework was modified
4194877522eSPawel Jakub Dawidek	in backward incompatible way. The userland libraries and programs
4204877522eSPawel Jakub Dawidek	have to be recompiled to work with the new kernel. This includes the
4214877522eSPawel Jakub Dawidek	following libraries and programs, but the whole buildworld is
4224877522eSPawel Jakub Dawidek	advised: libc, libprocstat, dhclient, tcpdump, hastd, hastctl,
4234877522eSPawel Jakub Dawidek	kdump, procstat, rwho, rwhod, uniq.
4244877522eSPawel Jakub Dawidek
425c8a84c2aSJohn-Mark Gurney20130903:
426c8a84c2aSJohn-Mark Gurney	AES-NI intrinsic support has been added to gcc.  The AES-NI module
427c8a84c2aSJohn-Mark Gurney	has been updated to use this support.  A new gcc is required to build
428c8a84c2aSJohn-Mark Gurney	the aesni module on both i386 and amd64.
429c8a84c2aSJohn-Mark Gurney
43046be218dSDavid E. O'Brien20130821:
43146be218dSDavid E. O'Brien	The PADLOCK_RNG and RDRAND_RNG kernel options are now devices.
43246be218dSDavid E. O'Brien	Thus "device padlock_rng" and "device rdrand_rng" should be
43346be218dSDavid E. O'Brien	used instead of "options PADLOCK_RNG" & "options RDRAND_RNG".
43446be218dSDavid E. O'Brien
4350ff204bbSPeter Wemm20130813:
4360ff204bbSPeter Wemm	WITH_ICONV has been split into two feature sets.  WITH_ICONV now
4370ff204bbSPeter Wemm	enables just the iconv* functionality and is now on by default.
4380ff204bbSPeter Wemm	WITH_LIBICONV_COMPAT enables the libiconv api and link time
4390ff204bbSPeter Wemm	compatability.  Set WITHOUT_ICONV to build the old way.
4400dc59c0fSPeter Wemm	If you have been using WITH_ICONV before, you will very likely
4410dc59c0fSPeter Wemm	need to turn on WITH_LIBICONV_COMPAT.
4420ff204bbSPeter Wemm
443ccc88f7bSHiroki Sato20130806:
444c319ea15SAndriy Gapon	INVARIANTS option now enables DEBUG for code with OpenSolaris and
445c319ea15SAndriy Gapon	Illumos origin, including ZFS.  If you have INVARIANTS in your
446c319ea15SAndriy Gapon	kernel configuration, then there is no need to set DEBUG or ZFS_DEBUG
447c319ea15SAndriy Gapon	explicitly.
448c319ea15SAndriy Gapon	DEBUG used to enable witness(9) tracking of OpenSolaris (mostly ZFS)
449c319ea15SAndriy Gapon	locks if WITNESS option was set.  Because that generated a lot of
450c319ea15SAndriy Gapon	witness(9) reports and all of them were believed to be false
451c319ea15SAndriy Gapon	positives, this is no longer done.  New option OPENSOLARIS_WITNESS
452c319ea15SAndriy Gapon	can be used to achieve the previous behavior.
453c319ea15SAndriy Gapon
454c319ea15SAndriy Gapon20130806:
455ccc88f7bSHiroki Sato	Timer values in IPv6 data structures now use time_uptime instead
456ccc88f7bSHiroki Sato	of time_second.  Although this is not a user-visible functional
457ccc88f7bSHiroki Sato	change, userland utilities which directly use them---ndp(8),
458ccc88f7bSHiroki Sato	rtadvd(8), and rtsold(8) in the base system---need to be updated
459ccc88f7bSHiroki Sato	to r253970 or later.
460ccc88f7bSHiroki Sato
4619d6d5a71SJilles Tjoelker20130802:
4629d6d5a71SJilles Tjoelker	find -delete can now delete the pathnames given as arguments,
4639d6d5a71SJilles Tjoelker	instead of only files found below them or if the pathname did
4649d6d5a71SJilles Tjoelker	not contain any slashes. Formerly, the following error message
4659d6d5a71SJilles Tjoelker	would result:
4669d6d5a71SJilles Tjoelker
4679d6d5a71SJilles Tjoelker	find: -delete: <path>: relative path potentially not safe
4689d6d5a71SJilles Tjoelker
4699d6d5a71SJilles Tjoelker	Deleting the pathnames given as arguments can be prevented
4709d6d5a71SJilles Tjoelker	without error messages using -mindepth 1 or by changing
4719d6d5a71SJilles Tjoelker	directory and passing "." as argument to find. This works in the
4729d6d5a71SJilles Tjoelker	old as well as the new version of find.
4739d6d5a71SJilles Tjoelker
474663dea3dSAndriy Gapon20130726:
475663dea3dSAndriy Gapon	Behavior of devfs rules path matching has been changed.
476663dea3dSAndriy Gapon	Pattern is now always matched against fully qualified devfs
477663dea3dSAndriy Gapon	path and slash characters must be explicitly matched by
478663dea3dSAndriy Gapon	slashes in pattern (FNM_PATHNAME). Rulesets involving devfs
479663dea3dSAndriy Gapon	subdirectories must be reviewed.
480663dea3dSAndriy Gapon
48146e95f64SAndrew Turner20130716:
48246e95f64SAndrew Turner	The default ARM ABI has changed to the ARM EABI. The old ABI is
48346e95f64SAndrew Turner	incompatible with the ARM EABI and all programs and modules will
48446e95f64SAndrew Turner	need to be rebuilt to work with a new kernel.
48546e95f64SAndrew Turner
48646e95f64SAndrew Turner	To keep using the old ABI ensure the WITHOUT_ARM_EABI knob is set.
48746e95f64SAndrew Turner
48846e95f64SAndrew Turner	NOTE: Support for the old ABI will be removed in the future and
48946e95f64SAndrew Turner	users are advised to upgrade.
49046e95f64SAndrew Turner
491b40e2b6dSAndrey V. Elsukov20130709:
4929b953f2cSBaptiste Daroussin	pkg_install has been disconnected from the build if you really need it
4939b953f2cSBaptiste Daroussin	you should add WITH_PKGTOOLS in your src.conf(5).
4949b953f2cSBaptiste Daroussin
4959b953f2cSBaptiste Daroussin20130709:
496b40e2b6dSAndrey V. Elsukov	Most of network statistics structures were changed to be able
497b40e2b6dSAndrey V. Elsukov	keep 64-bits counters. Thus all tools, that work with networking
498aa011413SRui Paulo	statistics, must be rebuilt (netstat(1), bsnmpd(1), etc.)
499b40e2b6dSAndrey V. Elsukov
50003630b54SSimon J. Gerraty20130629:
50103630b54SSimon J. Gerraty	Fix targets that run multiple make's to use && rather than ;
50203630b54SSimon J. Gerraty	so that subsequent steps depend on success of previous.
50303630b54SSimon J. Gerraty
50403630b54SSimon J. Gerraty	NOTE: if building 'universe' with -j* on stable/8 or stable/9
50503630b54SSimon J. Gerraty	it would be better to start the build using bmake, to avoid
50603630b54SSimon J. Gerraty	overloading the machine.
50703630b54SSimon J. Gerraty
5085b3e0257SDag-Erling Smørgrav20130618:
5095b3e0257SDag-Erling Smørgrav	Fix a bug that allowed a tracing process (e.g. gdb) to write
5105b3e0257SDag-Erling Smørgrav	to a memory-mapped file in the traced process's address space
5115b3e0257SDag-Erling Smørgrav	even if neither the traced process nor the tracing process had
5125b3e0257SDag-Erling Smørgrav	write access to that file.
5135b3e0257SDag-Erling Smørgrav
5141cbff2a9SEitan Adler20130615:
5151cbff2a9SEitan Adler	CVS has been removed from the base system.  An exact copy
5161cbff2a9SEitan Adler	of the code is available from the devel/cvs port.
5171cbff2a9SEitan Adler
518ba10b444SSimon J. Gerraty20130613:
519ba10b444SSimon J. Gerraty	Some people report the following error after the switch to bmake:
520ba10b444SSimon J. Gerraty
521ba10b444SSimon J. Gerraty		make: illegal option -- J
522ba10b444SSimon J. Gerraty		usage: make [-BPSXeiknpqrstv] [-C directory] [-D variable]
523ba10b444SSimon J. Gerraty			...
524ba10b444SSimon J. Gerraty		*** [buildworld] Error code 2
525ba10b444SSimon J. Gerraty
526ba10b444SSimon J. Gerraty	this likely due to an old instance of make in
527ba10b444SSimon J. Gerraty	${MAKEPATH} (${MAKEOBJDIRPREFIX}${.CURDIR}/make.${MACHINE})
528ba10b444SSimon J. Gerraty	which src/Makefile will use that blindly, if it exists, so if
529ba10b444SSimon J. Gerraty	you see the above error:
530ba10b444SSimon J. Gerraty
531ba10b444SSimon J. Gerraty		rm -rf `make -V MAKEPATH`
532ba10b444SSimon J. Gerraty
533ba10b444SSimon J. Gerraty	should resolve it.
534ba10b444SSimon J. Gerraty
535ff8d4375SSimon J. Gerraty20130516:
536ff8d4375SSimon J. Gerraty	Use bmake by default.
537ff8d4375SSimon J. Gerraty	Whereas before one could choose to build with bmake via
538ff8d4375SSimon J. Gerraty	-DWITH_BMAKE one must now use -DWITHOUT_BMAKE to use the old
539ff8d4375SSimon J. Gerraty	make. The goal is to remove these knobs for 10-RELEASE.
540ff8d4375SSimon J. Gerraty
541ff8d4375SSimon J. Gerraty	It is worth noting that bmake (like gmake) treats the command
542ff8d4375SSimon J. Gerraty	line as the unit of failure, rather than statements within the
543ff8d4375SSimon J. Gerraty	command line.  Thus '(cd some/where && dosomething)' is safer
544ff8d4375SSimon J. Gerraty	than 'cd some/where; dosomething'. The '()' allows consistent
545ff8d4375SSimon J. Gerraty	behavior in parallel build.
546ff8d4375SSimon J. Gerraty
54732164d53SDag-Erling Smørgrav20130429:
54832164d53SDag-Erling Smørgrav        Fix a bug that allows NFS clients to issue READDIR on files.
54932164d53SDag-Erling Smørgrav
550562a9d58SSteven Hartland20130426:
551850163e4SEitan Adler	The WITHOUT_IDEA option has been removed because
552850163e4SEitan Adler	the IDEA patent expired.
553850163e4SEitan Adler
554850163e4SEitan Adler20130426:
555562a9d58SSteven Hartland	The sysctl which controls TRIM support under ZFS has been renamed
556562a9d58SSteven Hartland	from vfs.zfs.trim_disable -> vfs.zfs.trim.enabled and has been
557562a9d58SSteven Hartland	enabled by default.
558562a9d58SSteven Hartland
55920e0cc0aSBrooks Davis20130425:
56020e0cc0aSBrooks Davis	The mergemaster command now uses the default MAKEOBJDIRPREFIX
56120e0cc0aSBrooks Davis	rather than creating it's own in the temporary directory in
56220e0cc0aSBrooks Davis	order allow access to bootstrapped versions of tools such as
56320e0cc0aSBrooks Davis	install and mtree.  When upgrading from version of FreeBSD where
56420e0cc0aSBrooks Davis	the install command does not support -l, you will need to
56520e0cc0aSBrooks Davis	install a new mergemaster command if mergemaster -p is required.
56620e0cc0aSBrooks Davis	This can be accomplished with the command (cd src/usr.sbin/mergemaster
56720e0cc0aSBrooks Davis	&& make install).
56820e0cc0aSBrooks Davis
5699a95a7caSAlexander Motin20130404:
5709a95a7caSAlexander Motin	Legacy ATA stack, disabled and replaced by new CAM-based one since
5719a95a7caSAlexander Motin	FreeBSD 9.0, completely removed from the sources.  Kernel modules
5729a95a7caSAlexander Motin	atadisk and atapi*, user-level tools atacontrol and burncd are
5739a95a7caSAlexander Motin	removed.  Kernel option `options ATA_CAM` is now permanently enabled
5749a95a7caSAlexander Motin	and removed.
5759a95a7caSAlexander Motin
5765ad7e649SJilles Tjoelker20130319:
5775ad7e649SJilles Tjoelker	SOCK_CLOEXEC and SOCK_NONBLOCK flags have been added to socket(2)
5785ad7e649SJilles Tjoelker	and socketpair(2). Software, in particular Kerberos, may
5795ad7e649SJilles Tjoelker	automatically detect and use these during building. The resulting
5805ad7e649SJilles Tjoelker	binaries will not work on older kernels.
5815ad7e649SJilles Tjoelker
582105421ffSMarius Strobl20130308:
583105421ffSMarius Strobl	CTL_DISABLE has also been added to the sparc64 GENERIC (for further
584105421ffSMarius Strobl	information, see the respective 20130304 entry).
585105421ffSMarius Strobl
5863a45b478SKenneth D. Merry20130304:
58723d44ab5SDavide Italiano	Recent commits to callout(9) changed the size of struct callout,
58823d44ab5SDavide Italiano	so the KBI is probably heavily disturbed. Also, some functions
58923d44ab5SDavide Italiano	in callout(9)/sleep(9)/sleepqueue(9)/condvar(9) KPIs were replaced
59023d44ab5SDavide Italiano	by macros. Every kernel module using it won't load, so rebuild
59123d44ab5SDavide Italiano	is requested.
59223d44ab5SDavide Italiano
5933a45b478SKenneth D. Merry	The ctl device has been re-enabled in GENERIC for i386 and amd64,
5943a45b478SKenneth D. Merry	but does not initialize by default (because of the new CTL_DISABLE
5953a45b478SKenneth D. Merry	option) to save memory.  To re-enable it, remove the CTL_DISABLE
5963a45b478SKenneth D. Merry	option from the kernel config file or set kern.cam.ctl.disable=0
5973a45b478SKenneth D. Merry	in /boot/loader.conf.
5983a45b478SKenneth D. Merry
599fe138cc2SAdrian Chadd20130301:
600fe138cc2SAdrian Chadd	The ctl device has been disabled in GENERIC for i386 and amd64.
601fe138cc2SAdrian Chadd	This was done due to the extra memory being allocated at system
602fe138cc2SAdrian Chadd	initialisation time by the ctl driver which was only used if
603fe138cc2SAdrian Chadd	a CAM target device was created.  This makes a FreeBSD system
604fe138cc2SAdrian Chadd	unusable on 128MB or less of RAM.
605fe138cc2SAdrian Chadd
60620a011d5SXin LI20130208:
60720a011d5SXin LI	A new compression method (lz4) has been merged to -HEAD.  Please
60820a011d5SXin LI	refer to zpool-features(7) for more information.
60920a011d5SXin LI
61020a011d5SXin LI	Please refer to the "ZFS notes" section of this file for information
61120a011d5SXin LI	on upgrading boot ZFS pools.
61220a011d5SXin LI
6132dd076b8SGabor Kovesdan20130129:
6142dd076b8SGabor Kovesdan	A BSD-licensed patch(1) variant has been added and is installed
6152dd076b8SGabor Kovesdan	as bsdpatch, being the GNU version the default patch.
6162dd076b8SGabor Kovesdan	To inverse the logic and use the BSD-licensed one as default,
6172dd076b8SGabor Kovesdan	while having the GNU version installed as gnupatch, rebuild
6182d329593SGabor Kovesdan	and install world with the WITH_BSD_PATCH knob set.
6192dd076b8SGabor Kovesdan
620fe06cae7SBrooks Davis20130121:
621fe06cae7SBrooks Davis	Due to the use of the new -l option to install(1) during build
622fe06cae7SBrooks Davis	and install, you must take care not to directly set the INSTALL
623fe06cae7SBrooks Davis	make variable in your /etc/make.conf, /etc/src.conf, or on the
6248c5836c3SEitan Adler	command line.  If you wish to use the -C flag for all installs
625fe06cae7SBrooks Davis	you may be able to add INSTALL+=-C to /etc/make.conf or
626fe06cae7SBrooks Davis	/etc/src.conf.
627fe06cae7SBrooks Davis
628f2b19f9eSBrooks Davis20130118:
629f2b19f9eSBrooks Davis	The install(1) option -M has changed meaning and now takes an
630f2b19f9eSBrooks Davis	argument that is a file or path to append logs to.  In the
631f2b19f9eSBrooks Davis	unlikely event that -M was the last option on the command line
632f2b19f9eSBrooks Davis	and the command line contained at least two files and a target
633f2b19f9eSBrooks Davis	directory the first file will have logs appended to it.  The -M
6344cf5de80SGlen Barber	option served little practical purpose in the last decade so its
6354cf5de80SGlen Barber	use is expected to be extremely rare.
636f2b19f9eSBrooks Davis
6373fea4e6bSAndriy Gapon20121223:
6383fea4e6bSAndriy Gapon	After switching to Clang as the default compiler some users of ZFS
6393fea4e6bSAndriy Gapon	on i386 systems started to experience stack overflow kernel panics.
6403fea4e6bSAndriy Gapon	Please consider using 'options KSTACK_PAGES=4' in such configurations.
6413fea4e6bSAndriy Gapon
642efec959cSJaakko Heinonen20121222:
643efec959cSJaakko Heinonen	GEOM_LABEL now mangles label names read from file system metadata.
644efec959cSJaakko Heinonen	Mangling affect labels containing spaces, non-printable characters,
645efec959cSJaakko Heinonen	'%' or '"'. Device names in /etc/fstab and other places may need to
646efec959cSJaakko Heinonen	be updated.
647efec959cSJaakko Heinonen
64811631ad0SPawel Jakub Dawidek20121217:
64911631ad0SPawel Jakub Dawidek	By default, only the 10 most recent kernel dumps will be saved.  To
65011631ad0SPawel Jakub Dawidek	restore the previous behaviour (no limit on the number of kernel dumps
65111631ad0SPawel Jakub Dawidek	stored in the dump directory) add the following line to /etc/rc.conf:
65211631ad0SPawel Jakub Dawidek
65311631ad0SPawel Jakub Dawidek		savecore_flags=""
65411631ad0SPawel Jakub Dawidek
655e0fb6dc3SRobert Watson20121201:
656e0fb6dc3SRobert Watson	With the addition of auditdistd(8), a new auditdistd user is now
6570312d1caSGlen Barber	required during installworld.  "mergemaster -p" can be used to
6580312d1caSGlen Barber	add the user prior to installworld, as documented in the handbook.
659e0fb6dc3SRobert Watson
660b91dc775SHiroki Sato20121117:
661b91dc775SHiroki Sato	The sin6_scope_id member variable in struct sockaddr_in6 is now
662b91dc775SHiroki Sato	filled by the kernel before passing the structure to the userland via
663b91dc775SHiroki Sato	sysctl or routing socket.  This means the KAME-specific embedded scope
664b91dc775SHiroki Sato	id in sin6_addr.s6_addr[2] is always cleared in userland application.
665b91dc775SHiroki Sato	This behavior can be controlled by net.inet6.ip6.deembed_scopeid.
666b91dc775SHiroki Sato	__FreeBSD_version is bumped to 1000025.
667b91dc775SHiroki Sato
6685b6478b0SBrooks Davis20121105:
6695b6478b0SBrooks Davis	On i386 and amd64 systems WITH_CLANG_IS_CC is now the default.
6705b6478b0SBrooks Davis	This means that the world and kernel will be compiled with clang
6715b6478b0SBrooks Davis	and that clang will be installed as /usr/bin/cc, /usr/bin/c++,
6725b6478b0SBrooks Davis	and /usr/bin/cpp.  To disable this behavior and revert to building
673da0e842aSWarner Losh	with gcc, compile with WITHOUT_CLANG_IS_CC. Really old versions
674da0e842aSWarner Losh	of current may need to bootstrap WITHOUT_CLANG first if the clang
675da0e842aSWarner Losh	build fails (its compatibility window doesn't extend to the 9 stable
676da0e842aSWarner Losh	branch point).
6775b6478b0SBrooks Davis
678ffdbf9daSAndrey V. Elsukov20121102:
679a971b547SAndrey V. Elsukov	The IPFIREWALL_FORWARD kernel option has been removed. Its
680ffdbf9daSAndrey V. Elsukov	functionality now turned on by default.
681a971b547SAndrey V. Elsukov
6828f134647SGleb Smirnoff20121023:
683cb69178dSAndre Oppermann	The ZERO_COPY_SOCKET kernel option has been removed and
684cb69178dSAndre Oppermann	split into SOCKET_SEND_COW and SOCKET_RECV_PFLIP.
685cb69178dSAndre Oppermann	NB: SOCKET_SEND_COW uses the VM page based copy-on-write
686cb69178dSAndre Oppermann	mechanism which is not safe and may result in kernel crashes.
687cb69178dSAndre Oppermann	NB: The SOCKET_RECV_PFLIP mechanism is useless as no current
688cb69178dSAndre Oppermann	driver supports disposeable external page sized mbuf storage.
689cb69178dSAndre Oppermann	Proper replacements for both zero-copy mechanisms are under
690cb69178dSAndre Oppermann	consideration and will eventually lead to complete removal
691cb69178dSAndre Oppermann	of the two kernel options.
692cb69178dSAndre Oppermann
693cb69178dSAndre Oppermann20121023:
6948f134647SGleb Smirnoff	The IPv4 network stack has been converted to network byte
6958f134647SGleb Smirnoff	order. The following modules need to be recompiled together
6968f134647SGleb Smirnoff	with kernel: carp(4), divert(4), gif(4), siftr(4), gre(4),
6978f134647SGleb Smirnoff	pf(4), ipfw(4), ng_ipfw(4), stf(4).
6988f134647SGleb Smirnoff
6998859ec84SKonstantin Belousov20121022:
7008859ec84SKonstantin Belousov	Support for non-MPSAFE filesystems was removed from VFS. The
7018859ec84SKonstantin Belousov	VFS_VERSION was bumped, all filesystem modules shall be
7028859ec84SKonstantin Belousov	recompiled.
7038859ec84SKonstantin Belousov
704e053ead0SAttilio Rao20121018:
705e053ead0SAttilio Rao	All the non-MPSAFE filesystems have been disconnected from
706e053ead0SAttilio Rao	the build. The full list includes: codafs, hpfs, ntfs, nwfs,
707e053ead0SAttilio Rao	portalfs, smbfs, xfs.
708e053ead0SAttilio Rao
70942a58907SGleb Smirnoff20121016:
71042a58907SGleb Smirnoff	The interface cloning API and ABI has changed. The following
71142a58907SGleb Smirnoff	modules need to be recompiled together with kernel:
71242a58907SGleb Smirnoff	ipfw(4), pfsync(4), pflog(4), usb(4), wlan(4), stf(4),
71342a58907SGleb Smirnoff	vlan(4), disc(4), edsc(4), if_bridge(4), gif(4), tap(4),
71442a58907SGleb Smirnoff	faith(4), epair(4), enc(4), tun(4), if_lagg(4), gre(4).
71542a58907SGleb Smirnoff
716d6b3aaf8SOleksandr Tymoshenko20121015:
717d6b3aaf8SOleksandr Tymoshenko	The sdhci driver was split in two parts: sdhci (generic SD Host
718d6b3aaf8SOleksandr Tymoshenko	Controller logic) and sdhci_pci (actual hardware driver).
719d6b3aaf8SOleksandr Tymoshenko	No kernel config modifications are required, but if you
720d6b3aaf8SOleksandr Tymoshenko	load sdhc as a module you must switch to sdhci_pci instead.
721d6b3aaf8SOleksandr Tymoshenko
7225fe58019SAttilio Rao20121014:
7235fe58019SAttilio Rao	Import the FUSE kernel and userland support into base system.
7245fe58019SAttilio Rao
725d38ae94bSGabor Kovesdan20121013:
726d38ae94bSGabor Kovesdan	The GNU sort(1) program has been removed since the BSD-licensed
727d38ae94bSGabor Kovesdan	sort(1) has been the default for quite some time and no serious
728d38ae94bSGabor Kovesdan	problems have been reported.  The corresponding WITH_GNU_SORT
72958b6d9a2SGabor Kovesdan	knob has also gone.
730d38ae94bSGabor Kovesdan
73121d172a3SGleb Smirnoff20121006:
73221d172a3SGleb Smirnoff	The pfil(9) API/ABI for AF_INET family has been changed. Packet
73321d172a3SGleb Smirnoff	filtering modules: pf(4), ipfw(4), ipfilter(4) need to be recompiled
73421d172a3SGleb Smirnoff	with new kernel.
73521d172a3SGleb Smirnoff
7367b81c83cSAdrian Chadd20121001:
7377b81c83cSAdrian Chadd	The net80211(4) ABI has been changed to allow for improved driver
7387b81c83cSAdrian Chadd	PS-POLL and power-save support.  All wireless drivers need to be
7397b81c83cSAdrian Chadd	recompiled to work with the new kernel.
7407b81c83cSAdrian Chadd
741d65043bcSKonstantin Belousov20120913:
742d65043bcSKonstantin Belousov	The random(4) support for the VIA hardware random number
743d65043bcSKonstantin Belousov	generator (`PADLOCK') is no longer enabled unconditionally.
74446be218dSDavid E. O'Brien	Add the padlock_rng device in the custom kernel config if
745d65043bcSKonstantin Belousov	needed.  The GENERIC kernels on i386 and amd64 do include the
74646be218dSDavid E. O'Brien	device, so the change only affects the custom kernel
747d65043bcSKonstantin Belousov	configurations.
748d65043bcSKonstantin Belousov
749d6d3f01eSGleb Smirnoff20120908:
750d6d3f01eSGleb Smirnoff	The pf(4) packet filter ABI has been changed. pfctl(8) and
751d6d3f01eSGleb Smirnoff	snmp_pf module need to be recompiled to work with new kernel.
752d6d3f01eSGleb Smirnoff
7536e767defSMartin Matuska20120828:
7546e767defSMartin Matuska	A new ZFS feature flag "com.delphix:empty_bpobj" has been merged
7556e767defSMartin Matuska	to -HEAD. Pools that have empty_bpobj in active state can not be
7566e767defSMartin Matuska	imported read-write with ZFS implementations that do not support
7576e767defSMartin Matuska	this feature. For more information read the zpool-features(5)
7586e767defSMartin Matuska	manual page.
7596e767defSMartin Matuska
760614e3098SMarius Strobl20120727:
761614e3098SMarius Strobl	The sparc64 ZFS loader has been changed to no longer try to auto-
762614e3098SMarius Strobl	detect ZFS providers based on diskN aliases but now requires these
763614e3098SMarius Strobl	to be explicitly listed in the OFW boot-device environment variable.
764614e3098SMarius Strobl
7657e003b0aSChristian Brueffer20120712:
7661f13597dSJung-uk Kim	The OpenSSL has been upgraded to 1.0.1c.  Any binaries requiring
7671f13597dSJung-uk Kim	libcrypto.so.6 or libssl.so.6 must be recompiled.  Also, there are
7681f13597dSJung-uk Kim	configuration changes.  Make sure to merge /etc/ssl/openssl.cnf.
7691f13597dSJung-uk Kim
7701f13597dSJung-uk Kim20120712:
7717e003b0aSChristian Brueffer	The following sysctls and tunables have been renamed for consistency
7727e003b0aSChristian Brueffer	with other variables:
7737e003b0aSChristian Brueffer	  kern.cam.da.da_send_ordered   -> kern.cam.da.send_ordered
7747e003b0aSChristian Brueffer	  kern.cam.ada.ada_send_ordered -> kern.cam.ada.send_ordered
7757e003b0aSChristian Brueffer
776d22c63acSGabor Kovesdan20120628:
777d22c63acSGabor Kovesdan	The sort utility has been replaced with BSD sort.  For now, GNU sort
778d22c63acSGabor Kovesdan	is also available as "gnusort" or the default can be set back to
779d22c63acSGabor Kovesdan	GNU sort by setting WITH_GNU_SORT.  In this case, BSD sort will be
780d22c63acSGabor Kovesdan	installed as "bsdsort".
781d22c63acSGabor Kovesdan
7822d9cf57eSMartin Matuska20120611:
7832d9cf57eSMartin Matuska	A new version of ZFS (pool version 5000) has been merged to -HEAD.
7842d9cf57eSMartin Matuska	Starting with this version the old system of ZFS pool versioning
7852d9cf57eSMartin Matuska	is superseded by "feature flags". This concept enables forward
7862d9cf57eSMartin Matuska	compatibility against certain future changes in functionality of ZFS
7872d9cf57eSMartin Matuska	pools. The first read-only compatible "feature flag" for ZFS pools
7882d9cf57eSMartin Matuska	is named "com.delphix:async_destroy". For more information
7892d9cf57eSMartin Matuska	read the new zpool-features(5) manual page.
7902d9cf57eSMartin Matuska	Please refer to the "ZFS notes" section of this file for information
7912d9cf57eSMartin Matuska	on upgrading boot ZFS pools.
7922d9cf57eSMartin Matuska
793d1675e38SJason Evans20120417:
794d1675e38SJason Evans	The malloc(3) implementation embedded in libc now uses sources imported
795d1675e38SJason Evans	as contrib/jemalloc.  The most disruptive API change is to
796d1675e38SJason Evans	/etc/malloc.conf.  If your system has an old-style /etc/malloc.conf,
797d1675e38SJason Evans	delete it prior to installworld, and optionally re-create it using the
798d1675e38SJason Evans	new format after rebooting.  See malloc.conf(5) for details
799d1675e38SJason Evans	(specifically the TUNING section and the "opt.*" entries in the MALLCTL
800d1675e38SJason Evans	NAMESPACE section).
801d1675e38SJason Evans
80284db023eSJuli Mallett20120328:
80384db023eSJuli Mallett	Big-endian MIPS TARGET_ARCH values no longer end in "eb".  mips64eb
80484db023eSJuli Mallett	is now spelled mips64.  mipsn32eb is now spelled mipsn32.  mipseb is
80584db023eSJuli Mallett	now spelled mips.  This is to aid compatibility with third-party
80684db023eSJuli Mallett	software that expects this naming scheme in uname(3).  Little-endian
807474dbfb7SWarner Losh	settings are unchanged. If you are updating a big-endian mips64 machine
808474dbfb7SWarner Losh	from before this change, you may need to set MACHINE_ARCH=mips64 in
809474dbfb7SWarner Losh	your environment before the new build system will recognize your machine.
81084db023eSJuli Mallett
8119c170fd1SAttilio Rao20120306:
8129c170fd1SAttilio Rao	Disable by default the option VFS_ALLOW_NONMPSAFE for all supported
8139c170fd1SAttilio Rao	platforms.
8149c170fd1SAttilio Rao
815c7e41c8bSMikolaj Golub20120229:
816c7e41c8bSMikolaj Golub	Now unix domain sockets behave "as expected" on	nullfs(5). Previously
817c7e41c8bSMikolaj Golub	nullfs(5) did not pass through all behaviours to the underlying layer,
818c7e41c8bSMikolaj Golub	as a result if we bound to a socket on the lower layer we could connect
819c7e41c8bSMikolaj Golub	only to the lower path; if we bound to the upper layer we could connect
820c7e41c8bSMikolaj Golub	only to	the upper path. The new behavior is one can connect to both the
821c7e41c8bSMikolaj Golub	lower and the upper paths regardless what layer path one binds to.
822c7e41c8bSMikolaj Golub
823ca1672daSBjoern A. Zeeb20120211:
824ca1672daSBjoern A. Zeeb	The getifaddrs upgrade path broken with 20111215 has been restored.
825ca1672daSBjoern A. Zeeb	If you have upgraded in between 20111215 and 20120209 you need to
826ca1672daSBjoern A. Zeeb	recompile libc again with your kernel.  You still need to recompile
827ca1672daSBjoern A. Zeeb	world to be able to configure CARP but this restriction already
828ca1672daSBjoern A. Zeeb	comes from 20111215.
829ca1672daSBjoern A. Zeeb
830e0e0f25bSDoug Barton20120114:
831e0e0f25bSDoug Barton	The set_rcvar() function has been removed from /etc/rc.subr.  All
832e0e0f25bSDoug Barton	base and ports rc.d scripts have been updated, so if you have a
833e0e0f25bSDoug Barton	port installed with a script in /usr/local/etc/rc.d you can either
834e0e0f25bSDoug Barton	hand-edit the rcvar= line, or reinstall the port.
835e0e0f25bSDoug Barton
8365d482324SDoug Barton	An easy way to handle the mass-update of /etc/rc.d:
8375d482324SDoug Barton	rm /etc/rc.d/* && mergemaster -i
8385d482324SDoug Barton
83990d82653SAndriy Gapon20120109:
84090d82653SAndriy Gapon	panic(9) now stops other CPUs in the SMP systems, disables interrupts
84190d82653SAndriy Gapon	on the current CPU and prevents other threads from running.
84290d82653SAndriy Gapon	This behavior can be reverted using the kern.stop_scheduler_on_panic
84390d82653SAndriy Gapon	tunable/sysctl.
84490d82653SAndriy Gapon	The new behavior can be incompatible with kern.sync_on_panic.
84590d82653SAndriy Gapon
84608b68b0eSGleb Smirnoff20111215:
84708b68b0eSGleb Smirnoff	The carp(4) facility has been changed significantly. Configuration
84808b68b0eSGleb Smirnoff	of the CARP protocol via ifconfig(8) has changed, as well as format
84908b68b0eSGleb Smirnoff	of CARP events submitted to devd(8) has changed. See manual pages
85008b68b0eSGleb Smirnoff	for more information. The arpbalance feature of carp(4) is currently
85108b68b0eSGleb Smirnoff	not supported anymore.
85208b68b0eSGleb Smirnoff
85308b68b0eSGleb Smirnoff	Size of struct in_aliasreq, struct in6_aliasreq has changed. User
85408b68b0eSGleb Smirnoff	utilities using SIOCAIFADDR, SIOCAIFADDR_IN6, e.g. ifconfig(8),
85508b68b0eSGleb Smirnoff	need to be recompiled.
85608b68b0eSGleb Smirnoff
857d5d131eeSJaakko Heinonen20111122:
858d5d131eeSJaakko Heinonen	The acpi_wmi(4) status device /dev/wmistat has been renamed to
859d5d131eeSJaakko Heinonen	/dev/wmistat0.
860d5d131eeSJaakko Heinonen
861ed1f6dc2SAttilio Rao20111108:
862ed1f6dc2SAttilio Rao	The option VFS_ALLOW_NONMPSAFE option has been added in order to
863ed1f6dc2SAttilio Rao	explicitely support non-MPSAFE filesystems.
864ed1f6dc2SAttilio Rao	It is on by default for all supported platform at this present
865ed1f6dc2SAttilio Rao	time.
866ed1f6dc2SAttilio Rao
867a9ab459bSMarius Strobl20111101:
868a9ab459bSMarius Strobl	The broken amd(4) driver has been replaced with esp(4) in the amd64,
869a9ab459bSMarius Strobl	i386 and pc98 GENERIC kernel configuration files.
870a9ab459bSMarius Strobl
871e59e2d8eSNathan Whitehorn20110930:
872e59e2d8eSNathan Whitehorn	sysinstall has been removed
873e59e2d8eSNathan Whitehorn
8748a3b6cc1SKen Smith20110923:
8758a3b6cc1SKen Smith	The stable/9 branch created in subversion.  This corresponds to the
8768a3b6cc1SKen Smith	RELENG_9 branch in CVS.
8778a3b6cc1SKen Smith
878dc0dbf5cSWarner LoshCOMMON ITEMS:
879dc0dbf5cSWarner Losh
880a24eff53SWarner Losh	General Notes
881a24eff53SWarner Losh	-------------
882456b5dd8SWarner Losh	Avoid using make -j when upgrading.  While generally safe, there are
883456b5dd8SWarner Losh	sometimes problems using -j to upgrade.  If your upgrade fails with
8841733d35cSRuslan Ermilov	-j, please try again without -j.  From time to time in the past there
885456b5dd8SWarner Losh	have been problems using -j with buildworld and/or installworld.  This
886456b5dd8SWarner Losh	is especially true when upgrading between "distant" versions (eg one
887456b5dd8SWarner Losh	that cross a major release boundary or several minor releases, or when
888456b5dd8SWarner Losh	several months have passed on the -current branch).
889a24eff53SWarner Losh
8905780f3baSWarner Losh	Sometimes, obscure build problems are the result of environment
8915780f3baSWarner Losh	poisoning.  This can happen because the make utility reads its
892456b5dd8SWarner Losh	environment when searching for values for global variables.  To run
893456b5dd8SWarner Losh	your build attempts in an "environmental clean room", prefix all make
894456b5dd8SWarner Losh	commands with 'env -i '.  See the env(1) manual page for more details.
8955780f3baSWarner Losh
896456b5dd8SWarner Losh	When upgrading from one major version to another it is generally best
897456b5dd8SWarner Losh	to upgrade to the latest code in the currently installed branch first,
898456b5dd8SWarner Losh	then do an upgrade to the new branch. This is the best-tested upgrade
899456b5dd8SWarner Losh	path, and has the highest probability of being successful.  Please try
900456b5dd8SWarner Losh	this approach before reporting problems with a major version upgrade.
901081ff8acSDoug Barton
9026eeab389SWarner Losh	When upgrading a live system, having a root shell around before
903da0e842aSWarner Losh	installing anything can help undo problems. Not having a root shell
904da0e842aSWarner Losh	around can lead to problems if pam has changed too much from your
905da0e842aSWarner Losh	starting point to allow continued authentication after the upgrade.
906da0e842aSWarner Losh
9078fc25799SMartin Matuska	ZFS notes
9088fc25799SMartin Matuska	---------
9098fc25799SMartin Matuska	When upgrading the boot ZFS pool to a new version, always follow
9108fc25799SMartin Matuska	these two steps:
9118fc25799SMartin Matuska
9128fc25799SMartin Matuska	1.) recompile and reinstall the ZFS boot loader and boot block
9138fc25799SMartin Matuska	(this is part of "make buildworld" and "make installworld")
9148fc25799SMartin Matuska
9158fc25799SMartin Matuska	2.) update the ZFS boot block on your boot drive
9168fc25799SMartin Matuska
9178fc25799SMartin Matuska	The following example updates the ZFS boot block on the first
91872ce7f29SAlexander Leidinger	partition (freebsd-boot) of a GPT partitioned drive ada0:
91972ce7f29SAlexander Leidinger	"gpart bootcode -p /boot/gptzfsboot -i 1 ada0"
9208fc25799SMartin Matuska
9218fc25799SMartin Matuska	Non-boot pools do not need these updates.
9228fc25799SMartin Matuska
923dc0dbf5cSWarner Losh	To build a kernel
924dc0dbf5cSWarner Losh	-----------------
925ba01eb20SWarner Losh	If you are updating from a prior version of FreeBSD (even one just
9261cf0ef11SDavid E. O'Brien	a few days old), you should follow this procedure.  It is the most
9271cf0ef11SDavid E. O'Brien	failsafe as it uses a /usr/obj tree with a fresh mini-buildworld,
9281cf0ef11SDavid E. O'Brien
9291cf0ef11SDavid E. O'Brien	make kernel-toolchain
930282e0f01SRuslan Ermilov	make -DALWAYS_CHECK_MAKE buildkernel KERNCONF=YOUR_KERNEL_HERE
931282e0f01SRuslan Ermilov	make -DALWAYS_CHECK_MAKE installkernel KERNCONF=YOUR_KERNEL_HERE
932dc0dbf5cSWarner Losh
9332e937dd6SAlexander Leidinger	To test a kernel once
9342e937dd6SAlexander Leidinger	---------------------
9352e937dd6SAlexander Leidinger	If you just want to boot a kernel once (because you are not sure
9362e937dd6SAlexander Leidinger	if it works, or if you want to boot a known bad kernel to provide
9372e937dd6SAlexander Leidinger	debugging information) run
9382e937dd6SAlexander Leidinger	make installkernel KERNCONF=YOUR_KERNEL_HERE KODIR=/boot/testkernel
9392e937dd6SAlexander Leidinger	nextboot -k testkernel
9402e937dd6SAlexander Leidinger
941ba01eb20SWarner Losh	To just build a kernel when you know that it won't mess you up
942ba01eb20SWarner Losh	--------------------------------------------------------------
943456b5dd8SWarner Losh	This assumes you are already running a CURRENT system.  Replace
9440fbd2da9SKen Smith	${arch} with the architecture of your machine (e.g. "i386",
945456b5dd8SWarner Losh	"arm", "amd64", "ia64", "pc98", "sparc64", "powerpc", "mips", etc).
9460fbd2da9SKen Smith
9470fbd2da9SKen Smith	cd src/sys/${arch}/conf
94847d0d01fSWarner Losh	config KERNEL_NAME_HERE
9490fbd2da9SKen Smith	cd ../compile/KERNEL_NAME_HERE
950ba01eb20SWarner Losh	make depend
951ba01eb20SWarner Losh	make
952ba01eb20SWarner Losh	make install
953ba01eb20SWarner Losh
954ba01eb20SWarner Losh	If this fails, go to the "To build a kernel" section.
955ba01eb20SWarner Losh
956ba01eb20SWarner Losh	To rebuild everything and install it on the current system.
957ba01eb20SWarner Losh	-----------------------------------------------------------
95863cb445eSWarner Losh	# Note: sometimes if you are running current you gotta do more than
95963cb445eSWarner Losh	# is listed here if you are upgrading from a really old current.
96063cb445eSWarner Losh
961f643de42SWarner Losh	<make sure you have good level 0 dumps>
96263cb445eSWarner Losh	make buildworld
9636586253aSWarner Losh	make kernel KERNCONF=YOUR_KERNEL_HERE
96463cb445eSWarner Losh							[1]
96563cb445eSWarner Losh	<reboot in single user>				[3]
96605940036SJohn-Mark Gurney	mergemaster -Fp					[5]
96763cb445eSWarner Losh	make installworld
96805940036SJohn-Mark Gurney	mergemaster -Fi					[4]
96994877c06SAlexander Leidinger	make delete-old					[6]
97063cb445eSWarner Losh	<reboot>
97163cb445eSWarner Losh
972f27b1fceSJoseph Koshy	To cross-install current onto a separate partition
973f27b1fceSJoseph Koshy	--------------------------------------------------
974f27b1fceSJoseph Koshy	# In this approach we use a separate partition to hold
975f27b1fceSJoseph Koshy	# current's root, 'usr', and 'var' directories.   A partition
976f27b1fceSJoseph Koshy	# holding "/", "/usr" and "/var" should be about 2GB in
977f27b1fceSJoseph Koshy	# size.
978f27b1fceSJoseph Koshy
979f27b1fceSJoseph Koshy	<make sure you have good level 0 dumps>
980f27b1fceSJoseph Koshy	<boot into -stable>
981f27b1fceSJoseph Koshy	make buildworld
9823ecf3bddSRuslan Ermilov	make buildkernel KERNCONF=YOUR_KERNEL_HERE
983f27b1fceSJoseph Koshy	<maybe newfs current's root partition>
984f27b1fceSJoseph Koshy	<mount current's root partition on directory ${CURRENT_ROOT}>
985af34024aSJohn-Mark Gurney	make installworld DESTDIR=${CURRENT_ROOT} -DDB_FROM_SRC
9862d5cde04SRuslan Ermilov	make distribution DESTDIR=${CURRENT_ROOT} # if newfs'd
9873ecf3bddSRuslan Ermilov	make installkernel KERNCONF=YOUR_KERNEL_HERE DESTDIR=${CURRENT_ROOT}
988f27b1fceSJoseph Koshy	cp /etc/fstab ${CURRENT_ROOT}/etc/fstab 		   # if newfs'd
989f27b1fceSJoseph Koshy	<edit ${CURRENT_ROOT}/etc/fstab to mount "/" from the correct partition>
990f27b1fceSJoseph Koshy	<reboot into current>
991f27b1fceSJoseph Koshy	<do a "native" rebuild/install as described in the previous section>
992737d990aSXin LI	<maybe install compatibility libraries from ports/misc/compat*>
993f27b1fceSJoseph Koshy	<reboot>
994f27b1fceSJoseph Koshy
995f27b1fceSJoseph Koshy
99615974d55SGavin Atkinson	To upgrade in-place from stable to current
997f27b1fceSJoseph Koshy	----------------------------------------------
998f643de42SWarner Losh	<make sure you have good level 0 dumps>
99921c075eaSWarner Losh	make buildworld					[9]
1000e5dc5f61SWarner Losh	make kernel KERNCONF=YOUR_KERNEL_HERE		[8]
1001fc8c157fSWarner Losh							[1]
1002fc8c157fSWarner Losh	<reboot in single user>				[3]
100305940036SJohn-Mark Gurney	mergemaster -Fp					[5]
1004ba26da8eSWarner Losh	make installworld
100505940036SJohn-Mark Gurney	mergemaster -Fi					[4]
100694877c06SAlexander Leidinger	make delete-old					[6]
1007ba26da8eSWarner Losh	<reboot>
1008ba26da8eSWarner Losh
1009fdb9f54dSWarner Losh	Make sure that you've read the UPDATING file to understand the
1010fdb9f54dSWarner Losh	tweaks to various things you need.  At this point in the life
1011fdb9f54dSWarner Losh	cycle of current, things change often and you are on your own
1012fdb9f54dSWarner Losh	to cope.  The defaults can also change, so please read ALL of
1013fdb9f54dSWarner Losh	the UPDATING entries.
1014ba26da8eSWarner Losh
10151dece4a9SWarner Losh	Also, if you are tracking -current, you must be subscribed to
10161dece4a9SWarner Losh	freebsd-current@freebsd.org.  Make sure that before you update
10171dece4a9SWarner Losh	your sources that you have read and understood all the recent
10181dece4a9SWarner Losh	messages there.  If in doubt, please track -stable which has
10191dece4a9SWarner Losh	much fewer pitfalls.
10201dece4a9SWarner Losh
1021134d2e86SWarner Losh	[1] If you have third party modules, such as vmware, you
1022134d2e86SWarner Losh	should disable them at this point so they don't crash your
1023134d2e86SWarner Losh	system on reboot.
1024134d2e86SWarner Losh
1025ee6e1fc3SWarner Losh	[3] From the bootblocks, boot -s, and then do
1026ee6e1fc3SWarner Losh		fsck -p
1027ee6e1fc3SWarner Losh		mount -u /
1028ee6e1fc3SWarner Losh		mount -a
10296586253aSWarner Losh		cd src
103047d0d01fSWarner Losh		adjkerntz -i		# if CMOS is wall time
1031f6a0ef01SWarner Losh	Also, when doing a major release upgrade, it is required that
1032f6a0ef01SWarner Losh	you boot into single user mode to do the installworld.
1033ee6e1fc3SWarner Losh
1034a6cd4f9dSWarner Losh	[4] Note: This step is non-optional.  Failure to do this step
1035a6cd4f9dSWarner Losh	can result in a significant reduction in the functionality of the
1036a6cd4f9dSWarner Losh	system.  Attempting to do it by hand is not recommended and those
1037a6cd4f9dSWarner Losh	that pursue this avenue should read this file carefully, as well
1038a6cd4f9dSWarner Losh	as the archives of freebsd-current and freebsd-hackers mailing lists
103950e8eca6SDoug Barton	for potential gotchas.  The -U option is also useful to consider.
104050e8eca6SDoug Barton	See mergemaster(8) for more information.
1041a6cd4f9dSWarner Losh
1042835284beSWarner Losh	[5] Usually this step is a noop.  However, from time to time
1043835284beSWarner Losh	you may need to do this if you get unknown user in the following
1044835284beSWarner Losh	step.  It never hurts to do it all the time.  You may need to
1045835284beSWarner Losh	install a new mergemaster (cd src/usr.sbin/mergemaster && make
1046835284beSWarner Losh	install) after the buildworld before this step if you last updated
104720e0cc0aSBrooks Davis	from current before 20130425 or from -stable before 20130430.
1048835284beSWarner Losh
104994877c06SAlexander Leidinger	[6] This only deletes old files and directories. Old libraries
105094877c06SAlexander Leidinger	can be deleted by "make delete-old-libs", but you have to make
105194877c06SAlexander Leidinger	sure that no program is using those libraries anymore.
105294877c06SAlexander Leidinger
1053456b5dd8SWarner Losh	[8] In order to have a kernel that can run the 4.x binaries needed to
1054456b5dd8SWarner Losh	do an installworld, you must include the COMPAT_FREEBSD4 option in
1055456b5dd8SWarner Losh	your kernel.  Failure to do so may leave you with a system that is
1056456b5dd8SWarner Losh	hard to boot to recover. A similar kernel option COMPAT_FREEBSD5 is
1057456b5dd8SWarner Losh	required to run the 5.x binaries on more recent kernels.  And so on
1058456b5dd8SWarner Losh	for COMPAT_FREEBSD6 and COMPAT_FREEBSD7.
1059c74fe6afSWarner Losh
1060e5dc5f61SWarner Losh	Make sure that you merge any new devices from GENERIC since the
1061e5dc5f61SWarner Losh	last time you updated your kernel config file.
1062e5dc5f61SWarner Losh
106321c075eaSWarner Losh	[9] When checking out sources, you must include the -P flag to have
1064e5dc5f61SWarner Losh	cvs prune empty directories.
1065e5dc5f61SWarner Losh
1066e5dc5f61SWarner Losh	If CPUTYPE is defined in your /etc/make.conf, make sure to use the
1067e5dc5f61SWarner Losh	"?=" instead of the "=" assignment operator, so that buildworld can
1068e5dc5f61SWarner Losh	override the CPUTYPE if it needs to.
1069e5dc5f61SWarner Losh
1070e5dc5f61SWarner Losh	MAKEOBJDIRPREFIX must be defined in an environment variable, and
1071e5dc5f61SWarner Losh	not on the command line, or in /etc/make.conf.  buildworld will
1072e5dc5f61SWarner Losh	warn if it is improperly defined.
1073dc0dbf5cSWarner LoshFORMAT:
1074dc0dbf5cSWarner Losh
1075f699bbbbSMark OvensThis file contains a list, in reverse chronological order, of major
1076630f2154SGlen Barberbreakages in tracking -current.  It is not guaranteed to be a complete
1077630f2154SGlen Barberlist of such breakages, and only contains entries since October 10, 2007.
1078630f2154SGlen BarberIf you need to see UPDATING entries from before that date, you will need
1079630f2154SGlen Barberto fetch an UPDATING file from an older FreeBSD release.
10801fc1a0dcSWarner Losh
1081e72fd46aSWarner LoshCopyright information:
1082e72fd46aSWarner Losh
1083456b5dd8SWarner LoshCopyright 1998-2009 M. Warner Losh.  All Rights Reserved.
1084e72fd46aSWarner Losh
1085772730c7SWarner LoshRedistribution, publication, translation and use, with or without
1086772730c7SWarner Loshmodification, in full or in part, in any form or format of this
10879698f2c0SWarner Loshdocument are permitted without further permission from the author.
1088e72fd46aSWarner Losh
1089e72fd46aSWarner LoshTHIS DOCUMENT IS PROVIDED BY WARNER LOSH ``AS IS'' AND ANY EXPRESS OR
1090e72fd46aSWarner LoshIMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
1091e72fd46aSWarner LoshWARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
1092e72fd46aSWarner LoshDISCLAIMED.  IN NO EVENT SHALL WARNER LOSH BE LIABLE FOR ANY DIRECT,
1093e72fd46aSWarner LoshINDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
1094e72fd46aSWarner Losh(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
1095e72fd46aSWarner LoshSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
1096e72fd46aSWarner LoshHOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
1097e72fd46aSWarner LoshSTRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
1098e72fd46aSWarner LoshIN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
1099e72fd46aSWarner LoshPOSSIBILITY OF SUCH DAMAGE.
1100e72fd46aSWarner Losh
110122306abcSWarner LoshContact Warner Losh if you have any questions about your use of
1102772730c7SWarner Loshthis document.
1103772730c7SWarner Losh
110497d92980SPeter Wemm$FreeBSD$
1105