summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* - Removed unused variable.kato1999-08-101-7/+5
| | | | | | - Fixed missing argument of printf. - Fixed printf format. - Added parentheses suggested by the compiler.
* If we receive an IPCP protocol reject, bring it down.brian1999-08-101-1/+8
|
* Sync with sys/i386/conf/userconfig.c revision 1.152.kato1999-08-101-5/+5
|
* Check to see if /usr/bin/logger exists before using it. Use "echo" ifobrien1999-08-101-1/+5
| | | | | | /usr/bin/logger is not available. Noticed from: error messages in -CURRENT's sysinstall Alt-F2 debug screen
* Use the latest version of these files from OpenBSD.imp1999-08-105-38/+48
| | | | | | | | | | 1) Safty change from casper dik was added to OpenBSD's sources since I grabbed them. milltert@openbsd.org 2) Split up strlcpy to improve efficiency of the common case. milltert@openbsd.org 3) Cleanup of cross references for man page. {alex,aaron}@openbsd.org Pointed out by: deraadt@openbsd.org
* Import strl{cat,cpy} from OpenBSD.imp1999-08-106-6/+423
| | | | Obtained from: OpenBSD
* vm_map_madvise:alc1999-08-101-17/+3
| | | | | | | | Now that behaviors are stored in the vm_map_entry rather than the vm_object, it's no longer necessary to instantiate a vm_object just to hold the behavior. Reviewed by: dillon
* pmap_remove_pages:alc1999-08-102-2/+8
| | | | | Add KASSERT to detect out of range access to the pv_table and report the errant pte before it's overwritten.
* Some floppy related commands (fdformat, fdwrite, fdcontrol) need not bemjacob1999-08-101-4/+4
| | | | restricted to i386.
* Add support for the Am79C978. (AMD PCHome/PCI Ethernet adapter)mdodd1999-08-109-7/+58
| | | | | | | See: http://www.amd.com/products/npd/overview/homenetworking/intro.html PR: kern/12275 Submitted by: Robert Watson <robert@cyrus.watson.org>
* Back out the last patch. I'm too tired to apply patches.brian1999-08-091-6/+2
|
* Remove CLOCAL when we're not in -dedicated mode.brian1999-08-091-3/+7
| | | | | PR: 13046 Submitted by: Vsevolod Lobko <seva@alex-ua.com>
* Correct typo.grog1999-08-091-1/+1
| | | | | PR: docs/13050 Reported-by: Dan Langille<junkmale@xtra.co.nz>
* Add an example of an isdnd.rc that works with ppp.brian1999-08-091-0/+75
|
* Add an example of an isdn profile.brian1999-08-091-0/+85
|
* Change printf formats %q[du] -> %ll[du]brian1999-08-093-13/+13
|
* Insist that ppp.conf and it's parent directories aren't `other'brian1999-08-091-2/+5
| | | | | | | writable rather than not being writable at all. PR: 13009 Kind-of submitted by: Anthony Kimball <alk@pobox.com>
* Fix nexus_pcib_is_host_bridge() so that it detects my 486's PCI buswpaul1999-08-096-18/+54
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | correctly. It has the following code: if (class != PCIC_BRIDGE || subclass != PCIS_BRIDGE_HOST) return NULL; My 486 has an Integrated Micro Solutions PCI bridge which identifies itself as subclass PCIS_BRIDGE_OTHER, not PCIS_BRIDGE_HOST. Consequently, it gets ignored. In my opinion, the correct test should be: if ((class != PCIC_BRIDGE) && (subclass != PCIS_BRIDGE_HOST)) return NULL; That way the test still succeeds because the chip's class is PCIC_BRIDGE. Clearly it's not reasonable to expect all host to PCI bridges to always have a subclass of PCIS_BRIDGE_HOST since I've got one that doesn't. This way the sanity test should remain relatively sane while still allowing some oddball yet correct hardware to work. If somebody has a better way to do it, go ahead and tweak the test, but be aware that class == PCIC_BRIDGE and subclass == PCIS_BRIDGE_OTHER is a valid case. While I was here, I also added an explicit ID string for the IMS chipset. I also dealt with a minor style nit: it's bad karma not to have a default case for your switch statements, but the one in this routine doesn't have one. The default string of "Host to PCI bridge" is now assigned in a default case of the switch statement instead of initializing "s" with the string before the switch and then not having any default case.
* chip0: <PCI to 0x80 bridge (vendor=10e0 device=8849)> at device 0.0 on pci0mdodd1999-08-091-1/+2
| | | | | | | | | | | | Isn't really that useful. chip0: <PCI to Other bridge (vendor=10e0 device=8849)> at device 0.0 on pci0 is more in keeping with the spirit of the rest of the code. Previous behavior with regard to truely unknown bridges unchanged. "<Anti-Bill> Tell you what: you have commit privs now. You do it."
* Move cronjob up one minute to get it out of the 02:00-03:00 happy hourphk1999-08-091-2/+2
| | | | | | | of daylight savings changes. Submitted by: Doug <Doug@gorean.org> Reviewed by: phk
* Include <sys/queue.h> since this header now depends on it.jdp1999-08-092-2/+6
|
* There is no special handling for SIGALRM asru1999-08-091-11/+3
| | | | sleep(3) is implemented using nanosleep(2).
* A little more tidying up.peter1999-08-094-126/+44
|
* Fix a few typos and misspellings, grabbed from PR#8472chris1999-08-091-8/+8
|
* Expand a heap of macros that obscure readability and are no longer neededpeter1999-08-094-474/+244
| | | | here, and do a bit of general tidy up.
* Remove a reference to config(8) when IRQ 2 is remapped to IRQ 9.mpp1999-08-091-5/+5
| | | | | | | | Config(8) contains no documentation about this. Fix the help for the PnP irq and drq commands. This one caused me a bit of head scratching the other night while trying to get a problematic PnP device configured properly.
* More pre-lite2 support zapped and some more tidy-up.peter1999-08-094-148/+2
|
* Unifdef -D__FreeBSD__ - and remove pre-lite2 support.peter1999-08-094-230/+24
|
* Unifdef -U__NetBSD__peter1999-08-094-516/+2
|
* Fixed checking a type of the interface.nyan1999-08-092-4/+4
| | | | Submitted by: Tomohiko Kurahashi <kura@tim.hi-ho.ne.jp>
* Unifdef -U__bsdi__peter1999-08-094-610/+8
|
* s/Id/FreeBSD/peter1999-08-096-6/+12
|
* Strip __FreeBSD_version >= 300000 conditionals.peter1999-08-094-64/+18
|
* Merge changes from NetBSD rev 1.82 -> 1.86 via vendor branch.peter1999-08-092-30/+204
| | | | Among the changes: 1.84: support compex 4-port cards.
* make alpha compile again.phk1999-08-094-35/+14
|
* Merge the cons.c and cons.h to the best of my ability. alpha may orphk1999-08-0966-1259/+113
| | | | may not compile, I can't test it.
* Back out previous commit - it's not necessary now that tty.h properly includesjkh1999-08-091-2/+1
| | | | the queue macros.
* This uses an SLIST_ENTRY and breaks the build without sys/queue.h. Commitjkh1999-08-091-1/+2
| | | | this until bde and friends finish arguing over what to do instead. :)
* Remove reference to nonexistant man page `da(9)'chris1999-08-091-3/+2
|
* Add a missing include (sys/queue.h for sys/tty.h SLIST usage.)green1999-08-091-1/+2
|
* Remove f2c-related stuff from the "includes" target and from ajdp1999-08-081-3/+2
| | | | comment. Fixes broken make world.
* Remove compile time limit on number of devices.phk1999-08-081-25/+17
|
* Passing the unit number to an interrupt routing is kind of narrowminded,phk1999-08-082-2/+7
| | | | add a way to get the entire struct ppb_device back.
* Remove compiled in limit on number of devices.phk1999-08-081-104/+29
|
* register tty devices so they will look right in pstat.phk1999-08-081-61/+26
|
* Document -f flag:chris1999-08-082-4/+10
| | | | | -f Do not display a diagnostic message if chmod could not modify the mode for file.
* Allocate and register struct tty on the fly.phk1999-08-082-26/+6
|
* Enable ttymalloc().phk1999-08-082-11/+8
|
* s/TULUP/TULIP/ - from vendor branch.peter1999-08-082-6/+6
|
* Add new sysctl "kern.ttys" which return all the struct tty's which havephk1999-08-083-3/+38
| | | | | | been registered with ttyregister(). register ptys with ttyregister().
OpenPOWER on IntegriCloud