summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Use COMPAT_PCI_DRIVER() for registration if it exists. This shouldn'tpeter1999-04-2456-67/+289
| | | | hurt the driver portability to 3.x too much for where drivers are shared.
* Replace the pcidevice_set linker set based configuration mechanism for oldpeter1999-04-244-22/+58
| | | | | | | | | | style pci drivers with a simple one-line change to use a module that registers itself under new-bus and should in theory enable just about all of the pci drivers to be loadable (kldload and loader(8)) but without having the impact of converting the APIs yet. This also fixes the problem of having undefined variables when only new-style pci drivers are present.
* Zap some #if 0 code for wired PCI devices. This will look quite differentpeter1999-04-241-155/+1
| | | | under new-bus.
* More cleanups, tweaks and features.peter1999-04-248-219/+86
| | | | | | | | | | - make this work: options FOO123=456 *without quotes* - grumble (but accept) vector xxxintr, and tty/net/bio/cam flags. - complain if a device is specified twice (eg: 2 x psm0) - don't require quotes around: port IO_COM2 - recognize negative numbers. (ie: options CAM_DEBUG_UNIT=-1) - GC some more unused stuff (we don't have composite disks from config(8)). - various other nits (snprintf paranoia etc)
* Fixed printf format errors on alpha.dt1999-04-241-3/+5
|
* Add missing strings.phk1999-04-241-0/+7
| | | | | | PR: 11285 Submitted by: Chris Costello <chris@calldei.com> Reviewed by: phk
* typo in commentphk1999-04-241-2/+2
| | | | | | PR: 11285 Submitted by: Chris Costello <chris@calldei.com> Reviewed by: phk
* so_linger is in seconds, not in 1/HZache1999-04-241-2/+2
| | | | | PR: 11252 Submitted by: Martin Kammerhofer <dada@sbox.tu-graz.ac.at>
* Changed the type of id_port from short into int to avoid wrongkato1999-04-242-4/+4
| | | | | | | conversion from short to unsigned long which is an argument of bus_alloc_resource. Since the value -1 is used to indicate no port reousece, id_port need to be signed (suggested by Doug Rabson and Peter Wemm.)
* Lite2 bugfixes merge:ache1999-04-241-3/+3
| | | | | | | so_linger is in seconds, not in 1/HZ range checking in SO_*TIMEO was wrong PR: 11252
* Minor nit. It is probably still incorrect, but at least don'tdcs1999-04-241-1/+1
| | | | claim to use i386-specific files on alpha...
* Fix a braino in the v_id wraparound code. Give more (current) detailsphk1999-04-241-9/+17
| | | | | | | in comment. PR: 11307 Spotted by: Ville-Pertti Keinonen <will@iki.fi>
* Move loader.conf.5, while it is still in it's first revision.dcs1999-04-242-3/+3
|
* remove uid switching before login_getpwclass, now done inside libutilache1999-04-241-3/+6
| | | | add gid switching before chdir and comment why it needed
* Add loader.4th man page (worst man page I ever wrote -- reviewsdcs1999-04-243-3/+263
| | | | | are welcomed). Correct a nasty bug in loader.4th before anyone notices, add a couple of features.
* oops, add pwd!=NULL check to previous fixache1999-04-241-11/+17
|
* Switch to user UID/GID before checking/reading its ~/.login_confache1999-04-241-1/+14
| | | | - some NFSes have root read access disabled
* Fix spelling of '#if 0'.dt1999-04-241-1/+1
|
* add MLINKS for two functions used from login_auth.cache1999-04-242-19/+20
| | | | comment out unused functions from login_auth.3
* Drop tty/net/bio/cam interrupt class labels, it's meaningless here now.peter1999-04-243-237/+237
|
* Drop the tty/net/bio/cam interrupt class labels, they are meaninless herepeter1999-04-242-60/+60
| | | | now.
* Use pointer arithmetic as appropriate.dt1999-04-241-2/+2
|
* postpone the sending of IGMP LEAVE msg to after deleting theluigi1999-04-241-2/+8
| | | | | | mc address from the address list. The latter operation on some hardware resets the card, potentially canceling the pending LEAVE pkt.
* Fixed printf format errors on alpha.dt1999-04-243-9/+9
|
* Use pointer arithmetic to do pointer arithmetic.dt1999-04-241-3/+3
|
* Modify the non-i386 version of disable_intr() and enable_intr() so that theydt1999-04-242-6/+6
| | | | don't produce a warning on every use.
* Revert part of the previous commit. Keep the example that shows how thenik1999-04-241-0/+18
| | | | | | "-h" flag is used, but use "chown" in the example instead of "file". Prompted by: bde
* Add an option to disable responses to SAP_GETNEAREST_SERVER requests.jhay1999-04-244-4/+16
| | | | Submitted by: Boris Popov <bp@butya.kz>
* Back out parts of rev 1.4; making isa.c preserve the hints across apeter1999-04-241-14/+15
| | | | release made it unneeded.
* Revert part of 1.9; we don't need to reset the port after release now thatpeter1999-04-243-6/+3
| | | | the isa bus doesn't clear the hints at that point.
* Don't clear the hints on release, just the resource containers.peter1999-04-242-14/+2
|
* Typo, use SYS_RES_IRQ when releasing the irq resource, not SYS_RES_IOPORT.peter1999-04-242-4/+4
|
* Optimize better for space.kato1999-04-241-3/+3
| | | | Submitted by: Takahashi Yoshihiro <nyan@wyvern.cc.kogakuin.ac.jp>
* Commented out adv_isa.c.kato1999-04-242-4/+4
|
* - PC98 doesn't support 16bits bus I/F of adv deriver.kato1999-04-241-1/+16
| | | | | | - PC98 has the bs driver. Submitted by: Takahashi Yoshihiro <nyan@dd.catv.ne.jp>
* 1MB is not 1024 * 1024 * 1024 but 1024 * 1024.kato1999-04-244-8/+8
|
* Remove some left-over stuff from NetBSD that we don't need. Thisjdp1999-04-242-29/+7
| | | | | eliminates the need to include the dynamic linker's private header file, as well as two other headers from <sys>.
* Remove the registration stuff; we're redoing this and the emailedjkh1999-04-2422-485/+21
| | | | registrations have a high failure rate for various reasons.
* Typo of `same_ports' directive.sada1999-04-241-2/+2
| | | | Submitted by: Masaki Nohtomi <noutomi@jbm-net.or.jp>
* ahc_pci.c:gibbs1999-04-234-234/+304
| | | | | | | | | Convert to new bus and bus dma. Use latest PCI API. bt_pci.c: Fix a few bugs in how resourses are released left over from when this driver was converted to new bus.
* staticize.gibbs1999-04-232-4/+4
|
* ahb.c:gibbs1999-04-234-52/+36
| | | | | | | Synchronize malloc types for our softc. ahc_eisa.c: Sync to aic7xxx driver bus dma and new bus changes.
* bt.c:gibbs1999-04-232-10/+18
| | | | | | Simplify some inline functions. btreg.h: Correct a comment.
* Complete conversion to bus dma. This driver now works on the alpha.gibbs1999-04-234-435/+703
| | | | | | aicasm_symbol.c: Correct an unaligned access problem. You can't rely on DB to store your data in an aligned fashion.
* Kill a compiler warning.gibbs1999-04-231-1/+2
|
* Release bus entries in the EDT when a path is released.gibbs1999-04-231-4/+14
| | | | | Null out path entries when the path is released to catch bugs. Free our configuration hook when we're done with it.
* Make the register_intr() glue actually have a chance of working...peter1999-04-234-8/+12
|
* s/lkm(4)/kld(4)/peter1999-04-233-6/+6
|
* Make pmap_collect() an official pmap interface.dt1999-04-235-9/+6
|
* Moved cpu_set_fork_handler's prototype from <machine/cpu.h> to <sys/proc.h>.dt1999-04-234-7/+6
| | | | Suggested by: bde
OpenPOWER on IntegriCloud