1Updating Information for FreeBSD current users. 2 3This file is maintained and copyrighted by M. Warner Losh <imp@freebsd.org>. 4See end of file for further details. For commonly done items, please see the 5COMMON ITEMS: section later in the file. These instructions assume that you 6basically know what you are doing. If not, then please consult the FreeBSD 7handbook: 8 9 http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/makeworld.html 10 11Items affecting the ports and packages system can be found in 12/usr/ports/UPDATING. Please read that file before running portupgrade. 13 14NOTE: FreeBSD has switched from gcc to clang. If you have trouble bootstrapping 15from older versions of FreeBSD, try WITHOUT_CLANG and WITH_GCC to bootstrap to 16the tip of head, and then rebuild without this option. The bootstrap process 17from older version of current across the gcc/clang cutover is a bit fragile. 18 19NOTE TO PEOPLE WHO THINK THAT FreeBSD 11.x IS SLOW: 20 FreeBSD 11.x has many debugging features turned on, in both the kernel 21 and userland. These features attempt to detect incorrect use of 22 system primitives, and encourage loud failure through extra sanity 23 checking and fail stop semantics. They also substantially impact 24 system performance. If you want to do performance measurement, 25 benchmarking, and optimization, you'll want to turn them off. This 26 includes various WITNESS- related kernel options, INVARIANTS, malloc 27 debugging flags in userland, and various verbose features in the 28 kernel. Many developers choose to disable these features on build 29 machines to maximize performance. (To completely disable malloc 30 debugging, define MALLOC_PRODUCTION in /etc/make.conf, or to merely 31 disable the most expensive debugging functionality run 32 "ln -s 'abort:false,junk:false' /etc/malloc.conf".) 33 3420160414: 35 The CAM I/O scheduler has been committed to the kernel. There should be 36 no user visible impact. This does enable NCQ Trim on ada SSDs. While the 37 list of known rogues that claim support for this but actually corrupt 38 data is believed to be complete, be on the lookout for data 39 corruption. The known rogue list is believed to be complete: 40 41 o Crucial MX100, M550 drives with MU01 firmware. 42 o Micron M510 and M550 drives with MU01 firmware. 43 o Micron M500 prior to MU07 firmware 44 o Samsung 830, 840, and 850 all firmwares 45 o FCCT M500 all firmwares 46 47 Crucial has firmware http://www.crucial.com/usa/en/support-ssd-firmware 48 with working NCQ TRIM. For Micron branded drives, see your sales rep for 49 updated firmware. Black listed drives will work correctly because these 50 drives work correctly so long as no NCQ TRIMs are sent to them. Given 51 this list is the same as found in Linux, it's believed there are no 52 other rogues in the market place. All other models from the above 53 vendors work. 54 55 To be safe, if you are at all concerned, you can quirk each of your 56 drives to prevent NCQ from being sent by setting: 57 kern.cam.ada.X.quirks="0x2" 58 in loader.conf. If the drive requires the 4k sector quirk, set the 59 quirks entry to 0x3. 60 6120160330: 62 The FAST_DEPEND build option has been removed and its functionality is 63 now the one true way. The old mkdep(1) style of 'make depend' has 64 been removed. See 20160311 for further details. 65 6620160317: 67 Resource range types have grown from unsigned long to uintmax_t. All 68 drivers, and anything using libdevinfo, need to be recompiled. 69 7020160311: 71 WITH_FAST_DEPEND is now enabled by default for in-tree and out-of-tree 72 builds. It no longer runs mkdep(1) during 'make depend', and the 73 'make depend' stage can safely be skipped now as it is auto ran 74 when building 'make all' and will generate all SRCS and DPSRCS before 75 building anything else. Dependencies are gathered at compile time with 76 -MF flags kept in separate .depend files per object file. Users should 77 run 'make cleandepend' once if using -DNO_CLEAN to clean out older 78 stale .depend files. 79 8020160306: 81 On amd64, clang 3.8.0 can now insert sections of type AMD64_UNWIND into 82 kernel modules. Therefore, if you load any kernel modules at boot time, 83 please install the boot loaders after you install the kernel, but before 84 rebooting, e.g.: 85 86 make buildworld 87 make kernel KERNCONF=YOUR_KERNEL_HERE 88 make -C sys/boot install 89 <reboot in single user> 90 91 Then follow the usual steps, described in the General Notes section, 92 below. 93 9420160305: 95 Clang, llvm, lldb and compiler-rt have been upgraded to 3.8.0. Please 96 see the 20141231 entry below for information about prerequisites and 97 upgrading, if you are not already using clang 3.5.0 or higher. 98 9920160301: 100 The AIO subsystem is now a standard part of the kernel. The 101 VFS_AIO kernel option and aio.ko kernel module have been removed. 102 Due to stability concerns, asynchronous I/O requests are only 103 permitted on sockets and raw disks by default. To enable 104 asynchronous I/O requests on all file types, set the 105 vfs.aio.enable_unsafe sysctl to a non-zero value. 106 10720160226: 108 The ELF object manipulation tool objcopy is now provided by the 109 ELF Tool Chain project rather than by GNU binutils. It should be a 110 drop-in replacement, with the addition of arm64 support. The 111 (temporary) src.conf knob WITHOUT_ELFCOPY_AS_OBJCOPY knob may be set 112 to obtain the GNU version if necessary. 113 11420160129: 115 Building ZFS pools on top of zvols is prohibited by default. That 116 feature has never worked safely; it's always been prone to deadlocks. 117 Using a zvol as the backing store for a VM guest's virtual disk will 118 still work, even if the guest is using ZFS. Legacy behavior can be 119 restored by setting vfs.zfs.vol.recursive=1. 120 12120160119: 122 The NONE and HPN patches has been removed from OpenSSH. They are 123 still available in the security/openssh-portable port. 124 12520160113: 126 With the addition of ypldap(8), a new _ypldap user is now required 127 during installworld. "mergemaster -p" can be used to add the user 128 prior to installworld, as documented in the handbook. 129 13020151216: 131 The tftp loader (pxeboot) now uses the option root-path directive. As a 132 consequence it no longer looks for a pxeboot.4th file on the tftp 133 server. Instead it uses the regular /boot infrastructure as with the 134 other loaders. 135 13620151211: 137 The code to start recording plug and play data into the modules has 138 been committed. While the old tools will properly build a new kernel, 139 a number of warnings about "unknown metadata record 4" will be produced 140 for an older kldxref. To avoid such warnings, make sure to rebuild 141 the kernel toolchain (or world). Make sure that you have r292078 or 142 later when trying to build 292077 or later before rebuilding. 143 14420151207: 145 Debug data files are now built by default with 'make buildworld' and 146 installed with 'make installworld'. This facilitates debugging but 147 requires more disk space both during the build and for the installed 148 world. Debug files may be disabled by setting WITHOUT_DEBUG_FILES=yes 149 in src.conf(5). 150 15120151130: 152 r291527 changed the internal interface between the nfsd.ko and 153 nfscommon.ko modules. As such, they must both be upgraded to-gether. 154 __FreeBSD_version has been bumped because of this. 155 15620151108: 157 Add support for unicode collation strings leads to a change of 158 order of files listed by ls(1) for example. To get back to the old 159 behaviour, set LC_COLLATE environment variable to "C". 160 161 Databases administrators will need to reindex their databases given 162 collation results will be different. 163 164 Due to a bug in install(1) it is recommended to remove the ancient 165 locales before running make installworld. 166 167 rm -rf /usr/share/locale/* 168 16920151030: 170 The OpenSSL has been upgraded to 1.0.2d. Any binaries requiring 171 libcrypto.so.7 or libssl.so.7 must be recompiled. 172 17320151020: 174 Qlogic 24xx/25xx firmware images were updated from 5.5.0 to 7.3.0. 175 Kernel modules isp_2400_multi and isp_2500_multi were removed and 176 should be replaced with isp_2400 and isp_2500 modules respectively. 177 17820151017: 179 The build previously allowed using 'make -n' to not recurse into 180 sub-directories while showing what commands would be executed, and 181 'make -n -n' to recursively show commands. Now 'make -n' will recurse 182 and 'make -N' will not. 183 18420151012: 185 If you specify SENDMAIL_MC or SENDMAIL_CF in make.conf, mergemaster 186 and etcupdate will now use this file. A custom sendmail.cf is now 187 updated via this mechanism rather than via installworld. If you had 188 excluded sendmail.cf in mergemaster.rc or etcupdate.conf, you may 189 want to remove the exclusion or change it to "always install". 190 /etc/mail/sendmail.cf is now managed the same way regardless of 191 whether SENDMAIL_MC/SENDMAIL_CF is used. If you are not using 192 SENDMAIL_MC/SENDMAIL_CF there should be no change in behavior. 193 19420151011: 195 Compatibility shims for legacy ATA device names have been removed. 196 It includes ATA_STATIC_ID kernel option, kern.cam.ada.legacy_aliases 197 and kern.geom.raid.legacy_aliases loader tunables, kern.devalias.* 198 environment variables, /dev/ad* and /dev/ar* symbolic links. 199 20020151006: 201 Clang, llvm, lldb, compiler-rt and libc++ have been upgraded to 3.7.0. 202 Please see the 20141231 entry below for information about prerequisites 203 and upgrading, if you are not already using clang 3.5.0 or higher. 204 20520150924: 206 Kernel debug files have been moved to /usr/lib/debug/boot/kernel/, 207 and renamed from .symbols to .debug. This reduces the size requirements 208 on the boot partition or file system and provides consistency with 209 userland debug files. 210 211 When using the supported kernel installation method the 212 /usr/lib/debug/boot/kernel directory will be renamed (to kernel.old) 213 as is done with /boot/kernel. 214 215 Developers wishing to maintain the historical behavior of installing 216 debug files in /boot/kernel/ can set KERN_DEBUGDIR="" in src.conf(5). 217 21820150827: 219 The wireless drivers had undergone changes that remove the 'parent 220 interface' from the ifconfig -l output. The rc.d network scripts 221 used to check presence of a parent interface in the list, so old 222 scripts would fail to start wireless networking. Thus, etcupdate(3) 223 or mergemaster(8) run is required after kernel update, to update your 224 rc.d scripts in /etc. 225 22620150827: 227 pf no longer supports 'scrub fragment crop' or 'scrub fragment drop-ovl' 228 These configurations are now automatically interpreted as 229 'scrub fragment reassemble'. 230 23120150817: 232 Kernel-loadable modules for the random(4) device are back. To use 233 them, the kernel must have 234 235 device random 236 options RANDOM_LOADABLE 237 238 kldload(8) can then be used to load random_fortuna.ko 239 or random_yarrow.ko. Please note that due to the indirect 240 function calls that the loadable modules need to provide, 241 the build-in variants will be slightly more efficient. 242 243 The random(4) kernel option RANDOM_DUMMY has been retired due to 244 unpopularity. It was not all that useful anyway. 245 24620150813: 247 The WITHOUT_ELFTOOLCHAIN_TOOLS src.conf(5) knob has been retired. 248 Control over building the ELF Tool Chain tools is now provided by 249 the WITHOUT_TOOLCHAIN knob. 250 25120150810: 252 The polarity of Pulse Per Second (PPS) capture events with the 253 uart(4) driver has been corrected. Prior to this change the PPS 254 "assert" event corresponded to the trailing edge of a positive PPS 255 pulse and the "clear" event was the leading edge of the next pulse. 256 257 As the width of a PPS pulse in a typical GPS receiver is on the 258 order of 1 millisecond, most users will not notice any significant 259 difference with this change. 260 261 Anyone who has compensated for the historical polarity reversal by 262 configuring a negative offset equal to the pulse width will need to 263 remove that workaround. 264 26520150809: 266 The default group assigned to /dev/dri entries has been changed 267 from 'wheel' to 'video' with the id of '44'. If you want to have 268 access to the dri devices please add yourself to the video group 269 with: 270 271 # pw groupmod video -m $USER 272 27320150806: 274 The menu.rc and loader.rc files will now be replaced during 275 upgrades. Please migrate local changes to menu.rc.local and 276 loader.rc.local instead. 277 27820150805: 279 GNU Binutils versions of addr2line, c++filt, nm, readelf, size, 280 strings and strip have been removed. The src.conf(5) knob 281 WITHOUT_ELFTOOLCHAIN_TOOLS no longer provides the binutils tools. 282 28320150728: 284 As ZFS requires more kernel stack pages than is the default on some 285 architectures e.g. i386, it now warns if KSTACK_PAGES is less than 286 ZFS_MIN_KSTACK_PAGES (which is 4 at the time of writing). 287 288 Please consider using 'options KSTACK_PAGES=X' where X is greater 289 than or equal to ZFS_MIN_KSTACK_PAGES i.e. 4 in such configurations. 290 29120150706: 292 sendmail has been updated to 8.15.2. Starting with FreeBSD 11.0 293 and sendmail 8.15, sendmail uses uncompressed IPv6 addresses by 294 default, i.e., they will not contain "::". For example, instead 295 of ::1, it will be 0:0:0:0:0:0:0:1. This permits a zero subnet 296 to have a more specific match, such as different map entries for 297 IPv6:0:0 vs IPv6:0. This change requires that configuration 298 data (including maps, files, classes, custom ruleset, etc.) must 299 use the same format, so make certain such configuration data is 300 upgrading. As a very simple check search for patterns like 301 'IPv6:[0-9a-fA-F:]*::' and 'IPv6::'. To return to the old 302 behavior, set the m4 option confUSE_COMPRESSED_IPV6_ADDRESSES or 303 the cf option UseCompressedIPv6Addresses. 304 30520150630: 306 The default kernel entropy-processing algorithm is now 307 Fortuna, replacing Yarrow. 308 309 Assuming you have 'device random' in your kernel config 310 file, the configurations allow a kernel option to override 311 this default. You may choose *ONE* of: 312 313 options RANDOM_YARROW # Legacy /dev/random algorithm. 314 options RANDOM_DUMMY # Blocking-only driver. 315 316 If you have neither, you get Fortuna. For most people, 317 read no further, Fortuna will give a /dev/random that works 318 like it always used to, and the difference will be irrelevant. 319 320 If you remove 'device random', you get *NO* kernel-processed 321 entropy at all. This may be acceptable to folks building 322 embedded systems, but has complications. Carry on reading, 323 and it is assumed you know what you need. 324 325 *PLEASE* read random(4) and random(9) if you are in the 326 habit of tweaking kernel configs, and/or if you are a member 327 of the embedded community, wanting specific and not-usual 328 behaviour from your security subsystems. 329 330 NOTE!! If you use RANDOM_DUMMY and/or have no 'device 331 random', you will NOT have a functioning /dev/random, and 332 many cryptographic features will not work, including SSH. 333 You may also find strange behaviour from the random(3) set 334 of library functions, in particular sranddev(3), srandomdev(3) 335 and arc4random(3). The reason for this is that the KERN_ARND 336 sysctl only returns entropy if it thinks it has some to 337 share, and with RANDOM_DUMMY or no 'device random' this 338 will never happen. 339 34020150623: 341 An additional fix for the issue described in the 20150614 sendmail 342 entry below has been been committed in revision 284717. 343 34420150616: 345 FreeBSD's old make (fmake) has been removed from the system. It is 346 available as the devel/fmake port or via pkg install fmake. 347 34820150615: 349 The fix for the issue described in the 20150614 sendmail entry 350 below has been been committed in revision 284436. The work 351 around described in that entry is no longer needed unless the 352 default setting is overridden by a confDH_PARAMETERS configuration 353 setting of '5' or pointing to a 512 bit DH parameter file. 354 35520150614: 356 ALLOW_DEPRECATED_ATF_TOOLS/ATFFILE support has been removed from 357 atf.test.mk (included from bsd.test.mk). Please upgrade devel/atf 358 and devel/kyua to version 0.20+ and adjust any calling code to work 359 with Kyuafile and kyua. 360 36120150614: 362 The import of openssl to address the FreeBSD-SA-15:10.openssl 363 security advisory includes a change which rejects handshakes 364 with DH parameters below 768 bits. sendmail releases prior 365 to 8.15.2 (not yet released), defaulted to a 512 bit 366 DH parameter setting for client connections. To work around 367 this interoperability, sendmail can be configured to use a 368 2048 bit DH parameter by: 369 370 1. Edit /etc/mail/`hostname`.mc 371 2. If a setting for confDH_PARAMETERS does not exist or 372 exists and is set to a string beginning with '5', 373 replace it with '2'. 374 3. If a setting for confDH_PARAMETERS exists and is set to 375 a file path, create a new file with: 376 openssl dhparam -out /path/to/file 2048 377 4. Rebuild the .cf file: 378 cd /etc/mail/; make; make install 379 5. Restart sendmail: 380 cd /etc/mail/; make restart 381 382 A sendmail patch is coming, at which time this file will be 383 updated. 384 38520150604: 386 Generation of legacy formatted entries have been disabled by default 387 in pwd_mkdb(8), as all base system consumers of the legacy formatted 388 entries were converted to use the new format by default when the new, 389 machine independent format have been added and supported since FreeBSD 390 5.x. 391 392 Please see the pwd_mkdb(8) manual page for further details. 393 39420150525: 395 Clang and llvm have been upgraded to 3.6.1 release. Please see the 396 20141231 entry below for information about prerequisites and upgrading, 397 if you are not already using 3.5.0 or higher. 398 39920150521: 400 TI platform code switched to using vendor DTS files and this update 401 may break existing systems running on Beaglebone, Beaglebone Black, 402 and Pandaboard: 403 404 - dtb files should be regenerated/reinstalled. Filenames are the 405 same but content is different now 406 - GPIO addressing was changed, now each GPIO bank (32 pins per bank) 407 has its own /dev/gpiocX device, e.g. pin 121 on /dev/gpioc0 in old 408 addressing scheme is now pin 25 on /dev/gpioc3. 409 - Pandaboard: /etc/ttys should be updated, serial console device is 410 now /dev/ttyu2, not /dev/ttyu0 411 41220150501: 413 soelim(1) from gnu/usr.bin/groff has been replaced by usr.bin/soelim. 414 If you need the GNU extension from groff soelim(1), install groff 415 from package: pkg install groff, or via ports: textproc/groff. 416 41720150423: 418 chmod, chflags, chown and chgrp now affect symlinks in -R mode as 419 defined in symlink(7); previously symlinks were silently ignored. 420 42120150415: 422 The const qualifier has been removed from iconv(3) to comply with 423 POSIX. The ports tree is aware of this from r384038 onwards. 424 42520150416: 426 Libraries specified by LIBADD in Makefiles must have a corresponding 427 DPADD_<lib> variable to ensure correct dependencies. This is now 428 enforced in src.libnames.mk. 429 43020150324: 431 From legacy ata(4) driver was removed support for SATA controllers 432 supported by more functional drivers ahci(4), siis(4) and mvs(4). 433 Kernel modules ataahci and ataadaptec were removed completely, 434 replaced by ahci and mvs modules respectively. 435 43620150315: 437 Clang, llvm and lldb have been upgraded to 3.6.0 release. Please see 438 the 20141231 entry below for information about prerequisites and 439 upgrading, if you are not already using 3.5.0 or higher. 440 44120150307: 442 The 32-bit PowerPC kernel has been changed to a position-independent 443 executable. This can only be booted with a version of loader(8) 444 newer than January 31, 2015, so make sure to update both world and 445 kernel before rebooting. 446 44720150217: 448 If you are running a -CURRENT kernel since r273872 (Oct 30th, 2014), 449 but before r278950, the RNG was not seeded properly. Immediately 450 upgrade the kernel to r278950 or later and regenerate any keys (e.g. 451 ssh keys or openssl keys) that were generated w/ a kernel from that 452 range. This does not affect programs that directly used /dev/random 453 or /dev/urandom. All userland uses of arc4random(3) are affected. 454 45520150210: 456 The autofs(4) ABI was changed in order to restore binary compatibility 457 with 10.1-RELEASE. The automountd(8) daemon needs to be rebuilt to work 458 with the new kernel. 459 46020150131: 461 The powerpc64 kernel has been changed to a position-independent 462 executable. This can only be booted with a new version of loader(8), 463 so make sure to update both world and kernel before rebooting. 464 46520150118: 466 Clang and llvm have been upgraded to 3.5.1 release. This is a bugfix 467 only release, no new features have been added. Please see the 20141231 468 entry below for information about prerequisites and upgrading, if you 469 are not already using 3.5.0. 470 47120150107: 472 ELF tools addr2line, elfcopy (strip), nm, size, and strings are now 473 taken from the ELF Tool Chain project rather than GNU binutils. They 474 should be drop-in replacements, with the addition of arm64 support. 475 The WITHOUT_ELFTOOLCHAIN_TOOLS= knob may be used to obtain the 476 binutils tools, if necessary. See 20150805 for updated information. 477 47820150105: 479 The default Unbound configuration now enables remote control 480 using a local socket. Users who have already enabled the 481 local_unbound service should regenerate their configuration 482 by running "service local_unbound setup" as root. 483 48420150102: 485 The GNU texinfo and GNU info pages have been removed. 486 To be able to view GNU info pages please install texinfo from ports. 487 48820141231: 489 Clang, llvm and lldb have been upgraded to 3.5.0 release. 490 491 As of this release, a prerequisite for building clang, llvm and lldb is 492 a C++11 capable compiler and C++11 standard library. This means that to 493 be able to successfully build the cross-tools stage of buildworld, with 494 clang as the bootstrap compiler, your system compiler or cross compiler 495 should either be clang 3.3 or later, or gcc 4.8 or later, and your 496 system C++ library should be libc++, or libdstdc++ from gcc 4.8 or 497 later. 498 499 On any standard FreeBSD 10.x or 11.x installation, where clang and 500 libc++ are on by default (that is, on x86 or arm), this should work out 501 of the box. 502 503 On 9.x installations where clang is enabled by default, e.g. on x86 and 504 powerpc, libc++ will not be enabled by default, so libc++ should be 505 built (with clang) and installed first. If both clang and libc++ are 506 missing, build clang first, then use it to build libc++. 507 508 On 8.x and earlier installations, upgrade to 9.x first, and then follow 509 the instructions for 9.x above. 510 511 Sparc64 and mips users are unaffected, as they still use gcc 4.2.1 by 512 default, and do not build clang. 513 514 Many embedded systems are resource constrained, and will not be able to 515 build clang in a reasonable time, or in some cases at all. In those 516 cases, cross building bootable systems on amd64 is a workaround. 517 518 This new version of clang introduces a number of new warnings, of which 519 the following are most likely to appear: 520 521 -Wabsolute-value 522 523 This warns in two cases, for both C and C++: 524 * When the code is trying to take the absolute value of an unsigned 525 quantity, which is effectively a no-op, and almost never what was 526 intended. The code should be fixed, if at all possible. If you are 527 sure that the unsigned quantity can be safely cast to signed, without 528 loss of information or undefined behavior, you can add an explicit 529 cast, or disable the warning. 530 531 * When the code is trying to take an absolute value, but the called 532 abs() variant is for the wrong type, which can lead to truncation. 533 If you want to disable the warning instead of fixing the code, please 534 make sure that truncation will not occur, or it might lead to unwanted 535 side-effects. 536 537 -Wtautological-undefined-compare and 538 -Wundefined-bool-conversion 539 540 These warn when C++ code is trying to compare 'this' against NULL, while 541 'this' should never be NULL in well-defined C++ code. However, there is 542 some legacy (pre C++11) code out there, which actively abuses this 543 feature, which was less strictly defined in previous C++ versions. 544 545 Squid and openjdk do this, for example. The warning can be turned off 546 for C++98 and earlier, but compiling the code in C++11 mode might result 547 in unexpected behavior; for example, the parts of the program that are 548 unreachable could be optimized away. 549 55020141222: 551 The old NFS client and server (kernel options NFSCLIENT, NFSSERVER) 552 kernel sources have been removed. The .h files remain, since some 553 utilities include them. This will need to be fixed later. 554 If "mount -t oldnfs ..." is attempted, it will fail. 555 If the "-o" option on mountd(8), nfsd(8) or nfsstat(1) is used, 556 the utilities will report errors. 557 55820141121: 559 The handling of LOCAL_LIB_DIRS has been altered to skip addition of 560 directories to top level SUBDIR variable when their parent 561 directory is included in LOCAL_DIRS. Users with build systems with 562 such hierarchies and without SUBDIR entries in the parent 563 directory Makefiles should add them or add the directories to 564 LOCAL_DIRS. 565 56620141109: 567 faith(4) and faithd(8) have been removed from the base system. Faith 568 has been obsolete for a very long time. 569 57020141104: 571 vt(4), the new console driver, is enabled by default. It brings 572 support for Unicode and double-width characters, as well as 573 support for UEFI and integration with the KMS kernel video 574 drivers. 575 576 You may need to update your console settings in /etc/rc.conf, 577 most probably the keymap. During boot, /etc/rc.d/syscons will 578 indicate what you need to do. 579 580 vt(4) still has issues and lacks some features compared to 581 syscons(4). See the wiki for up-to-date information: 582 https://wiki.freebsd.org/Newcons 583 584 If you want to keep using syscons(4), you can do so by adding 585 the following line to /boot/loader.conf: 586 kern.vty=sc 587 58820141102: 589 pjdfstest has been integrated into kyua as an opt-in test suite. 590 Please see share/doc/pjdfstest/README for more details on how to 591 execute it. 592 59320141009: 594 gperf has been removed from the base system for architectures 595 that use clang. Ports that require gperf will obtain it from the 596 devel/gperf port. 597 59820140923: 599 pjdfstest has been moved from tools/regression/pjdfstest to 600 contrib/pjdfstest . 601 60220140922: 603 At svn r271982, The default linux compat kernel ABI has been adjusted 604 to 2.6.18 in support of the linux-c6 compat ports infrastructure 605 update. If you wish to continue using the linux-f10 compat ports, 606 add compat.linux.osrelease=2.6.16 to your local sysctl.conf. Users are 607 encouraged to update their linux-compat packages to linux-c6 during 608 their next update cycle. 609 61020140729: 611 The ofwfb driver, used to provide a graphics console on PowerPC when 612 using vt(4), no longer allows mmap() of all physical memory. This 613 will prevent Xorg on PowerPC with some ATI graphics cards from 614 initializing properly unless x11-servers/xorg-server is updated to 615 1.12.4_8 or newer. 616 61720140723: 618 The xdev targets have been converted to using TARGET and 619 TARGET_ARCH instead of XDEV and XDEV_ARCH. 620 62120140719: 622 The default unbound configuration has been modified to address 623 issues with reverse lookups on networks that use private 624 address ranges. If you use the local_unbound service, run 625 "service local_unbound setup" as root to regenerate your 626 configuration, then "service local_unbound reload" to load the 627 new configuration. 628 62920140709: 630 The GNU texinfo and GNU info pages are not built and installed 631 anymore, WITH_INFO knob has been added to allow to built and install 632 them again. 633 UPDATE: see 20150102 entry on texinfo's removal 634 63520140708: 636 The GNU readline library is now an INTERNALLIB - that is, it is 637 statically linked into consumers (GDB and variants) in the base 638 system, and the shared library is no longer installed. The 639 devel/readline port is available for third party software that 640 requires readline. 641 64220140702: 643 The Itanium architecture (ia64) has been removed from the list of 644 known architectures. This is the first step in the removal of the 645 architecture. 646 64720140701: 648 Commit r268115 has added NFSv4.1 server support, merged from 649 projects/nfsv4.1-server. Since this includes changes to the 650 internal interfaces between the NFS related modules, a full 651 build of the kernel and modules will be necessary. 652 __FreeBSD_version has been bumped. 653 65420140629: 655 The WITHOUT_VT_SUPPORT kernel config knob has been renamed 656 WITHOUT_VT. (The other _SUPPORT knobs have a consistent meaning 657 which differs from the behaviour controlled by this knob.) 658 65920140619: 660 Maximal length of the serial number in CTL was increased from 16 to 661 64 chars, that breaks ABI. All CTL-related tools, such as ctladm 662 and ctld, need to be rebuilt to work with a new kernel. 663 66420140606: 665 The libatf-c and libatf-c++ major versions were downgraded to 0 and 666 1 respectively to match the upstream numbers. They were out of 667 sync because, when they were originally added to FreeBSD, the 668 upstream versions were not respected. These libraries are private 669 and not yet built by default, so renumbering them should be a 670 non-issue. However, unclean source trees will yield broken test 671 programs once the operator executes "make delete-old-libs" after a 672 "make installworld". 673 674 Additionally, the atf-sh binary was made private by moving it into 675 /usr/libexec/. Already-built shell test programs will keep the 676 path to the old binary so they will break after "make delete-old" 677 is run. 678 679 If you are using WITH_TESTS=yes (not the default), wipe the object 680 tree and rebuild from scratch to prevent spurious test failures. 681 This is only needed once: the misnumbered libraries and misplaced 682 binaries have been added to OptionalObsoleteFiles.inc so they will 683 be removed during a clean upgrade. 684 68520140512: 686 Clang and llvm have been upgraded to 3.4.1 release. 687 68820140508: 689 We bogusly installed src.opts.mk in /usr/share/mk. This file should 690 be removed to avoid issues in the future (and has been added to 691 ObsoleteFiles.inc). 692 69320140505: 694 /etc/src.conf now affects only builds of the FreeBSD src tree. In the 695 past, it affected all builds that used the bsd.*.mk files. The old 696 behavior was a bug, but people may have relied upon it. To get this 697 behavior back, you can .include /etc/src.conf from /etc/make.conf 698 (which is still global and isn't changed). This also changes the 699 behavior of incremental builds inside the tree of individual 700 directories. Set MAKESYSPATH to ".../share/mk" to do that. 701 Although this has survived make universe and some upgrade scenarios, 702 other upgrade scenarios may have broken. At least one form of 703 temporary breakage was fixed with MAKESYSPATH settings for buildworld 704 as well... In cases where MAKESYSPATH isn't working with this 705 setting, you'll need to set it to the full path to your tree. 706 707 One side effect of all this cleaning up is that bsd.compiler.mk 708 is no longer implicitly included by bsd.own.mk. If you wish to 709 use COMPILER_TYPE, you must now explicitly include bsd.compiler.mk 710 as well. 711 71220140430: 713 The lindev device has been removed since /dev/full has been made a 714 standard device. __FreeBSD_version has been bumped. 715 71620140424: 717 The knob WITHOUT_VI was added to the base system, which controls 718 building ex(1), vi(1), etc. Older releases of FreeBSD required ex(1) 719 in order to reorder files share/termcap and didn't build ex(1) as a 720 build tool, so building/installing with WITH_VI is highly advised for 721 build hosts for older releases. 722 723 This issue has been fixed in stable/9 and stable/10 in r277022 and 724 r276991, respectively. 725 72620140418: 727 The YES_HESIOD knob has been removed. It has been obsolete for 728 a decade. Please move to using WITH_HESIOD instead or your builds 729 will silently lack HESIOD. 730 73120140405: 732 The uart(4) driver has been changed with respect to its handling 733 of the low-level console. Previously the uart(4) driver prevented 734 any process from changing the baudrate or the CLOCAL and HUPCL 735 control flags. By removing the restrictions, operators can make 736 changes to the serial console port without having to reboot. 737 However, when getty(8) is started on the serial device that is 738 associated with the low-level console, a misconfigured terminal 739 line in /etc/ttys will now have a real impact. 740 Before upgrading the kernel, make sure that /etc/ttys has the 741 serial console device configured as 3wire without baudrate to 742 preserve the previous behaviour. E.g: 743 ttyu0 "/usr/libexec/getty 3wire" vt100 on secure 744 74520140306: 746 Support for libwrap (TCP wrappers) in rpcbind was disabled by default 747 to improve performance. To re-enable it, if needed, run rpcbind 748 with command line option -W. 749 75020140226: 751 Switched back to the GPL dtc compiler due to updates in the upstream 752 dts files not being supported by the BSDL dtc compiler. You will need 753 to rebuild your kernel toolchain to pick up the new compiler. Core dumps 754 may result while building dtb files during a kernel build if you fail 755 to do so. Set WITHOUT_GPL_DTC if you require the BSDL compiler. 756 75720140216: 758 Clang and llvm have been upgraded to 3.4 release. 759 76020140216: 761 The nve(4) driver has been removed. Please use the nfe(4) driver 762 for NVIDIA nForce MCP Ethernet adapters instead. 763 76420140212: 765 An ABI incompatibility crept into the libc++ 3.4 import in r261283. 766 This could cause certain C++ applications using shared libraries built 767 against the previous version of libc++ to crash. The incompatibility 768 has now been fixed, but any C++ applications or shared libraries built 769 between r261283 and r261801 should be recompiled. 770 77120140204: 772 OpenSSH will now ignore errors caused by kernel lacking of Capsicum 773 capability mode support. Please note that enabling the feature in 774 kernel is still highly recommended. 775 77620140131: 777 OpenSSH is now built with sandbox support, and will use sandbox as 778 the default privilege separation method. This requires Capsicum 779 capability mode support in kernel. 780 78120140128: 782 The libelf and libdwarf libraries have been updated to newer 783 versions from upstream. Shared library version numbers for 784 these two libraries were bumped. Any ports or binaries 785 requiring these two libraries should be recompiled. 786 __FreeBSD_version is bumped to 1100006. 787 78820140110: 789 If a Makefile in a tests/ directory was auto-generating a Kyuafile 790 instead of providing an explicit one, this would prevent such 791 Makefile from providing its own Kyuafile in the future during 792 NO_CLEAN builds. This has been fixed in the Makefiles but manual 793 intervention is needed to clean an objdir if you use NO_CLEAN: 794 # find /usr/obj -name Kyuafile | xargs rm -f 795 79620131213: 797 The behavior of gss_pseudo_random() for the krb5 mechanism 798 has changed, for applications requesting a longer random string 799 than produced by the underlying enctype's pseudo-random() function. 800 In particular, the random string produced from a session key of 801 enctype aes256-cts-hmac-sha1-96 or aes256-cts-hmac-sha1-96 will 802 be different at the 17th octet and later, after this change. 803 The counter used in the PRF+ construction is now encoded as a 804 big-endian integer in accordance with RFC 4402. 805 __FreeBSD_version is bumped to 1100004. 806 80720131108: 808 The WITHOUT_ATF build knob has been removed and its functionality 809 has been subsumed into the more generic WITHOUT_TESTS. If you were 810 using the former to disable the build of the ATF libraries, you 811 should change your settings to use the latter. 812 81320131025: 814 The default version of mtree is nmtree which is obtained from 815 NetBSD. The output is generally the same, but may vary 816 slightly. If you found you need identical output adding 817 "-F freebsd9" to the command line should do the trick. For the 818 time being, the old mtree is available as fmtree. 819 82020131014: 821 libbsdyml has been renamed to libyaml and moved to /usr/lib/private. 822 This will break ports-mgmt/pkg. Rebuild the port, or upgrade to pkg 823 1.1.4_8 and verify bsdyml not linked in, before running "make 824 delete-old-libs": 825 # make -C /usr/ports/ports-mgmt/pkg build deinstall install clean 826 or 827 # pkg install pkg; ldd /usr/local/sbin/pkg | grep bsdyml 828 82920131010: 830 The stable/10 branch has been created in subversion from head 831 revision r256279. 832 83320131010: 834 The rc.d/jail script has been updated to support jail(8) 835 configuration file. The "jail_<jname>_*" rc.conf(5) variables 836 for per-jail configuration are automatically converted to 837 /var/run/jail.<jname>.conf before the jail(8) utility is invoked. 838 This is transparently backward compatible. See below about some 839 incompatibilities and rc.conf(5) manual page for more details. 840 841 These variables are now deprecated in favor of jail(8) configuration 842 file. One can use "rc.d/jail config <jname>" command to generate 843 a jail(8) configuration file in /var/run/jail.<jname>.conf without 844 running the jail(8) utility. The default pathname of the 845 configuration file is /etc/jail.conf and can be specified by 846 using $jail_conf or $jail_<jname>_conf variables. 847 848 Please note that jail_devfs_ruleset accepts an integer at 849 this moment. Please consider to rewrite the ruleset name 850 with an integer. 851 85220130930: 853 BIND has been removed from the base system. If all you need 854 is a local resolver, simply enable and start the local_unbound 855 service instead. Otherwise, several versions of BIND are 856 available in the ports tree. The dns/bind99 port is one example. 857 858 With this change, nslookup(1) and dig(1) are no longer in the base 859 system. Users should instead use host(1) and drill(1) which are 860 in the base system. Alternatively, nslookup and dig can 861 be obtained by installing the dns/bind-tools port. 862 86320130916: 864 With the addition of unbound(8), a new unbound user is now 865 required during installworld. "mergemaster -p" can be used to 866 add the user prior to installworld, as documented in the handbook. 867 86820130911: 869 OpenSSH is now built with DNSSEC support, and will by default 870 silently trust signed SSHFP records. This can be controlled with 871 the VerifyHostKeyDNS client configuration setting. DNSSEC support 872 can be disabled entirely with the WITHOUT_LDNS option in src.conf. 873 87420130906: 875 The GNU Compiler Collection and C++ standard library (libstdc++) 876 are no longer built by default on platforms where clang is the system 877 compiler. You can enable them with the WITH_GCC and WITH_GNUCXX 878 options in src.conf. 879 88020130905: 881 The PROCDESC kernel option is now part of the GENERIC kernel 882 configuration and is required for the rwhod(8) to work. 883 If you are using custom kernel configuration, you should include 884 'options PROCDESC'. 885 88620130905: 887 The API and ABI related to the Capsicum framework was modified 888 in backward incompatible way. The userland libraries and programs 889 have to be recompiled to work with the new kernel. This includes the 890 following libraries and programs, but the whole buildworld is 891 advised: libc, libprocstat, dhclient, tcpdump, hastd, hastctl, 892 kdump, procstat, rwho, rwhod, uniq. 893 89420130903: 895 AES-NI intrinsic support has been added to gcc. The AES-NI module 896 has been updated to use this support. A new gcc is required to build 897 the aesni module on both i386 and amd64. 898 89920130821: 900 The PADLOCK_RNG and RDRAND_RNG kernel options are now devices. 901 Thus "device padlock_rng" and "device rdrand_rng" should be 902 used instead of "options PADLOCK_RNG" & "options RDRAND_RNG". 903 90420130813: 905 WITH_ICONV has been split into two feature sets. WITH_ICONV now 906 enables just the iconv* functionality and is now on by default. 907 WITH_LIBICONV_COMPAT enables the libiconv api and link time 908 compatability. Set WITHOUT_ICONV to build the old way. 909 If you have been using WITH_ICONV before, you will very likely 910 need to turn on WITH_LIBICONV_COMPAT. 911 91220130806: 913 INVARIANTS option now enables DEBUG for code with OpenSolaris and 914 Illumos origin, including ZFS. If you have INVARIANTS in your 915 kernel configuration, then there is no need to set DEBUG or ZFS_DEBUG 916 explicitly. 917 DEBUG used to enable witness(9) tracking of OpenSolaris (mostly ZFS) 918 locks if WITNESS option was set. Because that generated a lot of 919 witness(9) reports and all of them were believed to be false 920 positives, this is no longer done. New option OPENSOLARIS_WITNESS 921 can be used to achieve the previous behavior. 922 92320130806: 924 Timer values in IPv6 data structures now use time_uptime instead 925 of time_second. Although this is not a user-visible functional 926 change, userland utilities which directly use them---ndp(8), 927 rtadvd(8), and rtsold(8) in the base system---need to be updated 928 to r253970 or later. 929 93020130802: 931 find -delete can now delete the pathnames given as arguments, 932 instead of only files found below them or if the pathname did 933 not contain any slashes. Formerly, the following error message 934 would result: 935 936 find: -delete: <path>: relative path potentially not safe 937 938 Deleting the pathnames given as arguments can be prevented 939 without error messages using -mindepth 1 or by changing 940 directory and passing "." as argument to find. This works in the 941 old as well as the new version of find. 942 94320130726: 944 Behavior of devfs rules path matching has been changed. 945 Pattern is now always matched against fully qualified devfs 946 path and slash characters must be explicitly matched by 947 slashes in pattern (FNM_PATHNAME). Rulesets involving devfs 948 subdirectories must be reviewed. 949 95020130716: 951 The default ARM ABI has changed to the ARM EABI. The old ABI is 952 incompatible with the ARM EABI and all programs and modules will 953 need to be rebuilt to work with a new kernel. 954 955 To keep using the old ABI ensure the WITHOUT_ARM_EABI knob is set. 956 957 NOTE: Support for the old ABI will be removed in the future and 958 users are advised to upgrade. 959 96020130709: 961 pkg_install has been disconnected from the build if you really need it 962 you should add WITH_PKGTOOLS in your src.conf(5). 963 96420130709: 965 Most of network statistics structures were changed to be able 966 keep 64-bits counters. Thus all tools, that work with networking 967 statistics, must be rebuilt (netstat(1), bsnmpd(1), etc.) 968 96920130618: 970 Fix a bug that allowed a tracing process (e.g. gdb) to write 971 to a memory-mapped file in the traced process's address space 972 even if neither the traced process nor the tracing process had 973 write access to that file. 974 97520130615: 976 CVS has been removed from the base system. An exact copy 977 of the code is available from the devel/cvs port. 978 97920130613: 980 Some people report the following error after the switch to bmake: 981 982 make: illegal option -- J 983 usage: make [-BPSXeiknpqrstv] [-C directory] [-D variable] 984 ... 985 *** [buildworld] Error code 2 986 987 this likely due to an old instance of make in 988 ${MAKEPATH} (${MAKEOBJDIRPREFIX}${.CURDIR}/make.${MACHINE}) 989 which src/Makefile will use that blindly, if it exists, so if 990 you see the above error: 991 992 rm -rf `make -V MAKEPATH` 993 994 should resolve it. 995 99620130516: 997 Use bmake by default. 998 Whereas before one could choose to build with bmake via 999 -DWITH_BMAKE one must now use -DWITHOUT_BMAKE to use the old 1000 make. The goal is to remove these knobs for 10-RELEASE. 1001 1002 It is worth noting that bmake (like gmake) treats the command 1003 line as the unit of failure, rather than statements within the 1004 command line. Thus '(cd some/where && dosomething)' is safer 1005 than 'cd some/where; dosomething'. The '()' allows consistent 1006 behavior in parallel build. 1007 100820130429: 1009 Fix a bug that allows NFS clients to issue READDIR on files. 1010 101120130426: 1012 The WITHOUT_IDEA option has been removed because 1013 the IDEA patent expired. 1014 101520130426: 1016 The sysctl which controls TRIM support under ZFS has been renamed 1017 from vfs.zfs.trim_disable -> vfs.zfs.trim.enabled and has been 1018 enabled by default. 1019 102020130425: 1021 The mergemaster command now uses the default MAKEOBJDIRPREFIX 1022 rather than creating it's own in the temporary directory in 1023 order allow access to bootstrapped versions of tools such as 1024 install and mtree. When upgrading from version of FreeBSD where 1025 the install command does not support -l, you will need to 1026 install a new mergemaster command if mergemaster -p is required. 1027 This can be accomplished with the command (cd src/usr.sbin/mergemaster 1028 && make install). 1029 103020130404: 1031 Legacy ATA stack, disabled and replaced by new CAM-based one since 1032 FreeBSD 9.0, completely removed from the sources. Kernel modules 1033 atadisk and atapi*, user-level tools atacontrol and burncd are 1034 removed. Kernel option `options ATA_CAM` is now permanently enabled 1035 and removed. 1036 103720130319: 1038 SOCK_CLOEXEC and SOCK_NONBLOCK flags have been added to socket(2) 1039 and socketpair(2). Software, in particular Kerberos, may 1040 automatically detect and use these during building. The resulting 1041 binaries will not work on older kernels. 1042 104320130308: 1044 CTL_DISABLE has also been added to the sparc64 GENERIC (for further 1045 information, see the respective 20130304 entry). 1046 104720130304: 1048 Recent commits to callout(9) changed the size of struct callout, 1049 so the KBI is probably heavily disturbed. Also, some functions 1050 in callout(9)/sleep(9)/sleepqueue(9)/condvar(9) KPIs were replaced 1051 by macros. Every kernel module using it won't load, so rebuild 1052 is requested. 1053 1054 The ctl device has been re-enabled in GENERIC for i386 and amd64, 1055 but does not initialize by default (because of the new CTL_DISABLE 1056 option) to save memory. To re-enable it, remove the CTL_DISABLE 1057 option from the kernel config file or set kern.cam.ctl.disable=0 1058 in /boot/loader.conf. 1059 106020130301: 1061 The ctl device has been disabled in GENERIC for i386 and amd64. 1062 This was done due to the extra memory being allocated at system 1063 initialisation time by the ctl driver which was only used if 1064 a CAM target device was created. This makes a FreeBSD system 1065 unusable on 128MB or less of RAM. 1066 106720130208: 1068 A new compression method (lz4) has been merged to -HEAD. Please 1069 refer to zpool-features(7) for more information. 1070 1071 Please refer to the "ZFS notes" section of this file for information 1072 on upgrading boot ZFS pools. 1073 107420130129: 1075 A BSD-licensed patch(1) variant has been added and is installed 1076 as bsdpatch, being the GNU version the default patch. 1077 To inverse the logic and use the BSD-licensed one as default, 1078 while having the GNU version installed as gnupatch, rebuild 1079 and install world with the WITH_BSD_PATCH knob set. 1080 108120130121: 1082 Due to the use of the new -l option to install(1) during build 1083 and install, you must take care not to directly set the INSTALL 1084 make variable in your /etc/make.conf, /etc/src.conf, or on the 1085 command line. If you wish to use the -C flag for all installs 1086 you may be able to add INSTALL+=-C to /etc/make.conf or 1087 /etc/src.conf. 1088 108920130118: 1090 The install(1) option -M has changed meaning and now takes an 1091 argument that is a file or path to append logs to. In the 1092 unlikely event that -M was the last option on the command line 1093 and the command line contained at least two files and a target 1094 directory the first file will have logs appended to it. The -M 1095 option served little practical purpose in the last decade so its 1096 use is expected to be extremely rare. 1097 109820121223: 1099 After switching to Clang as the default compiler some users of ZFS 1100 on i386 systems started to experience stack overflow kernel panics. 1101 Please consider using 'options KSTACK_PAGES=4' in such configurations. 1102 110320121222: 1104 GEOM_LABEL now mangles label names read from file system metadata. 1105 Mangling affect labels containing spaces, non-printable characters, 1106 '%' or '"'. Device names in /etc/fstab and other places may need to 1107 be updated. 1108 110920121217: 1110 By default, only the 10 most recent kernel dumps will be saved. To 1111 restore the previous behaviour (no limit on the number of kernel dumps 1112 stored in the dump directory) add the following line to /etc/rc.conf: 1113 1114 savecore_flags="" 1115 111620121201: 1117 With the addition of auditdistd(8), a new auditdistd user is now 1118 required during installworld. "mergemaster -p" can be used to 1119 add the user prior to installworld, as documented in the handbook. 1120 112120121117: 1122 The sin6_scope_id member variable in struct sockaddr_in6 is now 1123 filled by the kernel before passing the structure to the userland via 1124 sysctl or routing socket. This means the KAME-specific embedded scope 1125 id in sin6_addr.s6_addr[2] is always cleared in userland application. 1126 This behavior can be controlled by net.inet6.ip6.deembed_scopeid. 1127 __FreeBSD_version is bumped to 1000025. 1128 112920121105: 1130 On i386 and amd64 systems WITH_CLANG_IS_CC is now the default. 1131 This means that the world and kernel will be compiled with clang 1132 and that clang will be installed as /usr/bin/cc, /usr/bin/c++, 1133 and /usr/bin/cpp. To disable this behavior and revert to building 1134 with gcc, compile with WITHOUT_CLANG_IS_CC. Really old versions 1135 of current may need to bootstrap WITHOUT_CLANG first if the clang 1136 build fails (its compatibility window doesn't extend to the 9 stable 1137 branch point). 1138 113920121102: 1140 The IPFIREWALL_FORWARD kernel option has been removed. Its 1141 functionality now turned on by default. 1142 114320121023: 1144 The ZERO_COPY_SOCKET kernel option has been removed and 1145 split into SOCKET_SEND_COW and SOCKET_RECV_PFLIP. 1146 NB: SOCKET_SEND_COW uses the VM page based copy-on-write 1147 mechanism which is not safe and may result in kernel crashes. 1148 NB: The SOCKET_RECV_PFLIP mechanism is useless as no current 1149 driver supports disposeable external page sized mbuf storage. 1150 Proper replacements for both zero-copy mechanisms are under 1151 consideration and will eventually lead to complete removal 1152 of the two kernel options. 1153 115420121023: 1155 The IPv4 network stack has been converted to network byte 1156 order. The following modules need to be recompiled together 1157 with kernel: carp(4), divert(4), gif(4), siftr(4), gre(4), 1158 pf(4), ipfw(4), ng_ipfw(4), stf(4). 1159 116020121022: 1161 Support for non-MPSAFE filesystems was removed from VFS. The 1162 VFS_VERSION was bumped, all filesystem modules shall be 1163 recompiled. 1164 116520121018: 1166 All the non-MPSAFE filesystems have been disconnected from 1167 the build. The full list includes: codafs, hpfs, ntfs, nwfs, 1168 portalfs, smbfs, xfs. 1169 117020121016: 1171 The interface cloning API and ABI has changed. The following 1172 modules need to be recompiled together with kernel: 1173 ipfw(4), pfsync(4), pflog(4), usb(4), wlan(4), stf(4), 1174 vlan(4), disc(4), edsc(4), if_bridge(4), gif(4), tap(4), 1175 faith(4), epair(4), enc(4), tun(4), if_lagg(4), gre(4). 1176 117720121015: 1178 The sdhci driver was split in two parts: sdhci (generic SD Host 1179 Controller logic) and sdhci_pci (actual hardware driver). 1180 No kernel config modifications are required, but if you 1181 load sdhc as a module you must switch to sdhci_pci instead. 1182 118320121014: 1184 Import the FUSE kernel and userland support into base system. 1185 118620121013: 1187 The GNU sort(1) program has been removed since the BSD-licensed 1188 sort(1) has been the default for quite some time and no serious 1189 problems have been reported. The corresponding WITH_GNU_SORT 1190 knob has also gone. 1191 119220121006: 1193 The pfil(9) API/ABI for AF_INET family has been changed. Packet 1194 filtering modules: pf(4), ipfw(4), ipfilter(4) need to be recompiled 1195 with new kernel. 1196 119720121001: 1198 The net80211(4) ABI has been changed to allow for improved driver 1199 PS-POLL and power-save support. All wireless drivers need to be 1200 recompiled to work with the new kernel. 1201 120220120913: 1203 The random(4) support for the VIA hardware random number 1204 generator (`PADLOCK') is no longer enabled unconditionally. 1205 Add the padlock_rng device in the custom kernel config if 1206 needed. The GENERIC kernels on i386 and amd64 do include the 1207 device, so the change only affects the custom kernel 1208 configurations. 1209 121020120908: 1211 The pf(4) packet filter ABI has been changed. pfctl(8) and 1212 snmp_pf module need to be recompiled to work with new kernel. 1213 121420120828: 1215 A new ZFS feature flag "com.delphix:empty_bpobj" has been merged 1216 to -HEAD. Pools that have empty_bpobj in active state can not be 1217 imported read-write with ZFS implementations that do not support 1218 this feature. For more information read the zpool-features(5) 1219 manual page. 1220 122120120727: 1222 The sparc64 ZFS loader has been changed to no longer try to auto- 1223 detect ZFS providers based on diskN aliases but now requires these 1224 to be explicitly listed in the OFW boot-device environment variable. 1225 122620120712: 1227 The OpenSSL has been upgraded to 1.0.1c. Any binaries requiring 1228 libcrypto.so.6 or libssl.so.6 must be recompiled. Also, there are 1229 configuration changes. Make sure to merge /etc/ssl/openssl.cnf. 1230 123120120712: 1232 The following sysctls and tunables have been renamed for consistency 1233 with other variables: 1234 kern.cam.da.da_send_ordered -> kern.cam.da.send_ordered 1235 kern.cam.ada.ada_send_ordered -> kern.cam.ada.send_ordered 1236 123720120628: 1238 The sort utility has been replaced with BSD sort. For now, GNU sort 1239 is also available as "gnusort" or the default can be set back to 1240 GNU sort by setting WITH_GNU_SORT. In this case, BSD sort will be 1241 installed as "bsdsort". 1242 124320120611: 1244 A new version of ZFS (pool version 5000) has been merged to -HEAD. 1245 Starting with this version the old system of ZFS pool versioning 1246 is superseded by "feature flags". This concept enables forward 1247 compatibility against certain future changes in functionality of ZFS 1248 pools. The first read-only compatible "feature flag" for ZFS pools 1249 is named "com.delphix:async_destroy". For more information 1250 read the new zpool-features(5) manual page. 1251 Please refer to the "ZFS notes" section of this file for information 1252 on upgrading boot ZFS pools. 1253 125420120417: 1255 The malloc(3) implementation embedded in libc now uses sources imported 1256 as contrib/jemalloc. The most disruptive API change is to 1257 /etc/malloc.conf. If your system has an old-style /etc/malloc.conf, 1258 delete it prior to installworld, and optionally re-create it using the 1259 new format after rebooting. See malloc.conf(5) for details 1260 (specifically the TUNING section and the "opt.*" entries in the MALLCTL 1261 NAMESPACE section). 1262 126320120328: 1264 Big-endian MIPS TARGET_ARCH values no longer end in "eb". mips64eb 1265 is now spelled mips64. mipsn32eb is now spelled mipsn32. mipseb is 1266 now spelled mips. This is to aid compatibility with third-party 1267 software that expects this naming scheme in uname(3). Little-endian 1268 settings are unchanged. If you are updating a big-endian mips64 machine 1269 from before this change, you may need to set MACHINE_ARCH=mips64 in 1270 your environment before the new build system will recognize your machine. 1271 127220120306: 1273 Disable by default the option VFS_ALLOW_NONMPSAFE for all supported 1274 platforms. 1275 127620120229: 1277 Now unix domain sockets behave "as expected" on nullfs(5). Previously 1278 nullfs(5) did not pass through all behaviours to the underlying layer, 1279 as a result if we bound to a socket on the lower layer we could connect 1280 only to the lower path; if we bound to the upper layer we could connect 1281 only to the upper path. The new behavior is one can connect to both the 1282 lower and the upper paths regardless what layer path one binds to. 1283 128420120211: 1285 The getifaddrs upgrade path broken with 20111215 has been restored. 1286 If you have upgraded in between 20111215 and 20120209 you need to 1287 recompile libc again with your kernel. You still need to recompile 1288 world to be able to configure CARP but this restriction already 1289 comes from 20111215. 1290 129120120114: 1292 The set_rcvar() function has been removed from /etc/rc.subr. All 1293 base and ports rc.d scripts have been updated, so if you have a 1294 port installed with a script in /usr/local/etc/rc.d you can either 1295 hand-edit the rcvar= line, or reinstall the port. 1296 1297 An easy way to handle the mass-update of /etc/rc.d: 1298 rm /etc/rc.d/* && mergemaster -i 1299 130020120109: 1301 panic(9) now stops other CPUs in the SMP systems, disables interrupts 1302 on the current CPU and prevents other threads from running. 1303 This behavior can be reverted using the kern.stop_scheduler_on_panic 1304 tunable/sysctl. 1305 The new behavior can be incompatible with kern.sync_on_panic. 1306 130720111215: 1308 The carp(4) facility has been changed significantly. Configuration 1309 of the CARP protocol via ifconfig(8) has changed, as well as format 1310 of CARP events submitted to devd(8) has changed. See manual pages 1311 for more information. The arpbalance feature of carp(4) is currently 1312 not supported anymore. 1313 1314 Size of struct in_aliasreq, struct in6_aliasreq has changed. User 1315 utilities using SIOCAIFADDR, SIOCAIFADDR_IN6, e.g. ifconfig(8), 1316 need to be recompiled. 1317 131820111122: 1319 The acpi_wmi(4) status device /dev/wmistat has been renamed to 1320 /dev/wmistat0. 1321 132220111108: 1323 The option VFS_ALLOW_NONMPSAFE option has been added in order to 1324 explicitely support non-MPSAFE filesystems. 1325 It is on by default for all supported platform at this present 1326 time. 1327 132820111101: 1329 The broken amd(4) driver has been replaced with esp(4) in the amd64, 1330 i386 and pc98 GENERIC kernel configuration files. 1331 133220110930: 1333 sysinstall has been removed 1334 133520110923: 1336 The stable/9 branch created in subversion. This corresponds to the 1337 RELENG_9 branch in CVS. 1338 1339COMMON ITEMS: 1340 1341 General Notes 1342 ------------- 1343 Avoid using make -j when upgrading. While generally safe, there are 1344 sometimes problems using -j to upgrade. If your upgrade fails with 1345 -j, please try again without -j. From time to time in the past there 1346 have been problems using -j with buildworld and/or installworld. This 1347 is especially true when upgrading between "distant" versions (eg one 1348 that cross a major release boundary or several minor releases, or when 1349 several months have passed on the -current branch). 1350 1351 Sometimes, obscure build problems are the result of environment 1352 poisoning. This can happen because the make utility reads its 1353 environment when searching for values for global variables. To run 1354 your build attempts in an "environmental clean room", prefix all make 1355 commands with 'env -i '. See the env(1) manual page for more details. 1356 1357 When upgrading from one major version to another it is generally best 1358 to upgrade to the latest code in the currently installed branch first, 1359 then do an upgrade to the new branch. This is the best-tested upgrade 1360 path, and has the highest probability of being successful. Please try 1361 this approach before reporting problems with a major version upgrade. 1362 1363 When upgrading a live system, having a root shell around before 1364 installing anything can help undo problems. Not having a root shell 1365 around can lead to problems if pam has changed too much from your 1366 starting point to allow continued authentication after the upgrade. 1367 1368 This file should be read as a log of events. When a later event changes 1369 information of a prior event, the prior event should not be deleted. 1370 Instead, a pointer to the entry with the new information should be 1371 placed in the old entry. Readers of this file should also sanity check 1372 older entries before relying on them blindly. Authors of new entries 1373 should write them with this in mind. 1374 1375 ZFS notes 1376 --------- 1377 When upgrading the boot ZFS pool to a new version, always follow 1378 these two steps: 1379 1380 1.) recompile and reinstall the ZFS boot loader and boot block 1381 (this is part of "make buildworld" and "make installworld") 1382 1383 2.) update the ZFS boot block on your boot drive 1384 1385 The following example updates the ZFS boot block on the first 1386 partition (freebsd-boot) of a GPT partitioned drive ada0: 1387 "gpart bootcode -p /boot/gptzfsboot -i 1 ada0" 1388 1389 Non-boot pools do not need these updates. 1390 1391 To build a kernel 1392 ----------------- 1393 If you are updating from a prior version of FreeBSD (even one just 1394 a few days old), you should follow this procedure. It is the most 1395 failsafe as it uses a /usr/obj tree with a fresh mini-buildworld, 1396 1397 make kernel-toolchain 1398 make -DALWAYS_CHECK_MAKE buildkernel KERNCONF=YOUR_KERNEL_HERE 1399 make -DALWAYS_CHECK_MAKE installkernel KERNCONF=YOUR_KERNEL_HERE 1400 1401 To test a kernel once 1402 --------------------- 1403 If you just want to boot a kernel once (because you are not sure 1404 if it works, or if you want to boot a known bad kernel to provide 1405 debugging information) run 1406 make installkernel KERNCONF=YOUR_KERNEL_HERE KODIR=/boot/testkernel 1407 nextboot -k testkernel 1408 1409 To just build a kernel when you know that it won't mess you up 1410 -------------------------------------------------------------- 1411 This assumes you are already running a CURRENT system. Replace 1412 ${arch} with the architecture of your machine (e.g. "i386", 1413 "arm", "amd64", "ia64", "pc98", "sparc64", "powerpc", "mips", etc). 1414 1415 cd src/sys/${arch}/conf 1416 config KERNEL_NAME_HERE 1417 cd ../compile/KERNEL_NAME_HERE 1418 make depend 1419 make 1420 make install 1421 1422 If this fails, go to the "To build a kernel" section. 1423 1424 To rebuild everything and install it on the current system. 1425 ----------------------------------------------------------- 1426 # Note: sometimes if you are running current you gotta do more than 1427 # is listed here if you are upgrading from a really old current. 1428 1429 <make sure you have good level 0 dumps> 1430 make buildworld 1431 make kernel KERNCONF=YOUR_KERNEL_HERE 1432 [1] 1433 <reboot in single user> [3] 1434 mergemaster -Fp [5] 1435 make installworld 1436 mergemaster -Fi [4] 1437 make delete-old [6] 1438 <reboot> 1439 1440 To cross-install current onto a separate partition 1441 -------------------------------------------------- 1442 # In this approach we use a separate partition to hold 1443 # current's root, 'usr', and 'var' directories. A partition 1444 # holding "/", "/usr" and "/var" should be about 2GB in 1445 # size. 1446 1447 <make sure you have good level 0 dumps> 1448 <boot into -stable> 1449 make buildworld 1450 make buildkernel KERNCONF=YOUR_KERNEL_HERE 1451 <maybe newfs current's root partition> 1452 <mount current's root partition on directory ${CURRENT_ROOT}> 1453 make installworld DESTDIR=${CURRENT_ROOT} -DDB_FROM_SRC 1454 make distribution DESTDIR=${CURRENT_ROOT} # if newfs'd 1455 make installkernel KERNCONF=YOUR_KERNEL_HERE DESTDIR=${CURRENT_ROOT} 1456 cp /etc/fstab ${CURRENT_ROOT}/etc/fstab # if newfs'd 1457 <edit ${CURRENT_ROOT}/etc/fstab to mount "/" from the correct partition> 1458 <reboot into current> 1459 <do a "native" rebuild/install as described in the previous section> 1460 <maybe install compatibility libraries from ports/misc/compat*> 1461 <reboot> 1462 1463 1464 To upgrade in-place from stable to current 1465 ---------------------------------------------- 1466 <make sure you have good level 0 dumps> 1467 make buildworld [9] 1468 make kernel KERNCONF=YOUR_KERNEL_HERE [8] 1469 [1] 1470 <reboot in single user> [3] 1471 mergemaster -Fp [5] 1472 make installworld 1473 mergemaster -Fi [4] 1474 make delete-old [6] 1475 <reboot> 1476 1477 Make sure that you've read the UPDATING file to understand the 1478 tweaks to various things you need. At this point in the life 1479 cycle of current, things change often and you are on your own 1480 to cope. The defaults can also change, so please read ALL of 1481 the UPDATING entries. 1482 1483 Also, if you are tracking -current, you must be subscribed to 1484 freebsd-current@freebsd.org. Make sure that before you update 1485 your sources that you have read and understood all the recent 1486 messages there. If in doubt, please track -stable which has 1487 much fewer pitfalls. 1488 1489 [1] If you have third party modules, such as vmware, you 1490 should disable them at this point so they don't crash your 1491 system on reboot. 1492 1493 [3] From the bootblocks, boot -s, and then do 1494 fsck -p 1495 mount -u / 1496 mount -a 1497 cd src 1498 adjkerntz -i # if CMOS is wall time 1499 Also, when doing a major release upgrade, it is required that 1500 you boot into single user mode to do the installworld. 1501 1502 [4] Note: This step is non-optional. Failure to do this step 1503 can result in a significant reduction in the functionality of the 1504 system. Attempting to do it by hand is not recommended and those 1505 that pursue this avenue should read this file carefully, as well 1506 as the archives of freebsd-current and freebsd-hackers mailing lists 1507 for potential gotchas. The -U option is also useful to consider. 1508 See mergemaster(8) for more information. 1509 1510 [5] Usually this step is a noop. However, from time to time 1511 you may need to do this if you get unknown user in the following 1512 step. It never hurts to do it all the time. You may need to 1513 install a new mergemaster (cd src/usr.sbin/mergemaster && make 1514 install) after the buildworld before this step if you last updated 1515 from current before 20130425 or from -stable before 20130430. 1516 1517 [6] This only deletes old files and directories. Old libraries 1518 can be deleted by "make delete-old-libs", but you have to make 1519 sure that no program is using those libraries anymore. 1520 1521 [8] In order to have a kernel that can run the 4.x binaries needed to 1522 do an installworld, you must include the COMPAT_FREEBSD4 option in 1523 your kernel. Failure to do so may leave you with a system that is 1524 hard to boot to recover. A similar kernel option COMPAT_FREEBSD5 is 1525 required to run the 5.x binaries on more recent kernels. And so on 1526 for COMPAT_FREEBSD6 and COMPAT_FREEBSD7. 1527 1528 Make sure that you merge any new devices from GENERIC since the 1529 last time you updated your kernel config file. 1530 1531 [9] When checking out sources, you must include the -P flag to have 1532 cvs prune empty directories. 1533 1534 If CPUTYPE is defined in your /etc/make.conf, make sure to use the 1535 "?=" instead of the "=" assignment operator, so that buildworld can 1536 override the CPUTYPE if it needs to. 1537 1538 MAKEOBJDIRPREFIX must be defined in an environment variable, and 1539 not on the command line, or in /etc/make.conf. buildworld will 1540 warn if it is improperly defined. 1541FORMAT: 1542 1543This file contains a list, in reverse chronological order, of major 1544breakages in tracking -current. It is not guaranteed to be a complete 1545list of such breakages, and only contains entries since September 23, 2011. 1546If you need to see UPDATING entries from before that date, you will need 1547to fetch an UPDATING file from an older FreeBSD release. 1548 1549Copyright information: 1550 1551Copyright 1998-2009 M. Warner Losh. All Rights Reserved. 1552 1553Redistribution, publication, translation and use, with or without 1554modification, in full or in part, in any form or format of this 1555document are permitted without further permission from the author. 1556 1557THIS DOCUMENT IS PROVIDED BY WARNER LOSH ``AS IS'' AND ANY EXPRESS OR 1558IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED 1559WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE 1560DISCLAIMED. IN NO EVENT SHALL WARNER LOSH BE LIABLE FOR ANY DIRECT, 1561INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES 1562(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR 1563SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 1564HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, 1565STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING 1566IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 1567POSSIBILITY OF SUCH DAMAGE. 1568 1569Contact Warner Losh if you have any questions about your use of 1570this document. 1571 1572$FreeBSD$ 1573