summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Close PR #11122: check key length before calling strncmp()wpaul1999-04-141-3/+4
| | | | in yp_next_record().
* Support linking against libgcc_r.obrien1999-04-141-0/+6
| | | | Submitted by: Luoqi Chen <luoqi@chen.ml.org>
* Create a libgcc with POSIX threads support.obrien1999-04-142-2/+11
| | | | Submitted by: Luoqi Chen <luoqi@chen.ml.org> (reorganized by me)
* Add a commented-out example on using the makeoptions command to get apeter1999-04-132-2/+6
| | | | kernel.debug.
* Build the functionality of the wdc_p hack into the ide_pci.c code.peter1999-04-136-105/+18
| | | | | | | | | | | | All it did was match a specific device ID and turn on a quirk for the wdc driver. Incidently, at line 1462 there is a return that prevents the generic ide_pci code from trying to look at the device. I'd be interested to know if we can take out the return and let the generic code "see" it. I've left the return in because that's the way it worked before. (Be sure to rerun config after cvsup or you'll get undefined files!)
* Shoot the LKM support in the old wd/wdc/atapi driver set in the head andpeter1999-04-1322-1038/+63
| | | | | | | | | | | | | | | | | perform a cleanup/unifdef sweep over it to tidy things up. The atapi code is permanently attached to the wd driver and is always probed. I will add an extra option bit in the flags to disable an atapi probe on either the master or slave if needed, if people want this. Remember, this driver is destined to die some time. It's possible that it will loose all atapi support down the track and only be used for dumb non-ATA disks and all ata/atapi devices will be handled by the new ata system. ATAPI, ATAPI_STATIC and CMD640 are no longer options, all are implicit. Previously discussed with: sos
* Move the declaration of faultin() from the vm headers to proc.h, sincepeter1999-04-132-4/+4
| | | | it is now referenced from a macro there (PHOLD()).
* Drop the atapi module from the build, it's just wasting time.peter1999-04-131-2/+2
|
* Hopefully replicate the install.debug changes from the i386 version.peter1999-04-132-48/+30
|
* Clean up the kernel/kernel.debug/install.debug etc stuff.peter1999-04-133-117/+63
| | | | | | Sense ${DEBUG} to decide on building kernel.debug or not. Use a common install and install.debug target to minimize duplication. (I deleted the ELF transition kernel warning, it was getting dated..)
* Clean up the -g/DEBUG handling. This logic can go in the Makefilepeter1999-04-133-30/+8
| | | | so that config -g can work the same as: makeoptions DEBUG="-g"
* As the INFO stuff un doc/ works, we may as well build/install it.markm1999-04-131-2/+2
| | | | OK'ed by: obrien
* Some more fixes:wpaul1999-04-132-38/+45
| | | | | | | | | | | | | | | - It turns out that the 'promiscuous mode' bug what I discovered with the PNIC is not restricted to promiscuous mode. I've been doing some remote debugging for someone with a P75 system, and at 100Mbps, the receiver screws up even when the NIC is in normal mode. Thus, enable the workaround for this bug all the time. Note that the workaround is still not enabled for the PNIC II, since I haven't tested one yet. - Set the 'arbitration' bit in the bus configuration register and set the maximum burst size to 16 longwords. This seems to fix problems with transmit corruption on the P75 system mentioned above. (It probably hurts performance a bit too, but I've given up trying to make the PNIC perform well.)
* Use u_int32_t for sin_addr.s_addr rather than u_long to avoidsimokawa1999-04-131-4/+4
| | | | unaligned access on alpha.
* Initialize alpha_unaligned_* as I intended.simokawa1999-04-131-6/+6
| | | | I misunderstood SYSCTL_INT in previous revision.
* Removed DIAGNOSTIC opion redefinition.semenu1999-04-132-4/+2
| | | | Submitted by: Eivind Eklund <eivind@FreeBSD.org>
* Reference kldfind(2), kldfirstmod(2), kldload(2), kldnext(2), kldstat(2),ghelmer1999-04-131-1/+7
| | | | | | and kldunload(2). Submitted by: Chris Costello <chris@holly.dyndns.org>
* Add kld(4) man page. Copyright notice in PR submission was "???", whichghelmer1999-04-131-0/+162
| | | | | | | | I changed to "Christopher G. Demetriou" since the page appears to be a revision of lkm(4). PR: docs/8611 Submitted by: Rajesh Vaidheeswarran <rv@fore.com>
* Remove my temporary detection for PR 7059, Tor Egge fixed this bug.cracauer1999-04-131-5/+1
| | | | PR: 7059
* Make sending the postcard optional (as suggested by phk).hm1999-04-131-3/+4
|
* Fixed bogus SRCS definition which broke `make depend'. Plain `make'bde1999-04-131-3/+2
| | | | | | | worked accidentally because the rule to generate ${OBJS} from ${SRCS} is sloppy. Fixed style bugs.
* Note that cc -aout has been broken for a while and a reminder toimp1999-04-131-1/+6
| | | | | | recompile now that it has been fixed. Submitted by: Peter Wemm
* Fix a misspelling.jkh1999-04-132-2/+2
|
* During variable expansion, the internal representation of the expressiontegge1999-04-131-5/+5
| | | | | might be relocated. Handle this case. PR: 7059
* Backout early start of APs since it caused some machines to hang.tegge1999-04-137-28/+7
|
* Correctly ref editline(3).ghelmer1999-04-131-8/+4
| | | | PR: docs/10973
* Typo fix.ghelmer1999-04-131-2/+2
| | | | PR: docs/11022
* Change LKM/modload to KLD/kldload.ghelmer1999-04-131-4/+4
| | | | Submitted by: Nathan Ahlstrom <nrahlstr@winternet.com>
* Update description of how to analyse kernel dumps.grog1999-04-131-60/+54
|
* Merge in some updates for the RealTek driver, mainly:wpaul1999-04-122-168/+113
| | | | | | - Rewrite the transmit section to be a little less bogus. - Set ifq_maxlen correctly. RL_TX_LIST_CNT - 1 is wrong, because for the RealTek, RL_TX_LIST_CNT is 4. Set it to IFQ_MAXLEN instead.
* Grr... don't touch the PN_GEN (general purpose) register in pn_setcfg()wpaul1999-04-121-6/+8
| | | | | unless this is a NIC without an MII-based PHY (i.e. an older LinkSys LNE100TX).
* Add support for the 3cSOHO100-TX, which is a "hurricane" chipsetwpaul1999-04-122-3/+8
| | | | | | (cut-down version of the "cyclone" for the small office/home office "cheap bastard" market). Basically the same as a 3c905B but without Wake-on-LAN, ROM socket, etc...
* Mention the new splash_pcx decoder.des1999-04-122-6/+28
|
* Typo fix, src/sys/gnu/usr.bin/cc -> src/gnu/usr.bin/cc.max1999-04-121-2/+2
|
* Remove extraneous spacebrian1999-04-127-14/+14
| | | | PR: 11096
* Fix typo in source-explaining comment.cracauer1999-04-121-2/+2
|
* More consistent with surrounding style. (Hey - it looked great in theeivind1999-04-121-2/+2
| | | | | | diff...) Prodded by: bde
* Shorten line.eivind1999-04-121-3/+3
| | | | Prodded by: bde
* Add a guarded abort() for the problem in PR bin/7059 (no fix so far,cracauer1999-04-121-17/+33
| | | | | | | | this is hairy). Reformat this file to comply to style(9). It had mixed styles before. PR: bin/7059
* PCX loader for pseudo-device splash.des1999-04-124-2/+534
|
* Centralize and reorganize a few macros.des1999-04-129-30/+56
|
* Typo in comment.des1999-04-121-2/+2
|
* ppp != iijppp any morebrian1999-04-123-9/+9
| | | | Mention nos-tun as a tun device user.
* Sync with sys/i386/isa/isa.c revision 1.118.kato1999-04-121-7/+1
|
* Minor tweak: move initialiation of busctl register to before setting ofwpaul1999-04-121-3/+3
| | | | the cache alignment bits.
* Don't build man page indices if NOMAN is defined.des1999-04-111-2/+4
| | | | | PR: bin/11035 Submitted by: Chris Costello <chris@holly.dyndns.org>
* Document pread() and pwrite().dt1999-04-113-11/+68
| | | | Obtained from: NetBSD (mostly)
* Syncing with NetBSD version 1998/12/14n_hibma1999-04-115-16/+20
|
* Make debugging more selective.n_hibma1999-04-116-19/+42
| | | | Remove debugging options from GENERIC
* 1) Make debugging more selective.n_hibma1999-04-1118-201/+180
| | | | | | | 2) create function usbd_errstr which turns a usbd_status into a sensible error message 3) Change the printf in DPRINTF to logprintf which is a define for log(KERN_DEBUG, x)
OpenPOWER on IntegriCloud