summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Bring clocks(7) into line with mdoc standards.mpp1996-04-071-12/+24
| | | | Reviewed by: joerg
* Use breakpoint() function instead of inline assembler.bde1996-04-072-12/+4
|
* Changed bdb() to breakpoint() and always enable it.bde1996-04-072-68/+60
| | | | Made the style more consistent, especially for the new Pentium functions.
* Use rdtsc() function instead of inline essembler.bde1996-04-072-12/+4
|
* Changed #includes of <i386/include/foo.h> to #includes of <machine/foo.h>.bde1996-04-073-11/+13
|
* Changed #includes of <i386/include/foo.h> to #includes of <machine/foo.h>.bde1996-04-074-13/+12
|
* Removed never-used #includes of <machine/cpu.h>. Many were apparentlybde1996-04-0721-47/+17
| | | | copied from bad examples.
* Removed now-unused #includes of <machine/cpu.h>. They were for bootverbosebde1996-04-0724-60/+27
| | | | being declared in the wrong place.
* Add several entries for ISA PnP cards (from Frank Durda IV), for using the NTroberto1996-04-071-1/+166
| | | | | loader to boot, Jörg answer for slow printers and Dave Walton's answer to hang during vty switches.
* Removed unused declaration of bootverbose.bde1996-04-072-4/+2
|
* systm.h:bde1996-04-072-2/+4
| | | | | | | | | Moved declaration of bootverbose to a better place. It isn't machine-dependent. proc.h: Moved declaration of cpu_fork() to a better place. Only its implementation is machine-dependent.
* Moved declaration of bootverbose to a better place. Externs shouldbde1996-04-071-2/+1
| | | | only be declared in headers.
* Moved declaration of bootverbose to a better place. It isn'tbde1996-04-072-8/+2
| | | | | | | machine-dependent. Moved declaration of cpu_fork() to a better place. Only its implementation is machine-dependent.
* Declared pgrpdump() properly.bde1996-04-071-1/+3
|
* Fixed the ownership and permissions of /dev/io. Rev.1.32 broke rev.1.29.bde1996-04-072-4/+4
|
* Fixed devfs device names and numbers.bde1996-04-073-105/+213
| | | | Fixed handling of unknown CMOS types - don't attach unrecognized devices.
* Cleaned up naming and formatting in recent changes.bde1996-04-071-18/+15
|
* Allow specifying the BIOS drive number. Removed the hd drive type.bde1996-04-076-51/+83
| | | | | | | | | hd essentially wired the FreeBSD drive number to 0 without changing the BIOS drive number. Now the numbers can be specified independently. Replaced the BOOT_HD compile time flag with with BOOT_HD_BIAS. Defining the new flag as 1 should give the same behaviour as defining the old flag as anything. I haven't tested defining these flags.
* Don't generate code for the unused function sleep().bde1996-04-071-1/+3
|
* Removed the 2 remaining calls to sleep().bde1996-04-071-4/+4
|
* Move the "mib" variables out to their own file.phk1996-04-073-136/+177
|
* Use strtoq() instead of strtol() so that large inums, and sizes can bebde1996-04-071-4/+4
| | | | | | | specified. Not fixed: specification of large uids and gids; silent truncation of unrepresentable values.
*-. This commit was generated by cvs2svn to compensate for changes in r15100,joerg1996-04-072-0/+110
|\ \ | | | | | | | | | which included commits to RCS files with non-trunk default branches.
| | * Import the 4.4Lite2 getty into a vendor branch.joerg1996-04-071-0/+54
| | |
| * | Import the 4.4Lite2 getty into a vendor branch.joerg1996-04-072-2/+59
| | |
* | | Make `easy-import' ready for vendor-branch imports.joerg1996-04-071-60/+71
| | | | | | | | | | | | I'm also going to install the new version on freefall.
* | | Add a zero(4) man page to describe /dev/zero. Update null(4) to xrefmpp1996-04-073-1/+59
| | | | | | | | | | | | this new man page.
* | | Some minor cleanup to bring the pccard man pages in linempp1996-04-072-28/+28
| | | | | | | | | | | | with mdoc guidelines.
* | | Correct the rpc.lockd and rpc.statd man pages to not referencempp1996-04-072-4/+4
| | | | | | | | | | | | | | | | | | their path names in the synopsis line (especially since they referenced the wrong path!). Corrected some other minor problems with the rpc.lockd man page.
* | | Fix some typos.mpp1996-04-072-5/+5
| | |
* | | Change ${ENV} -> ${SETENV}. The former coincides with startup fileasami1996-04-071-6/+6
| | | | | | | | | | | | | | | | | | names of bash et al. Submitted by: Thomas Gellekum <thomas@ghpc8.ihf.rwth-aachen.de>
* | | Added proper splnet protection while modifying the interface address list.dg1996-04-071-2/+17
| | | | | | | | | | | | | | | | | | | | | This fixes a panic that occurs when ifconfig ioctl(s) were interrupted by IP traffic at the wrong time - resulting in a NULL pointer dereference. This was originally noticed on a FreeBSD 1.0 system, but the problem still exists in current sources.
* | | Major surgery.jkh1996-04-0750-3684/+2504
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 1. Use new dialog menu hacks (no strings, just arrays of dialogMenuItem structs) so that I can create composite menus with radio/checkbox/... items in them, removing some long-standing UI bogons in various menus. This work isn't finished yet, but will be done in two phases. This is phase one. 2. Remove all the script installation stuff. I never got time to document it, it was arcane and it just complicated much of the code. There are better ways of doing this if I want to do auto-driven installations later. 3. Remove much dead code and otherwise attempt to remove as much historical grot as possible so that this code is easier to hack on. This is also a two-stage process, phase one of which is now complete.
* | | Make this properly respect obj dirs.jkh1996-04-071-35/+37
| | |
* | | Strive for a little more consistency with my examples.jkh1996-04-077-14/+14
| | |
* | | Major cleanups for the pmap code.dyson1996-04-072-364/+152
| | |
* | | Fix a typo.joerg1996-04-071-1/+1
| | | | | | | | | | | | Submitted by: tgm@netcom.com (Thomas G. McWilliams)
* | | Add rplay.joerg1996-04-071-1/+2
| | | | | | | | | | | | Submitted by: Andreas Klemm <andreas@knobel.gun.de>
* | | Fix the reproto.sh script that was broken after my KNFification.joerg1996-04-075-43/+100
| | | | | | | | | | | | Pointed out by: bde
* | | Correct some man page cross references and file location references.mpp1996-04-0731-59/+61
| | |
* | | KNFify the function definitions. It's harder to grep around when thejoerg1996-04-063-32/+50
| | | | | | | | | | | | function names don't start in column 1.
* | | Fix a typo.joerg1996-04-061-2/+2
| | |
* | | Don't immediately give up if a single read() or write() wasn'tjoerg1996-04-061-5/+31
| | | | | | | | | | | | | | | sufficient to transfer all the data from stdin, or to stdout. Working on pipes causes further fragmentation.
* | | Clarify some paths in the man pages.markm1996-04-062-6/+8
| | |
* | | Mention other possible errors that could be caused by the F_[GS]ETOWNjoerg1996-04-061-1/+19
| | | | | | | | | | | | commands.
* | | Correct some cross references and some path names.mpp1996-04-065-9/+9
| | |
* | | Use the correct syntax for checking if /etc/rc.firewall exists.mpp1996-04-061-2/+2
| | |
* | | Add Jake Hamby as the new webmaster.jkh1996-04-061-2/+2
| | |
* | | Here is a patch for a little bug in the WaitForString routine. The problemache1996-04-061-4/+14
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | is when the matched string spans the end of the inbuff. This fix allocates twice the IBSIZE so that it can keep the last and the current text to search in the inbuff so that the match won't fail if it gets truncated by the read. It also warns if the search string is to long and truncates it. Submitted by: Dough Ambrisco <ambrisco@ambrisco.roble.com>
* | | Submitted by: archie@tribe.comjulian1996-04-062-6/+78
| | | | | | | | | | | | | | | | | | allow the user to install using a Numeric GID or UID. this brings it in to line with chgrp and chown, ans is required by some people using FreeBSD in a product.
OpenPOWER on IntegriCloud