summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Special case the error reporting when errno is ENOTDIR or ENOENT.alfred2001-01-141-1/+5
| | | | | | | | This makes "mkdir /nonexistant/foo" complain that /nonexistant doesn't exist rather than /nonexistant/foo which doesn't make much sense. Submitted (in a different form) by: W.H.Scholten <whs@xs4all.nl>
* Remove references to lockinfo.plex.grog2001-01-141-10/+7
| | | | Reported by: dougb
* Argh, remove a local customization that snuck in here.jhb2001-01-142-2/+0
| | | | Noticed by: jasone
* Remove I386_CPU from GENERIC. Support for the 386 seriously pessimizesjhb2001-01-142-2/+2
| | | | | performance on other x86 processors. Custom kernels can still be built that will run on the 386.
* Revert the previous revision now that atomic_store_rel_ptr() actuallyjhb2001-01-142-8/+0
| | | | works.
* Fix the atomic_load_acq() and atomic_store_rel() functions to properlyjhb2001-01-142-10/+86
| | | | | | implement memory fences for the 486+. The 386 still uses versions w/o memory fences as all operations on the 386 are not program ordered. The 386 versions are not MP safe.
* Fix this to be more consistent with similar constructions elsewheredougb2001-01-142-2/+2
|
* add new PC-Card entry, Melco/Buffalo LPC2-CLTsanpei2001-01-143-2/+8
| | | | | | | | ed1 at port 0x300-0x31f irq 3 slot 0 on pccard0 ed1: address 00:40:26:xx:xx:xx, type NE2000 (16 bit) Submitted by: [FreeBSD-users-jp 58182] YANAGAWA Kazuhisa <kjana@os.xaxon.ne.jp>
* Move the process of storing entropy from /dev/random and reseeding withdougb2001-01-146-72/+61
| | | | | | | | | | | | | | | | it at boot time closer to the way we want it to be in the final version. * Move the default directory to /var/db/entropy * Run the entropy saving cron job every 11 minutes. This seems to be a better default, although still bikeshed material. * Feed /dev/random some cheesy "entropy" from various commands and files before the disks are mounted. This gives /dev/random a better chance of running without blocking early. * Move the reseeding with previously stored entropy to the point immediately after the disks are mounted. * Make the harvesting script a little safer in regards to the possibility of accidentally overwriting something other than a regular file.
* struct rangelock: Remove the field 'plex' from the entry. Range locksgrog2001-01-142-7/+3
| | | | | are accessed only via the plex, so there's never any confusion as to the plex number. This value was, as a result, unused.
* format_config: If a subdisk loses its drive (due to a bug which hasgrog2001-01-141-12/+25
| | | | | | | | | | | | | | | not yet been caught), don't save the config with a null drive name (which causes the drive to be renamed "plex" on the next start), put in the text "*invalid*" instead. This is damage control, not a fix. Experienced by: peter Break some long format strings so that they fit in style(9)-sized lines. Remove some "outdentation".
* config_plex: Check that we have specified a plex organization.grog2001-01-141-3/+6
| | | | Tripped over by: "Jeroen C. van Gelderen" <jeroen@vangelderen.org>
* Use ANSI prototype and function definition for dkcksum so that thisimp2001-01-143-9/+6
| | | | | file can be included with C++ again. This appears to have been broken in 1.54 with the introduction of it as an inline function.
* Fix a nasty bug whereby if the package file didn't have a version numberpaul2001-01-141-7/+13
| | | | | | | | then all packages would be deinstalled! The tightening up of version number checking also fixes a bug where a package file such as gtk.tgz would have resulting in gtk-engines being deinstalled.
* Use fstat to check if descriptor 0 is a socket.brian2001-01-144-61/+102
| | | | Suggested by: julian
* Work around the broken atomic_store_rel_ptr() on the i386 arch by justjhb2001-01-142-0/+8
| | | | | | using atomic_cmpset_rel_ptr() instead for _release_lock_quick(). When atomic_store_rel_ptr() is functional and MP safe, then this can be reverted.
* Correct a typo in a product name.dmlb2001-01-131-1/+1
| | | | Pointed Out By: ru
* - Use sched_lock to prevent the mutex name from changing out from under usjhb2001-01-131-3/+5
| | | | | | while we are copying it to the kinfo_proc structure. - Test against p_stat to see if we are blocked on a mutex. - Terminate ki_mtxname with a null char rather than ki_wmesg.
* Fix getsid() to use "=" instead of "==".ben2001-01-131-1/+1
| | | | Not objected to by: audit
* Add 3 new dynamic sysctl's to control the sleep states switched to on ajhb2001-01-132-0/+53
| | | | | | | power button, sleep button, or lid close event. The sysctl's use the ACPI sleep state names S0, S1, S2, S3, S4, S4B, and S5. Reviewed by: iwasaki
* The prototype for cpu_switch() was changed in revision 1.111 ofchris2001-01-131-1/+1
| | | | | | | <sys/proc.h> PR: 24311 Submitted by: Robert Drehmel <robert@gizmo.quizbot.org>
* o Clear up explanations of various entries (includes spelling, grammar,chris2001-01-131-53/+87
| | | | | | | | punctuation, and explanations that are just plain wrong) o Add missing entries o Remove entries for directories that do not exist Submitted by: Rich Morin <rdm@cfcl.com> (for the most part)
* fix typo; file -> filesben2001-01-131-1/+1
| | | | Submitted by: Alexey Dokuchaev <danfe@inet.ssc.nsu.ru>
* Oops, forgotten to add manpage.iwasaki2001-01-131-0/+80
|
* Add manpage for acpiconf.iwasaki2001-01-131-2/+1
| | | | Submitted by: des
* Merged from sys/i386/conf/GENERIC revision from 1.286 to 1.291.nyan2001-01-131-54/+31
|
* Merged from sys/i386/conf/GENERIC.hints revision 1.6 and 1.7.nyan2001-01-131-16/+16
|
* Check __i386__, not i386.nyan2001-01-131-1/+1
|
* Add Truecolor 16 and 32bits support. Note that 24bits modes are notnsouch2001-01-134-35/+251
| | | | | | | | | | | supported since it's not easy to put 3 bytes accross 64Kb windows of memory. This should not be such a problem with linear framebuffers. There is no major interface modification except that the color type becomes u_long instead of byte. So one just need to recompile his application. Approved by: Soren Schmidt <sos@freebsd.dk>
* /Really/ deprecate ConnectionsPerPeriod, ripping out the code for itgreen2001-01-134-102/+2
| | | | and giving a dire error to its lingering users.
* Only install sysinstall.8 if the release/sysinstall directory exists. Thisben2001-01-131-2/+5
| | | | | | | fixes the world for people without src-release. PR: 24122 Submitted by: Steven G. Kargl <kargl@apl.washington.edu>
* The -i option to ln requests user confirmation, not configuration.dannyboy2001-01-132-2/+2
| | | | | PR: 24279 Submitted by: Roelof Osinga <roelof@nisser.com>
* /usr/libexec/cpp -> /usr/bin/cppache2001-01-131-1/+1
| | | | because of new rename to /usr/libexec/cpp0
* New release notes: Linksys Fast Ethernet cards and ed(4) driver flags,bmah2001-01-122-5/+98
| | | | | | | | | | | new API for hardware volume control, VESA S3 framebuffer driver, logging of wrong-interface ARP replies sysctl, NFS client bug fixed, BurnProof(TM) for ATAPI drives, IPFW works with ECN bits, ihfc(4), itjc(4), <sys/selinfo.h>, pthread_* strong references, unified libgcc, SSH bug with X11 forwarding fixed, syslogd(8) and LOG_CONSOLE, rpcgen use of /usr/bin/cpp, rc.syscons, burncd(8) -m and -l, dmesg(a). MFCs noted: aac(4), OpenSSH 2.3.0.
* Properly compute the size of the final block of superblock summary information.mckusick2001-01-121-1/+1
| | | | Submitted by: Ian Dowse <iedowse@maths.tcd.ie>
* man(7) -> mdoc(7).ru2001-01-122-138/+248
|
* Oops, the previous did not work with current mdoc(7).ru2001-01-121-1/+1
|
* mdoc(7) police: Ft/Vt now accept punctuation-type arguments.ru2001-01-1213-30/+31
|
* Reduce diffs (mostly whitespace) to mdocNG.ru2001-01-121-16/+16
| | | | Obtained from: mdocNG through NetBSD
* Make .Ft and .Vt macros accept punctuation characters asru2001-01-121-38/+59
| | | | | | arguments, make .Vt usable outside the SYNOPSIS section. Obtained from: mdocNG (not yet submitted for inclusion)
* Merged from sys/i386/isa/npx.c revision 1.87.kato2001-01-121-17/+17
|
* Merged from sys/i386/i386/machdep.c revisions 1.427 and 1.428.kato2001-01-122-16/+16
|
* Merged from sys/conf/files.i386 revisions 1.342, 1.344, 1.345 and 1.346.kato2001-01-121-5/+12
|
* man(7) -> mdoc(7).ru2001-01-121-266/+433
|
* Fix a bug where pkg_create does not make an md5 entry for the last item insobomax2001-01-121-11/+16
| | | | | | | | | the packing list. Also use switch() instead of zillion "else if ()" and for() loop instead of while() loop for traversing through linked list. MFC candidate. Submitted by: Alec Wolman <wolman@cs.washington.edu>
* Minor mdoc(7) formatting fixes:ru2001-01-121-5/+1
| | | | Removed extraneous .Pp calls and blank lines (mdocNG does not like them).
* Fixed mdoc(7) errors introduced in the previous revision.ru2001-01-121-9/+14
|
* man(7) -> mdoc(7).ru2001-01-121-77/+100
|
* Add manual page for the new itjc ISDN hardware driverhm2001-01-122-1/+71
|
* Small clarification from the driver authorhm2001-01-121-6/+8
| | | | Submitted by: Hans Petter Selasky <hselasky@c2i.net>
OpenPOWER on IntegriCloud