summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Compress manual pages (if desired) in the obj directory ratherwollman1995-10-026-72/+71
| | | | | | than in the installation destination. Should make release-building substantially faster. The msun Makefile changes simple adapt to the new scheme.
* Make cc1plus smaller and faster as was done for cc1 by linking static.wollman1995-10-021-1/+2
|
* Don't start lines with a period to work around problems in the SGML->nroffwollman1995-10-021-8/+8
| | | | conversion.
* Check for failure to map the interrupt. Not doing so will guarantee thatdg1995-10-022-6/+16
| | | | the machine will wedge later.
* Fixed bug where wrong thing was being checked for NULL before callingdg1995-10-022-4/+4
| | | | | free(), resulting in a panic. This happend whenever an irq had already been allocated by another device (like something on the ISA bus).
* Obtained from: /sys/sys/types.hjulian1995-10-021-43/+82
| | | | | make types.5 match the actual file.. quite easy really as it just includes it..
* actually compiles.. (previous commit was to just get it into the tree)julian1995-10-021-5/+9
|
* Obtained from: well it has a relationship with the LKM code..julian1995-10-021-0/+79
| | | | | | | | | | | | | | This is a place for all things to do with conf.c and conf.h that are not machine specific. Other things that are at present in i386/isa/conf.c might migrate into here.. It's the first small step in cleaning up the device interface to make it more dynamic and to assist in more modular drivers (i.e. both loadable via LKMs and linked in.. e.g able to add a device without having to edit conf.c) this code is not yet used and the whole thing will be conditionally compiled in for a while till proven useful :)
* Just fixed my email..ugen1995-10-011-2/+2
|
* Fix an incorrect cross reference.jfieber1995-10-011-4/+3
| | | | Submitted by: Sean Kelly <kelly@fsl.noaa.gov>
* Support IP Option smatching in grammar and listing.ugen1995-10-011-30/+130
| | | | | TcpSyn option removed and will be shortly repoaced by support of all TCP Flags including syn and ack...
* Well..finally..this is the first part..it should take care ofugen1995-10-012-19/+114
| | | | | | | | matching IP options..Check and test this - i made only a couple of rough tests and this could be buggy.. Ipaccounting can't use IP Options (and i don't see any need to cound packets with specific options either..) More to come...
* Build cc1 nonshared. This actually results in it consuming 40K *less* diskdg1995-10-011-1/+2
| | | | space and improves compile times by a few percent.
* Insert zeroed pages at the head of the zero queue rather than at the tail.dg1995-10-012-4/+4
| | | | | A measurable performance improvement results from the potential for the page to be partially cached when it is eventually used.
* Say so if a sense code is vendor specific.dufault1995-10-011-0/+7
|
* As init/Makefile now 'knows' how to build secure code if necessary, cleanmarkm1995-10-011-7/+1
| | | | out the .if (<building secure>) / .endif
* Make the mkinit internal command issue an #undef for each #define, tojoerg1995-10-011-3/+15
| | | | avoid "duplicate definition" warnings.
* Make this make work the same way as passwd and xntpd. Here it will allowmarkm1995-10-011-0/+7
| | | | secure/sbin/init to be cleaned out, and sbin/Makefile to be tidied up.
* Posixize:joerg1995-10-011-1/+4
| | | | | | | | | | | | | | sh -c [-aCefinuvx] command_string [ command_name [argument ...] ] 1 4.56.3 Options -c Read commands from the command_string operand. Set the value of special parameter 0 (see 3.5.2) from the value of the command_name operand and the positional parameters ($1, $2, etc.) in sequence from the remaining argument operands. Pointed out by: Kaleb Keithly (kaleb@x.org)
* Support the 1542CP by recognizing the new ID. Try to make futuredufault1995-10-011-32/+58
| | | | | | | 1542 revs work by assuming the next few sequential ID codes are new Adaptec boards and enabling them after printing a warning. Conditionalize the informational boot messages with "if (bootverbose)".
* Define CRYPTOBJDIR if secure is being builtmarkm1995-10-011-0/+10
|
* Define CRYPTOBJDIR if secure is being builtmarkm1995-10-011-0/+10
|
* ed/Makefile is able to 'decide' for itself whether to build secure ormarkm1995-10-011-8/+2
| | | | unceumbered ed. Remove the superfluous .if (...) / .endif
* Use the same make technique as passwd and xntpd for the secure ed(1). Thismarkm1995-10-011-2/+9
| | | | | will allow the secure/bin/ed directory to be cleaned out and the bin/Makefile to be cleaned up.
* Two critical bugfixes:dg1995-10-011-61/+61
| | | | | | 1) "obj" was't initialized properly, resulting in an important vm_page_lookup always failing (resulting in a panic). 2) busy pages could be put on the cache queue or freed (resulting in a panic).
* Added a very complete new chapter on printing.jfieber1995-10-015-7/+3893
| | | | | This brings the printed handbook to ~275 pages. Submitted by: Sean Kelly <kelly@fsl.noaa.gov>
* Catch the case where the children can die too soon causing wait3()peter1995-10-011-1/+3
| | | | | | | to return ECHILD, which causes the while loop to run forever. (eg: when accidently running nfsiod on a slow system with a kernel without NFS support...) Obtained from: NetBSD; Frank van den Linden <frank@struis.fwi.uva.nl>
* Cosmetic fix: The usage message was wrong.. One of the commands (mstate)peter1995-10-011-10/+9
| | | | was listed as taking no args, when in fact it needs a port.
* Change non-existent /usr/lib/uucp to /usr/libexec/uucpache1995-09-301-2/+2
|
* Refleache1995-09-303-12/+12
|
* Add sup.jfieber1995-09-301-2/+2
|
* Remove /usr/share/FAQ, add /usr/share/examples/sup.jfieber1995-09-301-9/+3
|
* Remove FAQ.jfieber1995-09-301-1/+1
|
* Move supfile examples from share/FAQ/extras to share/examples/supjfieber1995-09-305-0/+60
|
* Make ATAPI support completely optional - if ATAPI isn't defined, thedg1995-09-301-4/+9
| | | | | original code/algorithm is used completely (with one bugfix). This makes it "safe" to bring these changes into -stable.
* Bring IDE CDROM support up to latest version (1.8a?) from Serge.jkh1995-09-305-118/+231
| | | | Submitted by: vak@cronyx.ru
* Call the -u UCMD command on exit. The command is called with thejoerg1995-09-291-0/+9
| | | | | | | | current unit number, and the "new" unit number of -1. This allows the script to actually deconfigure the SLIP interface (e.g. by running "ifconfig delete") which has been impossible previously. This is most likely a candidate for 2.1, too.
* Remove duplicated targets which now build from main treeache1995-09-293-6/+6
| | | | if available and allowed
* Reword confusing comment.wollman1995-09-291-2/+2
| | | | Requested by: Nate Williams
* Build secure libcrypt if available and allowedache1995-09-291-1/+7
|
* Latest version from Matt Thomas. This version works with the newerdg1995-09-293-497/+1849
| | | | | | DC21041 NICs and with ZNYX cards. Submitted by: Matt Thomas
* Build secure telnet if available and allowedache1995-09-291-1/+3
|
* Build secure telnetd if available and allowedache1995-09-291-0/+2
|
* Build secure libtelnet if available and allowedache1995-09-291-0/+2
|
* Build secure init if available and allowedache1995-09-291-1/+7
|
* Build secure ed if available and allowedache1995-09-291-2/+8
|
* This gets() used \r\n, which is doggish.bde1995-09-291-1/+1
|
* Don't use gets().bde1995-09-294-6/+13
| | | | | | sys_curses/system.c: Don't use gets() better. Neither gets() nor fgets() is appropriate for discarding a line of input.
* Build tools subdir first to reduce bogons caused by inadequate dependencybde1995-09-291-3/+11
| | | | | | | | | | handling for the tools binaries. E.g., after libc.a is changed, it previously took two `make' passes and one `make depend' pass following one of the `make' passes to bring everything up to date. Now one `make' pass followed by one `make depend' pass is sufficient. Dependency handling seems to be difficult to handle cleanly when interdependent things are built in different directories.
* Update to the 1995/09/20 version. Previous version was 1993/12/17.jmz1995-09-2842-198/+626
|
OpenPOWER on IntegriCloud