summaryrefslogtreecommitdiff
path: root/sys/arch/i386
AgeCommit message (Collapse)Author
1998-08-27ksymsTheo de Raadt
1998-08-27Undo changes which were not discussed.Theo de Raadt
1998-08-27defopt NTPMichael Shalayeff
1998-08-24reorganizekstailey
1998-08-24use new audiokstailey
1998-08-24Add support for /dev/ksyms to arch-specific filesTodd C. Miller
1998-08-20avoid double fault during early boot; rvbTheo de Raadt
1998-08-18bye bye old compatsTheo de Raadt
1998-08-18halt processor when idle if either APM is enabled or PCTR is not enabled;Marco S Hyman
my idle portable: approx 320000 instructions per second my portable during a make build: as high as 21000000 instructions per second
1998-08-18s/dec/dev/ryker
1998-08-17Fix i386 kernel crash so that register context is saved in a better place.Constantine Sapuntzakis
1998-08-16don't map DMA across boundaries; from NetBSD (don't know who).Jason Downs
1998-08-13Fix card list: Robert Earl <rearl@teleport.com>.Jason Downs
1998-08-10no need for microcode deps. aic is fine anywayMichael Shalayeff
1998-08-10use drq2 for record drq in gus configuration instead of flags, reported byNiels Provos
xkill@uq.net.au.
1998-08-10allow -d option to work with -c [change screen]Todd C. Miller
1998-08-10reflect realityTodd C. Miller
1998-08-09Wait for ACK's back from the kbd controller when setting typematic rate.Todd C. Miller
Fixes a hang when starting X windows on pc's with picky kbd controllers.
1998-08-08The world doesn't need 'em.Jason Downs
1998-08-07fix PMS_INT_DISABLETheo de Raadt
1998-08-07fdc is fdc, fd is fdMichael Shalayeff
1998-08-04Change K6 3D to K6-2 (ewww) and set the Intel 686 model 5 as a P2.Jason Downs
1998-07-28Return EINVAL when msg_iovlen or iovcnt <= 0; Make uio_resid unsigned ↵Todd C. Miller
(size_t) and don't return EINVAL if it is < 0 in sys_{read,write}. Remove check for uio_resid < 0 uiomove() now that uio_resid is unsigned and brack remaining panics with #ifdef DIAGNOSTIC. vn_rdwr() must now take a size_t * as its 9th argument so change that and clean up uses of vn_rdwr(). Fixes 549 + more
1998-07-27oops, remove bugus trailing spacesMarco S Hyman
1998-07-27Fix BATT_REMAINING macro so it returns values in minutes (as documented)Marco S Hyman
not seconds
1998-07-24-lcurses, not termcap/termlibTodd C. Miller
1998-07-23brooktree driver, hacked by matthieu. This needs cleaning now that it is in ↵Theo de Raadt
the tree
1998-07-20fix audio attachmentsTheo de Raadt
1998-07-20new exec frameworkMichael Shalayeff
1998-07-19do not force single if rd rootTheo de Raadt
1998-07-19COMPAT_LINUX has to have working KDENABIO and KDDISABIO as well.Jason Downs
1998-07-18add ioctl to apm to set message display to one of three states:Marco S Hyman
1) default: print out all messages. I made this the default so there would be no visable change to people who are used to what they have. 2) disable all messages. This mode is set by apmd when it starts up. I think it is reasonable for apmd to disable the driver display because it is collecting the data and syslogging it. Don't need to see it three and 4 times. 3) print percentage changes. For those who have a _noisy_ machine such as me but don't want to see lots and lots of messages I added a mode where the messages will only be displayed if the estimated battery percenge changes.
1998-07-17make isa_intr_establish() once again not panicTheo de Raadt
1998-07-14add "ctl" and "swap" sample keyboard mappings;Marco S Hyman
document the proper name of keycap file
1998-07-13alloca() is in stand.h noMichael Shalayeff
1998-07-12Fix for the new fast PII-400 machines. This makes them work, and does notTobias Weingartner
seem to have an adverse affect on other machines. Thanks to martin@ for testing on the PII-400 (wish I had one...), and millert@ for testing on his machines (and finding a bug in my original fix). pccons & pckbd need fixing too...
1998-07-12add .OsTheo de Raadt
1998-07-11Roll-back previous commit; someone is working on getting all the boot*Angelos D. Keromytis
pages make some sense.
1998-07-11Rename boot.8 to boot-second-stage.8, so it's possible to get itAngelos D. Keromytis
through man (it conflicted with the boot_$arch.8 page); wsimpson@greendragon.com
1998-07-11+documentationTodd T. Fries
1998-07-09fix support for pci mode 1; mochid@yo.rim.or.jpTheo de Raadt
1998-07-09never set PSL_IOPL at high securelevel (except the one xf86 case, controlled ↵Theo de Raadt
by the aperture driver; problem noted by csapuntz
1998-07-08add eap + sv audio driversTheo de Raadt
1998-07-08reflect MI boot changes; remove dead time_print() prototypeMichael Shalayeff
1998-07-07oops, i did not handle nchrdev correctlyTheo de Raadt
1998-07-07fix chrtoblk() so that it returne ENODEV for entries beyond the end of the tableTheo de Raadt
1998-07-04add nop; fixes Kapok Computer AMI WinBIOS boot sector detection garbageTheo de Raadt
1998-07-03who cares if joystick is attachedTheo de Raadt
1998-07-03add stupid pcib driverTheo de Raadt
1998-06-30In pccngetc, check that dev is not NODEV [NetBSD]Todd C. Miller
Disallow KDENABIO icotl if securelevel > 1 [NetBSD] Only define scrnsv_timeout if PCVT_SCREENSAVER set [NetBSD] Fix setting of keyboard LED's. For some keyboard controllers the keyboard would hang when pcvt set the LED because pcvt did not wait for the ACK to come back. [FreeBSD] Consolidate keyboard type checks into a switch statement. [me]