summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Consistantly protect "#define FOO ..." with "#undef FOO".obrien1999-05-201-1/+37
|
* Sync with sys/boot/i386/btx/Makefile revision 1.5.kato1999-05-201-2/+2
|
* Oops, set module->file..peter1999-05-201-1/+2
| | | | | PR: 1179 Submitted-by: lha@stacken.kth.se
* * Remove "'s in the synopsis as config(8) does not require them any more.obrien1999-05-191-4/+4
| | | | | | * Optional bits now shown as such. Submitted by: Philippe Charnier & bde
* Updated Australian channel frequenciesroger1999-05-192-14/+24
| | | | Submitted by: Ivan Brawley <brawley@internode.com.au>
* Fix a typo, and get rid of the bugs section that talks about addingken1999-05-191-5/+2
| | | | different ways to specify devices. That code has been added.
* Add CHAP/PAP question to the ppp setup dialog, simplifying things considerablyjkh1999-05-194-34/+86
| | | | | | for some. Submitted by: Jack O'Neill <jack@germanium.xtalwind.net>
* Add ftp5.uk.freebsd.orgjkh1999-05-193-3/+9
| | | | Submitted by: Roger Hardiman <roger@cs.strath.ac.uk>
* Fixed disordering and duplication of MLINKS in previous commit tobde1999-05-192-3/+3
| | | | libc/string/Makefile.inc. psignal.3 doesn't live in libc/string.
* Show the usage of flags in the synopsis.obrien1999-05-191-4/+4
| | | | (I couldn't figure out how to suround `flags _flags_' by []'s :-( )
* Add a commented out COMPAT22 and COMPAT3x, since we have the others.obrien1999-05-193-3/+9
|
* Nearly forgot, remove pci_cfgopen() - it's unused on the alpha and is nopeter1999-05-181-7/+1
| | | | longer exported on the i386.
* Update the list of devices supported (nothing spectacular)n_hibma1999-05-181-0/+7
|
* Drop some non-existent commented-out targets.rnordier1999-05-181-2/+2
|
* Add support for clock calibration.dfr1999-05-181-1/+2
|
* Calibrate the processor cycle counter instead of believing what thedfr1999-05-185-7/+99
| | | | firmware says.
* Don't detect an EISA bus unless we see a "card" there somewhere. An EISApeter1999-05-182-4/+20
| | | | | | | | motherboard will have a card for the "motherboard" on slot 0. eisa0: <EISA bus> on motherboard mainboard0: <ASU5101 (System Board)> at slot 0 on eisa0 This should stop the probe "detecting" an EISA bus everywhere that has a 'controller eisa0' line regardless of whether it's really there.
* Move pcibus (host -> pci bus) probe/attach routines from nexuspeter1999-05-1812-238/+300
| | | | | to pcibus.c. pci_cfgopen() becomes static and there are no more bus #ifdef's in nexus.c.
* Another minor fix from i386 to remember when the port is set to -1.dfr1999-05-181-2/+2
|
* Update isa_print_child to match i386.dfr1999-05-181-10/+10
| | | | Submitted by: Kazutaka YOKOTA <yokota@zodiac.mech.utsunomiya-u.ac.jp>
* make md5 checksums actually work instead of simply calculating the lengthjmg1999-05-181-3/+7
| | | | | | | | | of an empty buffer... the output file wasn't readable... also warn that we can't checksum on stdout and print out the base64 encoded version of the md5 checksum... Site to actually return md5 digest: web.golux.com Verified that fetch was broken: Ken Coar <Ken.Coar@Golux.Com>
* Added device major 125 for the Advantech PCI-1750 Digital IO card.roger1999-05-183-3/+6
| | | | | | | | | | | | | | A very nice i/o board with 16 open collector outputs (capable of driving 5-40v) and 16 inputs Also has 2 16 bit cascadable counters (10Mhz clock) capable of generating interrupts. It is a PCI card, and emulates the Intel 8254 timer. It uses the PLX PCI-9050 PCI bus interface to map the 8254 style hardware and the i/o registers into the IO space. Developed by Jennifer Clark <jen@vulture.dmem.strath.ac.uk> Strathclyde University Transparent Telepresence Research Group
* TIOCEXT is also inapproriate before the slave is open, return EAGAIN whenluoqi1999-05-181-29/+31
| | | | | | these ioctls are attempted. Move a misplaced comment. Pointed out by: Bruce
* Avoid negative numbers in dev_t manipulation. This should fix recent MFSluoqi1999-05-181-3/+3
| | | | related crashes.
* Update text on using the smbus, iibus, iicbb controllersroger1999-05-183-12/+24
| | | | with the bktr device.
* Bt848 driver release 1.65roger1999-05-182-14/+62
| | | | | | | | | Change Intel GPIO mask to hopefully stop turning the Intel Camera off Fixed tuner selection on Hauppauge card with tuner 0x0a Replaced none tuner with no tuner for Theo de Raadt <deraadt@openbsd.org>. Ivan Brawley <brawley@internode.com.au> added the Australian channel frequencies.
* Bt848 driver release 1.65roger1999-05-183-6/+9
| | | | | | Updated with australian channel set Submitted by: Ivan Brawley <brawley@internode.com.au>
* Slight reorganization of internal interface in the keyboard controlleryokota1999-05-187-80/+101
| | | | driver.
* Silence warnings.yokota1999-05-181-10/+10
|
* Remove unnecessary function call.yokota1999-05-181-2/+1
|
* The previous commit was wrong! This is the correct one ;-<yokota1999-05-182-4/+4
|
* pmap_qremove:alc1999-05-182-8/+34
| | | | Eliminate unnecessary TLB shootdowns.
* Identify illegal switches, don't print them as '?' in the error..peter1999-05-181-2/+2
|
* vm_map_insert:alc1999-05-181-47/+38
| | | | | General cleanup. Eliminate coalescing checks that are duplicated by vm_object_coalesce.
* Add a strsignal(3) (like strerror(3)) for libc compatability with otherpeter1999-05-186-6/+97
| | | | systems. NetBSD, Linux, SVR4 etc all have it.
* Correct a bug where the chip could be unpaused in the middle of a busgibbs1999-05-181-23/+35
| | | | or device reset error recovery operation.
* Move the tty locking stuff back out to physical.c sobrian1999-05-182-152/+156
| | | | | | that we lock the device *before* we open it. We still open the device only once - and then ask all our handlers if they know how to handle it.
* deal with a.out ldconfig paths also.jkh1999-05-185-11/+19
|
* Make xpt_path_comp work on wildcarded paths again.gibbs1999-05-181-7/+7
|
* Add a note that when a stream opened via fdopen() is closed via fclose(),archie1999-05-171-0/+4
| | | | | the underlying file descriptor is also closed. To me at least this wasn't immediately obvious.
* Typo.pb1999-05-171-2/+2
| | | | PR: doc/11582
* Correct the comment for the last commit.gibbs1999-05-172-2/+2
| | | | | | | Clean up the handling of failure modes in our attach so we don't free resources twice. ahc_free() will do all of the work for us (as would be required by an unload event) so we only need to handle resources that the softc has not taken ownership of.
* Update copyright. Correct some whitespace.gibbs1999-05-172-5/+5
|
* Add a masking scheme to allow for detection of unknown cards using agibbs1999-05-172-190/+262
| | | | | | chip we think we understand. Correct identification entry for the AHA2950U2.
* Fix whitespace. Correct a comment.gibbs1999-05-172-30/+36
|
* This gem deserve to live forever:phk1999-05-171-0/+4
| | | | | | | "Non stop trains to Roma Termini Station leave from 7.38 a.m. to 10.08 p.m., hourly." (from: http://www.italyhotel.com/roma/guida/collegamenti.html)
* Seventh update to the new ATA/ATAPI driver:sos1999-05-178-42/+53
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixed problems: LS120 drives currupted data. The workaround for drives not supporting upto 64K transfers has been reworked. It works now both on LS120 & ZIP drives. ISA only configs wont compile. Fixed. The ATA driver wont share interrupts. Fixed. The "unwanted interrupt" warning gave wrong controller. Another lun<>unit messup from the newbus integration. Some minor cleanups and rearrangements as well. As usual USE AT YOUR OWN RISK!!, this is still pre alpha level code. Especially the DMA support can hose your disk real bad if anything goes wrong, again you have been warned :) Notebook owners should be carefull that their machines dont suspend as this might cause trouble... But please tell me how it works for you! Enjoy! -Søren
* Use NOUDEV for udev_t'sphk1999-05-171-2/+2
|
* Change the definition of e_tdev in struct kinfo_proc from dev_t to udev_tdfr1999-05-172-4/+4
| | | | Reviewed by: Poul-Henning Kamp <phk@critter.freebsd.dk>
* - Fixed default irq in SMP kernel.kato1999-05-171-7/+9
| | | | - Removed hardcode IRQ in #ifdef PC98.
OpenPOWER on IntegriCloud