summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* . Bump .Dd'sphantom2005-02-273-7/+20
| | | | | | . Note POSIX 1003.1-2001 conformation . Add ERRORS section for catgets(3) . Note what catopen(3) returns EINVAL, if catalog is corrupt
* Bring in NetBSD's improvements and cleanups to NLS subsystem, makingphantom2005-02-272-392/+96
| | | | | | | | | | | it type and endian clean and removing of stdio dependency from NLS functions (catalog files now are processed via mmap()) Also following changes were done (against NetBSD version): . If mmap() failed, set errno to EINVAL and do not try to munmap() file Obtained from: NetBSD
* Remove unused now stuff, also set WARNS to 8phantom2005-02-273-898/+1
|
* Bring in NetBSD's improvements and cleanups to NLS subsystem, makingphantom2005-02-271-123/+708
| | | | | | | | | | | | | | | | | | | | | | | | it type and endian clean. Also following changes were done: . Remove of outdated support for generating of include files for NLS catalogs being generated. . Integrate my old code optimizations . ANSI'fy prototypes . Remove duplicate defines, and cleanup includes . Remove first (unused) argument from error() function . Const'ify (gencat now WARNS=8 clean) . Convert corrupt() and nomem() functions to macros . Add *temporary* note what '-new' command line argument is deprecated now (instead of exiting with error message) WARNING: format of generated .cat files is changed! XXX: re-add support for *updating* of .cat files, NetBSD has this functionality disabled Obtained from: NetBSD (mostly)
* Bring in NetBSD's improvements and cleanups to NLS subsystem, makingphantom2005-02-271-30/+79
| | | | | | | | | | | | | | it type and endian clean and removing of stdio dependency from NLS functions (catalog files now are processed via mmap()). Also following changes were done (against NetBSD version): . ANSI'fy prototypes . Mention FreeBSD in comments . Pull in sys/types.h instead of sys/_types.h since some types used here are defined in sys/types.h Obtained from: NetBSD (mostly)
* man page -> manual pagebrueffer2005-02-271-1/+1
|
* The zs(4) driver is superseded by uart(4) and broken in -CURRENT. Removemarius2005-02-274-341/+0
| | | | | | | it from the sparc64 kernel config files and delete its fhc(4) and sbus(4) front-end. Agreed with: marcel
* Fix a stupid bogon from myself, sc->revision wasn't initialized whenmux2005-02-271-10/+10
| | | | | | | | | | | | | testing it to know whether we should enable the 82503 serial mode... Move code to the right location and disallow the use of the 82503 serial mode if the sc->revision field is 0 again. This makes fxp(4) work correctly with ATMEL 350 93C46 cards (3 port 82559 based with a 82555 PHY), as well as with the older ATMEL 220 93C46 (same flavour) and with the even older 10Mbps-only 82557 cards with the 82503 serial interface. Tested by: Andre Albsmeier <andrer@albsmeier.net>, krion MFC after: 2 weeks
* . Static'ize functions exported via function reference variables only.phantom2005-02-2711-117/+112
| | | | | | | | | | | | . Replace inclusion of sys/param.h to sys/cdefs.h and sys/types.h where appropriate. . move _*_init() prototypes to mblocal.h, and remove these prototypes from .c files . use _none_init() in __setrunelocale() instead of duplicating code . move __mb* variables from table.c to none.c allowing us to not to export _none_*() externs, and appropriately remove them from mblocal.h Ok'ed by: tjr
* ANSI'fy prototypesphantom2005-02-273-11/+5
|
* Replace usage of strerror()/strcpy() with strerror_r() here, reducingphantom2005-02-271-4/+2
| | | | | | | number of required operations to get error message and avoiding of strerror's buffer clobbering. Also ANSI'fy prototypes while I'm here
* Zero out the entire "struct __collate_st_chain_pri", or garbageru2005-02-271-12/+8
| | | | | | | | appears in LC_COLLATE files (due to alignment). An alternative would be to bump STR_LEN to 16. (This is in preparation to make LC_COLLATE files architecture independent.)
* ATA -> PATA/SATA, to make clear that this driver supports both kindsbrueffer2005-02-271-3/+3
| | | | | | | of controllers. Inspired by: xy <xy@packetflood.net> MFC after: 3 days
* Don't mention PATA support, all listed controllers are SATA.brueffer2005-02-271-3/+3
| | | | | Inspired by: xy <xy@packetflood.net> MFC after: 3 days
* Add device id for the Ali M1671 host to AGP bridge.cognet2005-02-272-0/+4
|
* Attempt to free any static TLS space used by a shared library when itdfr2005-02-273-0/+24
| | | | | | | is unloaded. This allows applications which load and unload libraries like libGL.so.1 several times to work properly. MFC after: 2 days
* Added the convenience "distribution" target which calls theru2005-02-273-3/+6
| | | | | | target of the same name from src/etc/Makefile with a proper environment, suitable to be used during upgrades and cross- builds.
* Make it clear we no longer support source upgrades fromru2005-02-271-0/+4
| | | | versions prior to 5.3.
* Add missing continuation.ru2005-02-271-2/+2
|
* Unbreak the build. carp_iamatch6 and carp_macmatch6 are not supposed to bemlaier2005-02-271-2/+2
| | | | static as they are used elsewhere.
* As threatened, drop support for source upgrades from pre-5.3.ru2005-02-277-204/+4
| | | | Inspired by: obrien
* command_args is redundant.njl2005-02-271-2/+0
| | | | Submitted by: Pawel Worach
* Due to a couple complaints about C3 failing on an old Compaq Armada andnjl2005-02-271-2/+2
| | | | | a mobile Celeron, disable it by default for the release. We'll have to nail the last few cases later.
* Make a pass through all drivers checking specs for desired behavior onnjl2005-02-274-1/+25
| | | | | | | SMP systems. It appears all drivers except ichss should attach to each CPU and that settings should be performed on each CPU. Add comments about this. Also, add a guard for p4tcc's identify method being called more than once.
* The previous commit was *not* an MFC of any revision! I do intend to MFCgad2005-02-270-0/+0
| | | | it, but one obviously doesn't MFC changes *into* -current!
* Move the AC line checking code into its own function, reducing thenjl2005-02-271-40/+55
| | | | | ifdef __i386__ stuff for APM. Tested as working correctly on i386 and compile-tested on sparc64.
* MFC 1.22: Fix -0 vs -L/-I processing, mainly so that 'xargs -0 -I []' willgad2005-02-271-2/+9
| | | | | | | do something sensible (namely: treat then '\0' as the EOL character, when deciding what "a line" is for -N). Note that -I implies -N. MFC after: 3 days
* Add locking to handle multiple threads getting/setting frequencies at thenjl2005-02-271-15/+62
| | | | | same time. We use an sx lock and serialize the cpufreq device's get/set/levels methods.
* Unbreak !i386 platforms. Only i386 has APM, so don't try to fallbackmarcel2005-02-271-1/+11
| | | | on APM on other platforms.
* Use ~/.login_conf when discussing a user's local file.trhodes2005-02-261-1/+1
| | | | Suggested by: ru
* Correct the minimum RAM requirements for i386 (24 MB to install,bmah2005-02-261-1/+1
| | | | | | | | | | 12 MB to run). These technically reflect 5.3-RELEASE figures, but are probably closer to reality than the older numbers (8MB / 7MB). While here, s/megs/MB/ to consistify our terminology. PR: docs/77304 Submitted by: Ramiro Aceves
* Change the default levels for adaptive mode to 80% and 90%. On a systemnjl2005-02-262-4/+4
| | | | | | with moderate IO going on, system usage can hover around 65-77% even though it would benefit from higher performance. Typically, only truly idle systems pass the 90% mark so only demote then.
* Add some commas and improve grammar.simon2005-02-261-3/+3
| | | | Suggested by: trhodes
* Remove SRCS line since it isn't needed for single-source programs.njl2005-02-261-1/+0
| | | | Pointed out by: ru
* Only provide the dummy, non-atomic atomic_cmpset_32() ifcognet2005-02-261-0/+2
| | | | ARM_HAS_ATOMIC_CMPSET_32 isn't defined.
* Note addition of p4tcc, new sysctls and tunable, update mdoc.njl2005-02-261-11/+25
|
* Add a new option, ARM_CACHE_LOCK_ENABLE (I forgot it in my last commit).cognet2005-02-261-0/+1
|
* Allow users to reject levels below a given frequency (in MHz) via thenjl2005-02-261-1/+17
| | | | | | debug.cpufreq.lowest tunable and sysctl. Some systems seem to have problems with the lowest frequencies so setting this prevents them from being available or used.
* Add a note about new format of LC_CTYPE files.ru2005-02-261-0/+5
|
* Don't bother with cpufreq_register if we're info-only.njl2005-02-261-1/+2
| | | | Suggested by: Jung-uk Kim
* Remove redundant .Pp call.simon2005-02-261-1/+0
| | | | Spotted by: ru
* Added the "buildenv" target, for developers only!ru2005-02-262-1/+5
| | | | | | | CAVEAT: if you run tcsh(1) from within this target, this will reset your PATH making this target mostly useless. Careful! Submitted by: jmg, ru
* New release notes: ng_netflow(4) (+MFC) [1], syslog(3) thread-safebmah2005-02-262-6/+130
| | | | | | | | | (+MFC) [1], no ports/INDEX* in CVS (+MFC), GNOME 2.8.3 (+MFC), KDE 3.3.2 (+MFC), Xorg 6.8.1 (+MFC). Wordsmithing: pkg_version(8) -q. Submitted by: glebius [1]
* - Auto generate device listing for snd_neomagic(4).simon2005-02-263-2/+3
| | | | MFC after: 3 days
* Make the format of LC_CTYPE files architecture independent byru2005-02-269-150/+308
| | | | | | | | | | | | | introducing the disk formats for _RuneLocale and friends. The disk formats do not have (useless) pointers and have 32-bit quantities instead of rune_t and long. (htonl(3) only works with 32-bit quantities, so there's no loss). Bootstrap mklocale(1) when necessary. (Bootstrapping from 4.x would be trivial (verified), but we no longer provide pre-5.3 source upgrades and this is the first commit to actually break it.)
* - Add manual page for snd_neomagic(4).simon2005-02-262-0/+62
| | | | | | PR: docs/78127 Submitted by: Joel Dahl <joel@automatvapen.se> MFC after: 3 days
* Add rc.conf options for powerd (disabled by default) and hook the scriptnjl2005-02-262-1/+3
| | | | up to the build.
* Add an rc script for powerd(8).njl2005-02-261-0/+20
|
* Hook powerd up to the build.njl2005-02-261-0/+1
|
* Import powerd(8), a utility for managing power consumption. Currently, itnjl2005-02-263-0/+526
| | | | | just uses cpufreq(4) but in the future it should also do things like spin down disks. This is based on the work by Colin Percival (called "estctrl").
OpenPOWER on IntegriCloud