summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Turn on the `sym' driver by default. It lives well beside the `ncr' driverobrien1999-12-224-4/+4
| | | | | | now. On one machine with <825a> and <875> controllers, `sym' correctly attached. On another one with only a <ncr 53c810 fast10 scsi>, the `ncr' driver correctly attached.
* Fix cut-n-paste braino.obrien1999-12-221-2/+2
|
* Reduce the FreeBSD custom hacks to gcc.c by using the GCC provided methodsobrien1999-12-222-20/+19
| | | | | | | | | | | | | | | | of changing the search dirs. This also removes an used search dir, removes unneeded redundancy, and a bugus dir we enherited on the i386 by baseing off of svr4.h. We went from: install: /usr/libexec/(null) programs: /usr/libexec/<OBJFORMAT>/:/usr/libexec/:/usr/bin/:/usr/libexec/ libraries: /usr/libdata/gcc/:/usr/libexec/:/usr/ccs/lib/:/usr/lib/ to: install: /usr/libexec/(null) programs: /usr/libexec/<OBJFORMAT>/:/usr/libexec/ libraries: /usr/libexec/:/usr/lib/
* Prettyness police: Identify flags in b_xflags with BX_ to distinguishmckusick1999-12-224-38/+42
| | | | them from flags in b_flags which are prefixed with B_
* Another style nit.obrien1999-12-221-2/+2
|
* * Support a non-default sized `long' data type. This allows one to easilyobrien1999-12-221-5/+9
| | | | | | | | build the compiler with a 64-bit longs on the i386. * Comment an important dependancy. * Fix some style nits Submitted by: bde
* * Remove debugging cruft that accidently got committed.obrien1999-12-221-8/+15
| | | | | * Support mixed OBJDIR handling such .a's are properly found with a mix of obj subdirs both w/in and outside the source tree works. Requested by BDE.
* Fix the brain-o which prevented the Custom installation item fromjkh1999-12-223-3/+3
| | | | | | working. It was, as I predicted, a stupid bug and thanks to the submitter for spotting it. I'll also re-roll some 3.4-RELEASE install floppies for this.
* Mention the hostname variable in /etc/rc.conf since that is the mostjhb1999-12-221-1/+6
| | | | | | | | | | common way of setting the hostname. The man page already mentioned that the hostname is set by /etc/rc.network, so this just explains where /etc/rc.network gets the hostname from. PR: docs/14319 Submitted by: rwatson Reviewed by: cmc
* Fix minor typo.archie1999-12-221-1/+1
|
* Updates resulting from new documentation from Mylex and some cleaning:msmith1999-12-224-75/+95
| | | | | | | | | | | | | | | | | | - Don't keep private copies of some of the data fields from the ENQUIRY and ENQUIRY2 commands. Instead, standardise on the ENQUIRY2 command for initial adapter information, and keep a copy of the entire structure. Refer to it where appropriate. - Move all of the controller description functionality into a new function. Print lots more controller data if bootverbose is set. Add knowledge of the DAC960 PR, PT, PTL0 and PRL controllers, rename the 960PTL -> PTL0 and 1100P -> 1100PVX. - Correctly terminate an error message. The controller interface procedures have been reviewed against the Mylex-supplied documentation; no changes appear necessary at this time.
* Update vnode_if.sh location. This was deliberately left a while afterpeter1999-12-222-4/+4
| | | | | | the repo copy as the kernel src/sys/modules stuff uses /usr/share/mk/bsd.kmod.mk which often gets out of sync with the kernel source.
* Oops- got the initiator and initiator/target f/w reversed formjacob1999-12-221-1942/+1942
| | | | the 1080/1240/1280 case.
* Add cs qwertz keyboardache1999-12-222-0/+288
| | | | Submitted by: Cejka Rudolf <cejkar@dcse.fee.vutbr.cz>
* Add cs_CZache1999-12-223-1/+210
| | | | Submitted by: Cejka Rudolf <cejkar@dcse.fee.vutbr.cz>
* Add cs_CZache1999-12-214-2/+107
| | | | Submitted by: Cejka Rudolf <cejkar@dcse.fee.vutbr.cz>
* Add cs_CZache1999-12-212-0/+6
| | | | Submitted by: Cejka Rudolf <cejkar@dcse.fee.vutbr.cz>
* Revert previous checkin; I incorrectly thought that it was neededarchie1999-12-211-2/+0
| | | | | | due to having an old version of bsd.kmod.mk. Caught by: bde
* regenerate after making getfh a standard syscall.alfred1999-12-211-1/+1
|
* make getfh a standard syscall instead of dependant on havingalfred1999-12-215-57/+1
| | | | | | | | NFSSERVER defined, useful for userland fileservers that want to use a filehandle type interface to the filesystem. Submitted by: Assar Westerlund assar@stacken.kth.se PR: kern/15452
* Yet another cleanup of the VIA code, this time it should worksos1999-12-218-186/+61
| | | | | | | | | | | | | | | on all combinations (I hope)... Add DMA support for the AMD 756 chip (K7 chipset) this is actually the same as the VIA 82C686 chip (the ATA part that is). Treat the intel MX chipset PIIX as a PIIX4 Allow UDMA on all disks that say they can handle it. Cleanup probe printf's a bit Remove alot of the old #ifdef DEBUG crap.
* Extra sanity checks in information from file edited by user. Thisimp1999-12-211-16/+16
| | | | | | | precludes using chfn, et al, to generate a divot in /etc. Submitted by: Lukasz Luzar Forgotten about for months by: imp
* Use the correct return value for MCA NMIs.eivind1999-12-214-4/+4
| | | | Reviewed by: mdodd
* Add #ifdef notyet around uncalled code that is later going to become DDBeivind1999-12-211-1/+7
| | | | | | commands. Discussed with: phk (driver author)
* Comment out explicit MANPATH setting.phantom1999-12-211-1/+1
| | | | | | | (BTW, it's very bad practice to have MANPATH environment variable set) PR: conf/14487 Submitted by: Norihiko Ishitani <nori@tlab.is.uec.ac.jp>
* Correct the spelling and description of sbc.tanimura1999-12-213-3/+3
|
* Collapse a bunch of unused MD_CS42nn tags into a single one. This savespeter1999-12-211-89/+36
| | | | | | going to a lot of trouble to identify it and set the tag and then not use it. Convert the pnp id matching to the preferred table based system. @@@0001 (CMI8330 ldn 0) is a mss, not a SB.
* Tidy up a few loose ends, including adding the pnp tags in comments.peter1999-12-211-21/+19
| | | | | Remove @@@0001 - it's an MSS, not a SB, at least according to the original pre-sbc code and according to a pnpinfo report that Cameron has.
* Remove #if NISA > 0 - this is best done by the configuration process.peter1999-12-211-13/+0
| | | | | It had a heap of unreferenced stuff if there was no isa configured in the system.
* Only compile gusc for isa (the #if NISA inside gusc effectively coverspeter1999-12-216-6/+6
| | | | the whole file)
* Fix a typo which I cannot believe I missed after rereading this textasmodai1999-12-211-1/+1
| | | | | | about 6-7 times prior to commit. Reported by: sheldonh
* also, changed prototype of pr_rthdr(), as my previous fixshin1999-12-211-1/+1
| | | | for netstat/route.c
* Added missing declaration for argment specification at pr_rthdr(),shin1999-12-211-3/+4
| | | | | | caused by my previous patch, sorry. Also, changed its var name from 'af' to 'wid_af', to avoid confusion with global var 'af'.
* Properly manify this manpage.asmodai1999-12-211-2/+1
|
* Document allscreens_flags. This commit perpetuates the i386-centricsheldonh1999-12-211-0/+12
| | | | | | | nature of this manual page. :-( PR: 15066 Reported by: Andy Farkas <andyf@speednet.com.au>
* Properly manify this manpage.asmodai1999-12-211-5/+5
| | | | | | | | Fix some spelling mistakes and typo's inspired by Nicholas' initial PR submission. PR: docs/15597 Submitted by: Nicholas Esborn <nick@flatlan.net>
* Change incorrect NULLs to 0seivind1999-12-2112-31/+32
|
* Use more thorough redirection to make the impact of allscreens_flagssheldonh1999-12-212-2/+2
| | | | | | | | | more comprehensive. Previously, at least colour changes were not applied to all virtual consoles. PR: 15066 Reported by: Andy Farkas <andyf@speednet.com.au> Submitted by: yokota
* Add an explicit warning against copying this file into /etc/, sincesheldonh1999-12-211-0/+5
| | | | | work-arounds for the ".: Out of file descriptors" problem (see PR 13724) are taking longer than expected to come to fruition.
* Fix a bug where a pointer would be one character too far after puttingroberto1999-12-215-5/+5
| | | | | | a '\0' at the end of a string. Submitted by: Martin Birgmeier <Martin.Birgmeier@aon.at>
* define WID_DST6 and WID_GW6 and use them only for IPv6, to keep IPv4 relatedshin1999-12-211-12/+32
| | | | | | | | | | | | information in 80 columns. TODO: IPv6 related information is not likely to be kept in 80 columns, anyway. Some more print modes could be added, but what is the priority between those modes? -print out all information even if they don't fit into 80 columns -strip off some information to fit them into 80 columns Reviewed by: markm
* Extract a list of extra isa pnp modem ID's from NetBSD and OpenBSD. Somepeter1999-12-212-14/+94
| | | | | | | of these are bound to have a PNP05xx compatid, but there's no easy way to tell. Since it's just an ID list and uses the pnp header's description strings rather than encoding strings here, it doesn't seem to be too expensive to err on the safe side.
* Fix cut'n'paste niggles in previous commit.sheldonh1999-12-212-7/+8
|
* minor cleanupcg1999-12-212-34/+20
| | | | Parts Submitted by: Ville-Pertti Keinonen <will@ztango.com>
* make previous commit's format match rest of filemharo1999-12-211-2/+2
|
* add default service (other) entriesmharo1999-12-211-0/+4
| | | | Reviewed by: markm (in concept)
* Add a flag to disable FIFO probing. The code seems to have a chance ofjoerg1999-12-213-2/+20
| | | | | | | | | | | | | misdetecting FIFO capabilities, at least on my girlfriend's Thinkpad 755, the driver doesn't work using the FIFO. While i was at it, i (partially) fixed option FCC_YE since it would no longer have compiled at all under -current. I've also made an attempt to document the device driver flags value (ab-)used internally by this option. RELENG_3 candidate, but with a slightly different patch there (will go to jkh in email).
* Delay creation of threads until after the idle thread is created, moreimp1999-12-212-22/+18
| | | | | | | | | | or less. This is a kludge because there is no support for delayed creation of threads early in the boot process. NEWCARD new boots and the thread process starts and is visible from ps. Now, on to dev/pccard.
* Lose explict initialization of mouse to {0}; this gave a warning, and theeivind1999-12-211-2/+2
| | | | implict initialization guaranteed by ISO C give the same result.
* Incorrect uses of NULL changed to 0eivind1999-12-211-3/+3
|
OpenPOWER on IntegriCloud