summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Link this against -lcrypt. In the case where the user has no key availablemarkm1997-10-241-2/+2
| | | | | on the keyserver, the local kinit will blow chunks when it tries a crypt(3) and finds it unavailable.
* Make this part of the 'krb' distribution if it is being built as themarkm1997-10-241-0/+1
| | | | Kerberised version.
* Make this part of the 'krb' distribution.markm1997-10-241-0/+1
|
* - Recognize the Cirrus Logic PD6729/6730 PC-Card Controller behind thenate1997-10-241-2/+13
| | | | | | | | PCI bus. [ Re-organized the code to be easier to extend, based on Michael's patch ] Submitted by: Michael Reifenberger <root@totum.plaut.de>
* - Use the definitions found in <i386/isa/isa.h> instead of rolling ournate1997-10-241-6/+7
| | | | | | | | own definition of ISA_HOLE_START. We shouldn't need to include bus/processor specific code in here, but it is required. At least by doing it this way it becomes more obvious where the bogusness is. Obtained from: email with bde
* Remove the stuff we do not use from global scope. Export them again asphk1997-10-241-2/+8
| | | | needed.
* Statizice.phk1997-10-242-42/+48
|
* Pkg_add refused to process package whose packing list contains @exec/@unexecmax1997-10-241-2/+6
| | | | | | | | before any file names. This change makes pkg_add to process those packages if @exec/@unexec commands don't contain any %[fFB]. Also enable @exec/@unexec that have %D if the installation prefix is known to pkg_add. Reviewed by: jkh
* fix mispelling of kldjmg1997-10-241-2/+2
|
* make a couple functions static...jmg1997-10-243-9/+9
| | | | | also change module_register_static to module_register_init as this function initalizes the module for both dynamic and static modules...
* Change defaults to match reality.hoek1997-10-241-15/+17
| | | | PR: docs/3817
* - defined constant ISA_HOLE_START (would be nice to include machine/pmap.h,nate1997-10-231-57/+66
| | | | | | | | | but it has too much baggage). - create a new routine 'unregister_device_interrupt', which is now used instead of having two routines with the same code snippet. - Minor cleanups and commenting. [ No functional changes, just moving things around ]
* Restore back non-interruptable sleep/usleep just redefine them to notache1997-10-232-2/+72
| | | | mix with standard library functions
* Remove private sleep/usleep hacksache1997-10-231-63/+1
|
* - Move the untimeout code call out of the check for pwr_off_pending. Itnate1997-10-231-3/+2
| | | | shouldn't make any difference, but did on a couple of test systems.
* obey internet-draft "draft-stevens-advanced-api-04.txt" for ipv6 defs.itojun1997-10-231-3/+10
|
* Add entries for the Danpex EN-6200P2 and Megahertz XJ4336msmith1997-10-232-2/+26
|
* Fix a potentially disasterous '==' instead of '=' bug.gibbs1997-10-232-6/+6
| | | | Submitted by: John-Mark Gurney <gurney_j@resnet.uoregon.edu>
* Fix various filter problemsbrian1997-10-231-11/+12
| | | | | PR: 4727 Submitted by: Chiharu Shibata <chi@bd.mbn.or.jp>
* Disallow non-root mount. If you want to allow non-root mount, changekato1997-10-232-2/+16
| | | | vfs.usermount into 1 with sysctl.
* Synchronize with sys/i386/isa/syscons.{c,h} revisions 1.235 and 1.35,kato1997-10-232-35/+129
| | | | respectively.
* Synchronize with sys/i386/conf/Makefile.i386 revision 1.103.kato1997-10-232-2/+8
|
* - Fix braino in last commit. (Slow networks should be outlawed!)nate1997-10-231-2/+2
|
* - Back out the last. APM_BROKEN_STATCLOCK doesn't exist in -current.nate1997-10-232-4/+0
|
* Reject unreasonable values passed to CONS_HISTORY ioctl. It did notyokota1997-10-236-78/+252
| | | | | | | | | | | | | | | | | | | check the value and caused kernel panic when a large value was given. - Move the configuration option SC_HISTORY_SIZE from syscons.h to syscons.c. - Define the maximum total number of history lines of all consoles. It is SC_HISTORY_SIZE*MAXCONS or 1000*MAXCONS; whichever is larger. CONS_HISTORY will allow the user to set the history size up to SC_HISTORY_SIZE unconditionally (or the current height of the console if it is larger than SC_HISTORY_SIZE). If the user requests a larger buffer, it will be granted only if the total number of all allocated history lines and the requested number of lines won't exceed the maximum. - Don't free the previous history buffer and leave the history buffer pointer holding a invalid pointer. Set the pointer to NULL first, then free the buffer. PR: bin/4592
* Add (unsigned char) cast to ctype macrosache1997-10-234-38/+82
|
* - When doing suspend/resume, only try to suspend those drivers on activenate1997-10-231-4/+8
| | | | | | | | | | | | | slots. Otherwise, we try to suspend drivers who have been disabled already. [ The only reason the drivers are still on the list is because of race conditions where the card is removed while the driver is in use. We leave the drivers on the slot list (leaving all of their structures in place in case a process is using it) but set it's state to empty so that further uses by the pccard code know not to expect active cards. ]
* Back our V1.36, due to reports of badness. (IRQ's are again allocatednate1997-10-231-1/+1
| | | | | | | from the 'lower' interrupts to the 'higher' interrupts.) We need to find a way to set the interrupt for the controller in the config file. Determined by: handy@sag.space.lockheed.com
* Add (unsigned char) cast to ctype macrosache1997-10-232-21/+21
|
* Add unsigned char cast to ctype macrosache1997-10-231-1/+1
|
* Add more (unsigned char) casts to ctype macrosache1997-10-237-28/+28
| | | | Fix casetable usage in the same manner too
* Rewrote fxp_start() for better clarity and efficiency.dg1997-10-232-202/+202
|
* Add (unsigned char) casts to ctype macrosache1997-10-232-24/+24
|
* Add (unsigned char) cast to all ctype macrosache1997-10-232-37/+37
|
* - Simplify code by removing a variable which was initialized once, nevernate1997-10-232-8/+2
| | | | modified, and was expected to have the initialized value.
* Fix a few typos.jraynard1997-10-221-32/+33
|
* - If APM_BROKEN_STATCLOCK is defined, make sure the statcloock isnate1997-10-222-2/+6
| | | | disabled, don't rely on the flags to set it.
* Back out part of OpenGroup specs about limiting max arg since it may breakache1997-10-222-17/+4
| | | | compatibility.
* Reflect usleep code changes:ache1997-10-221-1/+24
| | | | | Limit max arg Change return type to int
* Change usleep return type from void to int to match OpenGroup specs.ache1997-10-221-1/+1
|
* Changes in spirit of OpenGroup Singe Unix specs:ache1997-10-221-5/+11
| | | | | | 1) Limit max allowed argument to 1000000 2) Change return type from void to int to indicate premature termination (by signal)
* Document EINVAL as a possible return value from open(2).joerg1997-10-221-0/+7
|
* Reject attempts to call open() with an illegal combination of O_RDONLY,joerg1997-10-222-4/+8
| | | | O_WRONLY, O_RDWR.
* Use err(3). Add usage() and prototypes.charnier1997-10-222-53/+56
| | | | Hide reference to trsp(8) that does not exist.
* Use err(3).charnier1997-10-2218-236/+287
| | | | | | | Sync man page and usage string. Strcpy -> strncpy from OpenBSD. -Wall cleaning. Obtained from: OpenBSD
* Fix HDLC logging (actually LogDumpBp()). It was onlybrian1997-10-221-2/+27
| | | | outputting the first mbuf in the chain.
* Put in an initial %VERSREQ field. This will cause existing config(8)'speter1997-10-223-3/+12
| | | | | to give a non-fatal warning about unknown directives, so there is no hurry to rebuild config(8) yet, apart from shutting up the warning.
* For safety's sake, explicitly depend all objects on the configvers.h headerpeter1997-10-221-0/+2
| | | | | to make sure that it's all recompiled even if there is no 'make depend'. This is overkill, but should be one less thing that someone can do wrong.
* Recognize a %VERSREQ=nnnnn string in the system Makefile. Both config(8)peter1997-10-222-2/+22
| | | | | | | | | and the kernel will have a 'config interface version number'. If an incompatable change is made to the kernel that requires a rebuild of config(8) (such as the cam devtab stuff), then the version number would be bumped in both places. If a user neglects to rebuild config, then they will get a nagging (but non-fatal) warning that they need to rebuild config.
* Fix the same leak as in nullfs. Now the lowervp is properly marked inactive.roberto1997-10-212-2/+10
| | | | Reviewed by: phk
OpenPOWER on IntegriCloud