Age | Commit message (Collapse) | Author | |
---|---|---|---|
2001-10-28 | duh, don't forget cdev entries for char device sabtty (It's been a rough week) | Jason Wright | |
2001-10-28 | oops, don't forget sab entries here too. | Jason Wright | |
2001-10-28 | sab* and sabtty* (commented out for now until console stuff is done) | Jason Wright | |
2001-10-28 | SAB82532 driver (missing console stuff, but working as a generic tty | Jason Wright | |
device). Based on datasheet from Infineon (another datasheet with non-trivial errors) and info from the linux driver for same chip. | |||
2001-10-28 | Handle RB_TIMEBAD in boot(). | Miod Vallat | |
2001-10-28 | Use the same pipeline flush instruction everywhere. | Miod Vallat | |
2001-10-28 | Define kernel_pmap only if _KERNEL defined. | Miod Vallat | |
2001-10-28 | Let 188-only kernels compile. | Miod Vallat | |
2001-10-28 | I have nothing against stack checks at clock ints, as long as they are | Miod Vallat | |
gramatically correct and only there if DEBUG is defined. | |||
2001-10-28 | Prune more old stuff | Miod Vallat | |
2001-10-28 | Sprinkle some assertions in the buffer code. | Artur Grabowski | |
Add a new DEBUG function "buf_print" that prints the contents of struct buf. | |||
2001-10-27 | remove unused timeout in lockinit() per art@'s idea. | Michael Shalayeff | |
fix the init state handling on failure; reported by nate@. | |||
2001-10-27 | Every file must have a license blob, even if the blob is larger than the file. | Artur Grabowski | |
2001-10-27 | permit compiling of non-pci kernels containing ahc | Theo de Raadt | |
2001-10-26 | sync | Nathan Binkert | |
2001-10-26 | MCT USB-232 interface | Nathan Binkert | |
from S@mSmith.net | |||
2001-10-26 | Unbreak. | Artur Grabowski | |
2001-10-26 | - every new fd created by falloc() is marked as larval and should not be used | Artur Grabowski | |
any anyone. Every caller of falloc matures the fd when it's usable. - Since every lookup in the fd table must now check this flag and all of them do the same thing, move all the necessary checks into a function - fd_getfile. | |||
2001-10-26 | Don't bomb if isadma is not configured. | Artur Grabowski | |
2001-10-26 | Remove unused #define INUSE. It was rendered superfluous by the | Kenneth R Westerback | |
move to pools in SCSI layer. | |||
2001-10-26 | - split fdalloc into two functions. fdalloc now returns ENOSPC if it | Artur Grabowski | |
would have to grow the table and fdexpand that grows the table. Since fdexpand can sleep we have to restart all operations if we have to call it. - dup2 changed so that finishdup frees the destination descriptor. - unp_externalize is a completly rewritten version from NetBSD. Changes mostly inspired by NetBSD. | |||
2001-10-26 | avoid divide-by-zero when the specified bandwidth is less than 8bps. | Kenjiro Cho | |
PR kernel/2150 | |||
2001-10-26 | Typo in comment. | Artur Grabowski | |
2001-10-26 | Allocate an appropriate number of cbd's for each discovered LUN | Kenneth R Westerback | |
at probe time, rather than allocating them dynamically as SCSI commands are started. This should eliminate one possible way of calling bus_dmamem_map() while in interrupt context. Potential problem spotted by Art@. Inspired by changes to achieve same effect in NetBSD by bouyer@. | |||
2001-10-26 | First cut at a port of isadma and floppy driver. ok art@ | Nathan Binkert | |
From NetBSD via jay@rootaction.net | |||
2001-10-26 | spaces to tabs | Nathan Binkert | |
2001-10-26 | fix comment | Nathan Binkert | |
2001-10-26 | Fix a problem with the probe message being printed for cards with no | Kenneth R Westerback | |
RAM. A card that did not have RAM was causing a probe message with no terminating '\n', but with a dangling ', '. Problem noted by Todd T. Fries. | |||
2001-10-25 | implement "the other" pci interface for wavelans, found on intersil | Michael Shalayeff | |
mini-pci cards. inspired by the netbsd's if_wi_pci.c . rename WI_COR_* into WI_PLX_COR_*, per millert@'s suggestion. tested by millert@ for the plx-based cards. | |||
2001-10-25 | add an ali1543 and fix amd756 icu drivers | Michael Shalayeff | |
2001-10-25 | match on corega pcc-td | Michael Shalayeff | |
2001-10-25 | match on corega pccb-11 | Michael Shalayeff | |
2001-10-25 | regen | Michael Shalayeff | |
2001-10-25 | add a couple of corega cards, from netbsd | Michael Shalayeff | |
2001-10-25 | regen | Michael Shalayeff | |
2001-10-25 | add intersil mini-pci wlan; from netbsd | Michael Shalayeff | |
2001-10-25 | add prism2.5 mini-pci nic id | Michael Shalayeff | |
2001-10-25 | match on gemtek | Michael Shalayeff | |
2001-10-25 | regen | Michael Shalayeff | |
2001-10-25 | add gemtek and symbol wlans; from netbsd | Michael Shalayeff | |
2001-10-25 | darkblack@networking-center.org says it should be apostrophe instead of ↵ | Michael Shalayeff | |
grave in the _es map | |||
2001-10-25 | ddb entry support using usb (console) keyboard. | Dale Rahn | |
Do not send characters directly from usb interrupt handler for console keyboard. entering ddb from within the usb interrupt handler is _bad_. Instead delay until next timeout check and deliver characters then. Tested on mappc. From NetBSD. | |||
2001-10-25 | If a usb keyboard is detached, check if the intrpipe is still active. | Dale Rahn | |
Console keyboard will still be active and must be shut down for successful detach. This change and previous change to wskbd.c both from NetBSD. Tested by miod@ and myself. Hot plug/unplug on USB console keyboard now works on macppc. (this and wskbd.c may be errata candidates). | |||
2001-10-25 | If the console keyboard goes away, reinit wskbd_console_device. | Dale Rahn | |
Will allow future console keyboard attaches to occur. | |||
2001-10-25 | Allow an empty cd to be opened (raw device/whole disk) primarily to | Dale Rahn | |
allow empty CD caddies to be ejected. Original diff from Alexander Guy. "pretty much straight from NetBSD" Addition to allow eject (mt) to eject an empty tray. ok csapuntz@ | |||
2001-10-24 | Print intrstr, not dv_xname. mickey@ ok. | Hakan Olsson | |
2001-10-24 | Use macros from sys/disklabel.h instead of custom ones with slightly | Todd C. Miller | |
different (and thus confusing) semantics. | |||
2001-10-24 | Protect against deranged fabric name servers. | mjacob | |
Correct the # of output mailboxes for EXECUTE IOCB A64. Comment out some redundant initialization to zero. If we get ISP_QUEUES_FULL status, remember to actually set SCSI_QFULL since the QLogic f/w, on some cards, doesn't do so. Grumble. | |||
2001-10-24 | keep up with the joneses (track other OS) | mjacob | |
2001-10-24 | update firmware | mjacob | |