summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Refer the reader to fdesc(5) for detailed info on the fdesc filesystem.mpp1996-12-141-85/+11
|
* Add fdesc(5) to document the file-descriptor file system.mpp1996-12-143-2/+291
|
* Fix the breakage i've introduced with the EISA slot feature, byjoerg1996-12-141-3/+16
| | | | depending the addition on NEISA > 0.
* Remove the descriptions of the files in /kern and refermpp1996-12-141-40/+8
| | | | | the reader to kernfs(5) so that the information only has to be maintained in one place.
* Forgot to document "hostname". Also add some other misc stuff.mpp1996-12-141-2/+13
|
* Add a kernfs(5) man page to describe the kernel file system.mpp1996-12-142-1/+115
|
* Remove a bad xref, and reference a couple of more useful onesmpp1996-12-142-6/+8
| | | | instead. Closes PR# 1141.
* Update the newfs(8) man page to reflect currentmpp1996-12-141-4/+10
| | | | default values for some options better. Closes PR# 1374.
* Re-order David Nugent's entry to the commiter's section.joerg1996-12-142-3/+7
|
* Remove the detailed description of the files in /procmpp1996-12-141-156/+11
| | | | | | and instead refer the reader to procfs(5) so that the information does not need to be maintained in two places.
* Make procfs(5) the definitive source of information on /proc.mpp1996-12-141-20/+161
| | | | | | | Most of this information was pulled from the man page for mount_procfs(8). Closes PR# 1681.
* Part #2 of the config cleanup. More aggressive, replaced an NIHjoerg1996-12-145-38/+31
| | | | | | | | | | version of strdup() by a macro, killed many calls to strdup(), thus potentially wasting less malloc'ed space (their args were never be free()ed desptie despite of being malloc'ed). Probably still a huge memory leak at all... Also killed two totally useless variables. I've tested it as i could, but wouldn't be surprised if unexpected problems showed up. So watch out this space!
* Round #1 of cleaning up the config(8) mess. This is only the morejoerg1996-12-143-15/+14
| | | | | | | conservative part of the tidyup, like fixing potential buffer overflow conditions. It is believed to be safe to go into 2.2. Pointed out by: lozenko@cc.acnit.ac.ru (Evgeny A. Lozenko)
* Update procfs(5) to reflect reality a little better. Clsoes PR# 2136.mpp1996-12-141-6/+12
|
* Update the list of include files listed in the manmpp1996-12-141-1/+3
| | | | | so that a program using the examples will actually compile. Closes PR# 2143.
* Correct the location of the trek documentation in thempp1996-12-141-1/+1
| | | | SEE ALSO section of the man page. Closes PR# 2009.
* Document the required steps for a successful installation of FreeBSD onjoerg1996-12-141-2/+38
| | | | | | an HP Netserver machine with onboard EISA SCSI. (doc changes are supposed to be mass-merged with 2.2 in the end.)
* Document the required procedure to install on an HP Netserver withjoerg1996-12-141-1/+25
| | | | | on-board EISA AIC7xxx controller, including a pointer to the respective FAQ entry.
* Add a small hack to UserConfig that allows to override the number ofjoerg1996-12-143-6/+34
| | | | | | | | | | | | | | | | EISA slots to probe. This is mainly intended to allow installing the system on an HP Netserver with an on-board AIC7xxx EISA SCSI controller, that is sitting on EISA slot # 11. Documentation updates explaining this hack will follow shortly. Note that this can go away again as soon as the EISA device probing is more intelligent about the address space clash with the PCI address space. 2.2 candidate. Not objected by: freebsd-core :)
* Implement closer-to POSIX mlock semantics. The major difference isdyson1996-12-145-9/+217
| | | | | | | | | | that we do allow mlock to span unallocated regions (of course, not mlocking them.) We also allow mlocking of RO regions (which the old code couldn't.) The restriction there is that once a RO region is wired (mlocked), it cannot be debugged (or EVER written to.) Under normal usage, the new mlock code will be a significant improvement over our old stuff.
* Missing TAILQ mod.dyson1996-12-141-2/+2
|
* Fixed fiddling with the control word. Use the stack space reserved forbde1996-12-142-12/+12
| | | | that purpose instead of space below the stack.
* Somewhere along the way, multiple targets started working and nobodyjkh1996-12-141-52/+1
| | | | noticed.
* Clean up the FPU stack before returning. One stack slot was leaked onbde1996-12-142-2/+4
| | | | | every call. The damage was sometimes limited by other routines using and freeing stack slots that should have been empty to being with.
* Fix some very minor cosmetic cruft I couldn't help tweaking whenjkh1996-12-142-0/+4
| | | | | | | | | I went over the code. Add shortcuts for addUser and addGroup, documenting same. Add a password field for adduser and use no-echo string field for it. This requires my latest libdialog changes (in RELENG_2_2 or -current) to work.
* Add another hateful global to libdialog (what the heck, there are alreadyjkh1996-12-149-25/+94
| | | | | | so many). For now, the only extended attribute implemented is NO ECHO, useful for things like passwords. See TESTS/input2.c for an example. This should go into 2.2.
* General cleanup and new features for 53c875 based cards, especially these1996-12-142-80/+232
| | | | | | | | | | | | | | | | Tekram DC390W/U/F, whose config EEPROM can now be dumped, if the kernel is built with option NCR_TEKRAM_EEPROM. Other changes: - add brackets to expansion of OUTB/W/L macro arguments. - remove unused NCB structure element ns_async - support sync. SCSI offset of 16 (instead of only 8) on 825A and 875 - correctly identify 53c810A and 53c825A chips - preserve SCSI BIOS settings of PCI performance options - remove (already disabled) support for NCR reset because of command timeout - reverse order of reading of SCSI and DMA specific interrupt cause registers - add definition of Tekram config EEPROM contents (not currently used)
* Remove reference to unused variable ncr.ns_async.se1996-12-141-2/+1
|
* Close PR#2211 - ypserv is no longer GPL'd.jkh1996-12-142-10/+2
| | | | Submitted-By: Faried Nawaz <nawaz921@cs.uidaho.edu>
* Add an entry for Ricoh's MO drives.joerg1996-12-141-2/+5
| | | | Submitted by: msmith@atrad.adelaide.edu.au (Michael Smith)
* Merge in NetBSD mods and -Wall cleaning.steve1996-12-1443-491/+908
| | | | Obtained from: NetBSD, me
* -Wall cleaning.steve1996-12-1410-26/+26
|
* Cleanup man page and -Wall cleaning.steve1996-12-144-16/+27
|
* -Wall cleaning and implement -p commandline option.steve1996-12-142-23/+61
| | | | -p mod obtained from: NetBSD
* Merge Lite2 mods, and -Wall cleaning. Unimplemented undelete(2)steve1996-12-142-38/+113
| | | | | cruft is protected by a #ifdef (BSD4_4_LITE) that should be removed when this is supported by the kernel.
* -Wall cleaning.steve1996-12-1441-99/+105
|
* Merge Lite2 mods, cleanup man page, and -Wall cleaning.steve1996-12-142-9/+9
|
* Cleanup man page and -Wall cleaning.steve1996-12-142-6/+6
|
* Merge Lite2 mods, and -Wall cleaning. undelete(2) cruftsteve1996-12-1411-27/+91
| | | | | | not yet implemented is protected by a define (BSD4_4_LITE) that should be removed when this call is supported by the kernel.
* Merge Lite2 mods, and -Wall cleaning.steve1996-12-142-57/+122
|
* Merge Lite2 mods, -Wall cleaning, and show usage ifsteve1996-12-142-12/+22
| | | | | | incorrectly called. Incorrect usage mod obtained from: NetBSD
* Merge Lite2 mods, cleanup man page, and -Wall cleaning.steve1996-12-142-9/+9
|
* Merge Lite2 mods, fix incorrect default string, cleanupsteve1996-12-143-13/+16
| | | | use of .Nm macros, and -Wall cleaning.
* Merge Lite2 mods and -Wall cleaning.steve1996-12-145-20/+26
|
* Cleanup man page and -Wall cleaning.steve1996-12-142-5/+6
|
* Upgrade to version 2.5.4 of flex.steve1996-12-146-67/+108
| | | | | | Inspired by: NetBSD/OpenBSD (I can't remember who I saw do it first, so I'll give them both some inspiration points. :)
* -Wall cleaning.steve1996-12-141-2/+2
|
* Learn to follow the new interface address lists.wollman1996-12-131-2/+2
|
* Convert the interface address and IP interface address structureswollman1996-12-1335-294/+194
| | | | | | to TAILQs. Fix places which referenced these for no good reason that I can see (the references remain, but were fixed to compile again; they are still questionable).
* Fix uninitialized memory read for case insensitive search. Harmless.wosch1996-12-131-1/+4
| | | | submitted by: purify
OpenPOWER on IntegriCloud