summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Remove couple of 'extern int errno'. (They turned to something funny whendt1999-02-142-8/+2
| | | | <errno.h> included).
* Cosmetic reformating.obrien1999-02-141-3/+8
|
* More appropriate fix to the id_irq read during probensouch1999-02-143-9/+9
|
* From rev. 1.12 of usr.sbin/pstat/pstat.c by phk:dt1999-02-141-3/+6
| | | | | Reflect the fact that we do not swap on the first <dmmax> blocks of a swapdev, to protect disklabels and other such magic stuff.
* Put a convenient marker in rc.conf to show updates.jkh1999-02-146-12/+27
| | | | Better screen saver descriptions.
* Fix incorrect initial state for two variables.jkh1999-02-146-12/+12
|
* Only needed to cast array index from char to unsigned char, did notdillon1999-02-141-3/+3
| | | | | also have to cast it to int. (int)(unsigned char)char_exp -> (unsigned char)char_exp.
* On second thought: do previous fux in pcic.c better.guido1999-02-142-9/+3
| | | | Now we just untimeout the call to inserted() if it exists.
* MF3: add SYSVMSGjkh1999-02-142-6/+10
|
* Somehow, it is possible to get a pcicintr() when in the resume process.guido1999-02-141-1/+8
| | | | | | | This will trigger inserted()) to be called twice which confuses pccardd. Add code to not process pcicitr())'s when in the middle of a resume process. The real insertion of cards and the emulated one in the suspend/resume code really do not mix up.
* MF3: SYSVMSG addition, fluff with release notes.jkh1999-02-147-2/+7
|
* Include all the recent screen savers.jkh1999-02-143-6/+30
|
* Look in correct rc.conf file.jkh1999-02-142-5/+8
| | | | Submitted by: Kevin Street <street@iname.com
* DTRT for acd/wcd backwards compatibilityjkh1999-02-142-20/+28
|
* Update to match ports reality.jkh1999-02-142-10/+10
|
* 4.0-current!jkh1999-02-141-3/+3
|
* The way the interrupt id was calculated was wrong and the lptnsouch1999-02-143-6/+6
| | | | | | | driver was thinking irq was enabled although it wasn't. This case was particular to a no-interrupt static configuration. Reported by: "Norman C. Rice" <nrice@emu.sourcee.com>
* Move lp.4 to man4. It is not i386 dependent.nsouch1999-02-144-10/+16
| | | | | Fix ppbus and lpt declaration ('0' forgotten). Add info about retrieving printer status with 'cat /dev/lpt0'.
* Move away from lpt.h data structure definition that only lpt.c relies on.nsouch1999-02-143-43/+59
| | | | Remove if_plip.c dependency to lpt.h.
* Return approriate errors to userland.nsouch1999-02-143-20/+52
|
* Mention that chflags can fail with EOPNOTSUPP.des1999-02-141-0/+2
|
* Ignore errors from chflags. This makes it possible to make installworlddes1999-02-1411-23/+23
| | | | with DESTDIR set to an NFS-mounted file system.
* Add -e option and change unit to device access in lptcontrol.8nsouch1999-02-142-34/+26
| | | | | | Change unit to device access in lptcontrol.c. Now usage is lptcontrol -i | -p | -e [-d /dev/lpt?]
* Describe manual dialing in greater detail.brian1999-02-142-108/+268
| | | | | Mention more rfc numbers. Don't ``.Nm Ppp'' (just use ``.Nm'').
* Create new lpt manpage with ppbus info and the original lpt info.nsouch1999-02-144-82/+115
| | | | Fix lp.4 ppbus terminology.
* Fix interrupt handling with DMA. Bit nFault was tested in the control reg.nsouch1999-02-143-15/+30
| | | | instead of the status reg. and check ECP mode before considering nFault.
* Rename nlpt to lpt.nsouch1999-02-1411-165/+126
| | | | | Remove from ppi.c the old depreciated module stuff. Print info when if_plip can't use interrupts.
* use minimum length for strcoll tooache1999-02-141-4/+19
|
* Use more sensible defaults.jkh1999-02-141-1/+1
|
* rc.conf vars no longer "dirty" by default.jkh1999-02-143-6/+6
|
* Preserve existing rc.conf contents.jkh1999-02-143-12/+24
|
* lpt -> nlpt and ppbus due to Dag's changes.imp1999-02-141-6/+12
| | | | | | | Submitted by: Joseph Koshy <jkoshy@FreeBSD.ORG> P.S. Forgive the delay on committing this. I've been out of town at a funeral until just a few minutes ago.
* Fix .Fx usage.fenner1999-02-131-2/+2
|
* Make sure correct path is set in upgrade.jkh1999-02-131-1/+6
| | | | Submitted by: Ruslan Ermilov <ru@ucb.crimea.ua>
* Fix the date and add an smbus declarationnsouch1999-02-131-2/+3
|
* Handle correctly iicbus request/release mechanism. Add iicbus allocationnsouch1999-02-132-9/+28
| | | | to the general purpose i/o iic(4) driver.
* Fix smbus allocation and add the alsmb (see alpm(4)) driver.nsouch1999-02-134-18/+29
|
* Add alpm, Acer Aladdin-IV/V/Pro2 Power Management Unit. See alpm(4).nsouch1999-02-133-3/+9
|
* Add alpm.c, Aladdin Power Management SMBus support for the SMBus framework.nsouch1999-02-132-1/+688
| | | | Update pcisupport.c with NALPM and Aladdin USB detection printf.
* Add pci/alpm.c, Aladdin SMBus driver (alpm(4)).nsouch1999-02-131-0/+1
|
* Add alpm.4, Aladdin Power Management SMBus support for the SMBus framework.nsouch1999-02-132-2/+67
|
* Don't pass PSL_NT to vm86 signal handlers. Some vm86/real modebde1999-02-132-4/+16
| | | | | | | | | | | | | | programs, including msdos, set PSL_NT in probes for old cpu types, although PSL_NT doesn't do anything useful in vm86 or real mode. PSL_NT is even less useful in the signal handlers. It just causes T_TSSFLT faults on return from syscalls made by the handlers. These faults are fixed up lazily so that Xsyscall() doesn't have to be slowed down to prevent them. The fault handler recently started complaining about these faults occurring "with interrupts disabled". It should not have, but the complaints pointed to this bug. PR: 9211
* remove collating optimization - not work with substituted charactersache1999-02-131-37/+2
|
* syntax change: allow symbolic names as substitute first argache1999-02-139-16/+18
| | | | use this to substitute <ss>
* syntax change: allow symbolic names as substitute first argache1999-02-133-41/+39
|
* use strcoll() where it is easy to sort german ss and similar properlyache1999-02-131-21/+7
|
* Add "beep" subcommand.kuriyama1999-02-133-3/+82
| | | | | Obtained from: PAO3 Reviewed by: -current list
* Add "beep" ioctl. (#10 is reserved for PIOCSVIR)kuriyama1999-02-134-4/+14
| | | | | Obtained from: PAO3 Reviewed by: -current list
* Fix ufs mounting supportobrien1999-02-132-6/+6
| | | | | PR: 10044 Submitted by: Andre Albsmeier <andre.albsmeier@mchp.siemens.de>
* Add -z option to vmstat to dump data from the zone allocatordillon1999-02-132-12/+77
|
OpenPOWER on IntegriCloud