summaryrefslogtreecommitdiffstats
path: root/UPDATING
Commit message (Collapse)AuthorAgeFilesLines
...
* Rework the 'make -n -n' feature such that '-n' recurses and '-N' does not.bdrewery2015-10-171-0/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | Bmake has a documented feature of '-N' to skip executing commands which is specifically intended for debugging top-level builds and not recursing into sub-directories. This matches the older 'make -n' behavior we added which made '-n -n' the recursing target and '-n' a non-recursing target. Removing the '-n -n' feature allows the build to work as documented in the bmake manpage with '-n' and '-N'. The older '-n -n' feature was also not documented anywhere that I could see. Note that the ${_+_} var is still needed as currently bmake incorrectly executes '+' commands when '-N' is specified. The '-n' and '-n -n' features were broken for several reasons prior to this. r251748 made '_+_' never expand with '-n -n' which resulted in many sub-directories not being visited until fixed 2 years later in r288391, and many targets were given .MAKE over the past few years which resulted in non-sub-make commands, such as rm and ln and mtree, to be executed. This should also allow removing some indirection hacks in bsd.subdir.mk and other cases of .USE that have a .MAKE by using '+'. Sponsored by: EMC / Isilon Storage Division Discussed on: arch@ (mostly silence)
* Fix ZFS ABI compat shims for `zfs receive` after r289362.mav2015-10-171-6/+0
| | | | Difference appeared much less drammatic then seemed originally.
* Bump version and add notice about incompatibility introduced by resumablemav2015-10-161-0/+6
| | | | send/receive support in ZFS.
* Rewrap UPDATING entry from r265422 to 80 columnsemaste2015-10-131-2/+2
|
* If world is built with a custom sendmail.cf, use it for the distributionpeter2015-10-121-0/+10
| | | | | | | | | | | | | target. This is the feeder for mergemaster / etcupdate. This change makes installworld/mergemaster/etcupdate behave the same regardless of whether SENDMAIL_MC or SENDMAIL_CF is used. If you use a custom SENDMAIL_MC/CF in make.conf and excluded it from mergemaster.rc/etcupdate.conf to work around the conflicts, you may wish to revert that or change it from 'ignore' to 'always install'. If you do not use a custom SENDMAIL_MC/CF, there should be no change in behavior.
* Remove compatibility shims for legacy ATA device names.mav2015-10-111-0/+6
| | | | | We got new ATA stack in FreeBSD 8.x, switched to it at 9.x, completely removed old stack at 10.x, so at 11.x it is time to remove compat shims.
* Update dates in UPDATING and ObsoleteFiles.inc.dim2015-10-061-1/+1
|
* Prepare for merging back to head.dim2015-10-051-4/+4
|
* Merge ^/head r288126 through r288196.dim2015-09-241-0/+13
|\
| * Correct UPDATING entry dateemaste2015-09-241-1/+1
| |
| * Install kernel debug data under /usr/lib/debugemaste2015-09-241-0/+13
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This avoids needing a large boot partition / file system in order to accommodate multiple kernels, and provides consistency with userland debug. This also simplifies the process of moving kernel debug files to a separate package and installing them on demand. In addition, change kernel debug file extension to .debug, to match userland debug files. When using the supported kernel installation method the /usr/lib/debug/boot/kernel directory will be renamed (to kernel.old) as is done with /boot/kernel. Developers wishing to maintain the historical behavior of installing debug files in /boot/kernel/ can set KERN_DEBUGDIR="" in src.conf(5). Reviewed by: bdrewery, brooks, imp, markj Relnotes: yes Sponsored by: The FreeBSD Foundation Differential Revision: https://reviews.freebsd.org/D1006
* | Merge ^/head r286858 through r287489.dim2015-09-051-0/+13
|\ \ | |/
| * Add reminder to run etcupdate or mergemaster to get updatedglebius2015-08-291-0/+8
| | | | | | | | | | | | rc.d scripts for wireless. Poked by: adrian
| * pf: Remove support for 'scrub fragment crop|drop-ovl'kp2015-08-271-0/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | The crop/drop-ovl fragment scrub modes are not very useful and likely to confuse users into making poor choices. It's also a fairly large amount of complex code, so just remove the support altogether. Users who have 'scrub fragment crop|drop-ovl' in their pf configuration will be implicitly converted to 'scrub fragment reassemble'. Reviewed by: gnn, eri Relnotes: yes Differential Revision: https://reviews.freebsd.org/D3466
* | Merge ^/head r286697 through r286857.dim2015-08-171-0/+20
|\ \ | |/
| * Add DEV_RANDOM pseudo-option and use it to "include out" random(4)markm2015-08-171-0/+15
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | if desired. Retire randomdev_none.c and introduce random_infra.c for resident infrastructure. Completely stub out random(4) calls in the "without DEV_RANDOM" case. Add RANDOM_LOADABLE option to allow loadable Yarrow/Fortuna/LocallyWritten algorithm. Add a skeleton "other" algorithm framework for folks to add their own processing code. NIST, anyone? Retire the RANDOM_DUMMY option. Build modules for Yarrow, Fortuna and "other". Use atomics for the live entropy rate-tracking. Convert ints to bools for the 'seeded' logic. Move _write() function from the algorithm-specific areas to randomdev.c Get rid of reseed() function - it is unused. Tidy up the opt_*.h includes. Update documentation for random(4) modules. Fix test program (reviewers, please leave this). Differential Revision: https://reviews.freebsd.org/D3354 Reviewed by: wblock,delphij,jmg,bjk Approved by: so (/dev/random blanket)
| * Roll WITHOUT_ELFTOOLCHAIN_TOOLS into WITHOUT_TOOLCHAINemaste2015-08-131-0/+5
| | | | | | | | | | | | | | | | | | | | | | The option was added only to ease the transition from GNU Binutils to ELF Tool Chain tools, and that process is now complete (for the viable replacements). Noting the removal in UPDATING is sufficient as we have not shipped a release with the option. Reviewed by: brooks Sponsored by: The FreeBSD Foundation Differential Revision: https://reviews.freebsd.org/D3240
* | Merge ^/head r286422 through r286684.dim2015-08-121-0/+22
|\ \ | |/
| * Document the change in polarity of the uart(4) PPS capture.ian2015-08-101-0/+14
| |
| * Add a new group named 'video' with the id of 44. And make drm createkwm2015-08-091-0/+8
| | | | | | | | | | | | | | | | | | | | | | devices in /dev/dri/ with this new group. This will allow ports and users to more easily access to these devices for OpenGL and OpenCL support. Reviewed by: dumbbell@ Approved by: dumbbell@ Differential Revision: https://reviews.freebsd.org/D1260
* | Merge ^/head r285924 through r286421.dim2015-08-071-2/+31
|\ \ | |/
| * Remove guards around overwriting loader.rc and menu.rcallanjude2015-08-061-0/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | There have been .local version of each for user modifications for some time This allows users to receive future updates to these files PR: 183765 Submitted by: Bertram Scharpf, Nikolai Lifanov (patch) Reviewed by: dteske, loos, eadler Approved by: bapt (mentor) MFC after: 1 month Relnotes: yes Sponsored by: ScaleEngine Inc. Differential Revision: https://reviews.freebsd.org/D3176
| * Remove old GNU Binutils tools now provided by ELF Tool Chainemaste2015-08-051-1/+6
| | | | | | | | | | | | Reviewed by: bapt, brooks Sponsored by: The FreeBSD Foundation Differential Revision: https://reviews.freebsd.org/D3238
| * Clarify historical practice of not removing old entries. Add entry forimp2015-07-291-1/+12
| | | | | | | | | | stable/10 branch that was forgotten when it was created. Update end date to be correct.
| * Correct typo in UPDATING messagesmh2015-07-281-1/+1
| | | | | | | | | | MFC after: 3 days Sponsored by: Multiplay
| * Add warning about low KSTACK_PAGES for ZFS usesmh2015-07-281-0/+8
| | | | | | | | | | | | | | | | | | As ZFS requires a more kernel stack pages than is the default on some architectures e.g. i386, warn if KSTACK_PAGES is less than ZFS_MIN_KSTACK_PAGES (which is 4 at the time of writing). MFC after: 3 days Sponsored by: Multiplay
* | Merge ^/head r285341 through r285792.dim2015-07-221-5/+5
|\ \ | |/
| * Clean up some trailing whitespace.markm2015-07-191-5/+5
| |
* | Merge ^/head r285153 through r285283.dim2015-07-081-0/+14
|\ \ | |/
| * Add warning about change of behavior for sendmail 8.15.2 under FreeBSD 11gshapiro2015-07-071-0/+14
| | | | | | | | with regards to IPv6 address representation in configuration/maps/rulesets.
* | Merge ^/head r284737 through r285152.dim2015-07-041-16/+38
|\ \ | |/
| * Huge cleanup of random(4) code.markm2015-06-301-0/+35
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * GENERAL - Update copyright. - Make kernel options for RANDOM_YARROW and RANDOM_DUMMY. Set neither to ON, which means we want Fortuna - If there is no 'device random' in the kernel, there will be NO random(4) device in the kernel, and the KERN_ARND sysctl will return nothing. With RANDOM_DUMMY there will be a random(4) that always blocks. - Repair kern.arandom (KERN_ARND sysctl). The old version went through arc4random(9) and was a bit weird. - Adjust arc4random stirring a bit - the existing code looks a little suspect. - Fix the nasty pre- and post-read overloading by providing explictit functions to do these tasks. - Redo read_random(9) so as to duplicate random(4)'s read internals. This makes it a first-class citizen rather than a hack. - Move stuff out of locked regions when it does not need to be there. - Trim RANDOM_DEBUG printfs. Some are excess to requirement, some behind boot verbose. - Use SYSINIT to sequence the startup. - Fix init/deinit sysctl stuff. - Make relevant sysctls also tunables. - Add different harvesting "styles" to allow for different requirements (direct, queue, fast). - Add harvesting of FFS atime events. This needs to be checked for weighing down the FS code. - Add harvesting of slab allocator events. This needs to be checked for weighing down the allocator code. - Fix the random(9) manpage. - Loadable modules are not present for now. These will be re-engineered when the dust settles. - Use macros for locks. - Fix comments. * src/share/man/... - Update the man pages. * src/etc/... - The startup/shutdown work is done in D2924. * src/UPDATING - Add UPDATING announcement. * src/sys/dev/random/build.sh - Add copyright. - Add libz for unit tests. * src/sys/dev/random/dummy.c - Remove; no longer needed. Functionality incorporated into randomdev.*. * live_entropy_sources.c live_entropy_sources.h - Remove; content moved. - move content to randomdev.[ch] and optimise. * src/sys/dev/random/random_adaptors.c src/sys/dev/random/random_adaptors.h - Remove; plugability is no longer used. Compile-time algorithm selection is the way to go. * src/sys/dev/random/random_harvestq.c src/sys/dev/random/random_harvestq.h - Add early (re)boot-time randomness caching. * src/sys/dev/random/randomdev_soft.c src/sys/dev/random/randomdev_soft.h - Remove; no longer needed. * src/sys/dev/random/uint128.h - Provide a fake uint128_t; if a real one ever arrived, we can use that instead. All that is needed here is N=0, N++, N==0, and some localised trickery is used to manufacture a 128-bit 0ULLL. * src/sys/dev/random/unit_test.c src/sys/dev/random/unit_test.h - Improve unit tests; previously the testing human needed clairvoyance; now the test will do a basic check of compressibility. Clairvoyant talent is still a good idea. - This is still a long way off a proper unit test. * src/sys/dev/random/fortuna.c src/sys/dev/random/fortuna.h - Improve messy union to just uint128_t. - Remove unneeded 'static struct fortuna_start_cache'. - Tighten up up arithmetic. - Provide a method to allow eternal junk to be introduced; harden it against blatant by compress/hashing. - Assert that locks are held correctly. - Fix the nasty pre- and post-read overloading by providing explictit functions to do these tasks. - Turn into self-sufficient module (no longer requires randomdev_soft.[ch]) * src/sys/dev/random/yarrow.c src/sys/dev/random/yarrow.h - Improve messy union to just uint128_t. - Remove unneeded 'staic struct start_cache'. - Tighten up up arithmetic. - Provide a method to allow eternal junk to be introduced; harden it against blatant by compress/hashing. - Assert that locks are held correctly. - Fix the nasty pre- and post-read overloading by providing explictit functions to do these tasks. - Turn into self-sufficient module (no longer requires randomdev_soft.[ch]) - Fix some magic numbers elsewhere used as FAST and SLOW. Differential Revision: https://reviews.freebsd.org/D2025 Reviewed by: vsevolod,delphij,rwatson,trasz,jmg Approved by: so (delphij)
| * Add a note on the second sendmail fix for WeakDH interoperability.gshapiro2015-06-251-0/+4
| |
| * Remove entry about make.conf - no longer relevantsjg2015-06-231-17/+0
| |
* | Merge ^/head r284188 through r284643.dim2015-06-201-0/+58
|\ \ | |/
| * Make mention of make.conf being included earlier and what to do about it.sjg2015-06-161-0/+17
| | | | | | | | Reviewed by: NGie
| * Remove old fmake. It wasn't built by default for some time. Users thatimp2015-06-161-0/+4
| | | | | | | | | | | | | | really need it can find it in the devel/fmake port or pkg install fmake. Note: This commit is orthogonal to the question 'can we fmake buildworld'. Differential Revision: https://reviews.freebsd.org/D2840
| * The fix for the issue described in the 20150614 sendmail entry hasgshapiro2015-06-161-0/+7
| | | | | | | | | | | | been been committed in revision 284436. MFC after: 1 day
| * Remove ALLOW_DEPRECATED_ATF_TOOLS/ATFFILE support from atf.test.mkngie2015-06-151-0/+6
| | | | | | | | | | | | The legacy atf tools were removed in atf 0.20 MFC after: 2 weeks
| * Add a quick (?) note for users who may be having sendmail interoperability ↵gshapiro2015-06-151-0/+24
| | | | | | | | | | | | | | issues due to the recent (FreeBSD-SA-15:10.openssl) OpenSSL change to reject 512 bit DH parameters. Affects 11-CURRENT and 10-STABLE.
* | Merged ^/head r283871 through r284187.dim2015-06-091-0/+9
|\ \ | |/
| * Document the disable of legacy entries in password database in UPDATINGdelphij2015-06-041-0/+9
| | | | | | | | and bump __FreeBSD_version after r283981.
* | Update Makefiles and other build glue for llvm/clang 3.7.0, as of trunkdim2015-05-301-0/+5
|/ | | | r238337.
* Upgrade our copy of clang and llvm to 3.6.1 release.dim2015-05-251-0/+5
| | | | | | | | | | | | | | | | | | | | | | | | This release contains the following cherry-picked revisions from upstream trunk: 226124 226151 226164 226165 226166 226407 226408 226409 226652 226905 226983 227084 227087 227089 227208 227209 227210 227211 227212 227213 227214 227269 227430 227482 227503 227519 227574 227822 227986 227987 227988 227989 227990 228037 228038 228039 228040 228188 228189 228190 228273 228372 228373 228374 228403 228765 228848 228918 229223 229225 229226 229227 229228 229230 229234 229235 229236 229238 229239 229413 229507 229680 229750 229751 229752 229911 230146 230147 230235 230253 230255 230469 230500 230564 230603 230657 230742 230748 230956 231219 231237 231245 231259 231280 231451 231563 231601 231658 231659 231662 231984 231986 232046 232085 232142 232176 232179 232189 232382 232386 232389 232425 232438 232443 232675 232786 232797 232943 232957 233075 233080 233351 233353 233409 233410 233508 233584 233819 233904 234629 234636 234891 234975 234977 235524 235641 235662 235931 236099 236306 236307 Please note that from 3.5.0 onwards, clang and llvm require C++11 support to build; see UPDATING for more information.
* Switch TI platform support code from using FreeBSD's custom-baked DTSgonzo2015-05-221-0/+13
| | | | | | | | | | | | | | | | | | | | | | | files to vendor-provided ones. It should make easier to adopt platform code to new revisions of hardware and to use DTS overlays for various Beaglebone extensions (shields/capes). Original dts filenames were not changed, they're now wrappers over dts files provided by TI. So make sure you update .dtb files on your devices as part of kernel update GPIO addressing was changed: instead of one global /dev/gpioc0 there are per-bank instances of /dev/gpiocX. Each bank has 32 pins so for instance pin 121 on /dev/gpioc0 in old addressing scheme is now pin 25 on /dev/gpioc3 On Pandaboard serial console devices was changed from /dev/ttyu0 to /dev/ttyu2 so you'll have to update /etc/ttys to get login prompt on serial port in multiuser mode. Single user mode serial console should work as-is Differential Revision: https://reviews.freebsd.org/D2146 Reviewed by: rpaulo, ian, Michal Meloun, Svatopluk Kraus
* Add a note about the replacement of GNU groff's soelim(1)bapt2015-05-011-0/+5
|
* Correct date typo in UPDATINGsmh2015-04-291-1/+1
| | | | | | MFC after: 1 month X-MFC-With: r282208 Sponsored by: Multiplay
* Standardise chmod, chflags, chown and chgrp recursive symlink processingsmh2015-04-291-0/+4
| | | | | | | | | | | chmod, chflags, chgrp, chmod and chown now affect symlinks in -R mode as defined in symlink(7); previously symlinks were silently ignored. Differential Revision: https://reviews.freebsd.org/D2316 Reviewed by: jilles MFC after: 1 month Relnotes: yes Sponsored by: Multiplay
* Make it harder to specify invalid LIBADD by causing values withoutbrooks2015-04-161-0/+5
| | | | | | | | corresponding DPADD_<lib> variables to produce a useful error message. Differential Revision: https://reviews.freebsd.org/D2295 Reviewed by: bapt Sponsored by: DARPA, AFRL
* Remove the const qualifier from iconv(3) to comply with POSIX:tijl2015-04-151-0/+4
| | | | | | | | | | http://pubs.opengroup.org/onlinepubs/9699919799/functions/iconv.html Adjust all code that calls iconv. PR: 199099 Exp-run by: antoine MFC after: 2 weeks
OpenPOWER on IntegriCloud