aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Remove CLOCAL when we're not in -dedicated mode.Brian Somers1999-08-091-3/+7
| | | | | | | | PR: 13046 Submitted by: Vsevolod Lobko <seva@alex-ua.com> Notes: svn path=/head/; revision=49587
* Correct typo.Greg Lehey1999-08-091-1/+1
| | | | | | | | PR: docs/13050 Reported-by: Dan Langille<junkmale@xtra.co.nz> Notes: svn path=/head/; revision=49585
* Add an example of an isdnd.rc that works with ppp.Brian Somers1999-08-091-0/+75
| | | | Notes: svn path=/head/; revision=49584
* Add an example of an isdn profile.Brian Somers1999-08-091-0/+85
| | | | Notes: svn path=/head/; revision=49583
* Change printf formats %q[du] -> %ll[du]Brian Somers1999-08-093-13/+13
| | | | Notes: svn path=/head/; revision=49582
* Insist that ppp.conf and it's parent directories aren't `other'Brian Somers1999-08-091-2/+5
| | | | | | | | | | writable rather than not being writable at all. PR: 13009 Kind-of submitted by: Anthony Kimball <alk@pobox.com> Notes: svn path=/head/; revision=49581
* Fix nexus_pcib_is_host_bridge() so that it detects my 486's PCI busBill Paul1999-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. Notes: svn path=/head/; revision=49580
* chip0: <PCI to 0x80 bridge (vendor=10e0 device=8849)> at device 0.0 on pci0Matthew N. Dodd1999-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." Notes: svn path=/head/; revision=49579
* Move cronjob up one minute to get it out of the 02:00-03:00 happy hourPoul-Henning Kamp1999-08-091-2/+2
| | | | | | | | | | of daylight savings changes. Submitted by: Doug <Doug@gorean.org> Reviewed by: phk Notes: svn path=/head/; revision=49578
* Include <sys/queue.h> since this header now depends on it.John Polstra1999-08-092-2/+6
| | | | Notes: svn path=/head/; revision=49577
* There is no special handling for SIGALRM asRuslan Ermilov1999-08-091-11/+3
| | | | | | | sleep(3) is implemented using nanosleep(2). Notes: svn path=/head/; revision=49576
* A little more tidying up.Peter Wemm1999-08-094-126/+44
| | | | Notes: svn path=/head/; revision=49575
* Fix a few typos and misspellings, grabbed from PR#8472Chris Costello1999-08-091-8/+8
| | | | Notes: svn path=/head/; revision=49573
* Expand a heap of macros that obscure readability and are no longer neededPeter Wemm1999-08-094-474/+244
| | | | | | | here, and do a bit of general tidy up. Notes: svn path=/head/; revision=49572
* Remove a reference to config(8) when IRQ 2 is remapped to IRQ 9.Mike Pritchard1999-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. Notes: svn path=/head/; revision=49569
* More pre-lite2 support zapped and some more tidy-up.Peter Wemm1999-08-094-148/+2
| | | | Notes: svn path=/head/; revision=49568
* Unifdef -D__FreeBSD__ - and remove pre-lite2 support.Peter Wemm1999-08-094-230/+24
| | | | Notes: svn path=/head/; revision=49567
* Unifdef -U__NetBSD__Peter Wemm1999-08-094-516/+2
| | | | Notes: svn path=/head/; revision=49566
* Fixed checking a type of the interface.Yoshihiro Takahashi1999-08-092-4/+4
| | | | | | | Submitted by: Tomohiko Kurahashi <kura@tim.hi-ho.ne.jp> Notes: svn path=/head/; revision=49564
* Unifdef -U__bsdi__Peter Wemm1999-08-094-610/+8
| | | | Notes: svn path=/head/; revision=49563
* s/Id/FreeBSD/Peter Wemm1999-08-096-6/+12
| | | | Notes: svn path=/head/; revision=49562
* Strip __FreeBSD_version >= 300000 conditionals.Peter Wemm1999-08-094-64/+18
| | | | Notes: svn path=/head/; revision=49561
* Merge changes from NetBSD rev 1.82 -> 1.86 via vendor branch.Peter Wemm1999-08-092-30/+204
| | | | | | | Among the changes: 1.84: support compex 4-port cards. Notes: svn path=/head/; revision=49560
* make alpha compile again.Poul-Henning Kamp1999-08-094-35/+14
| | | | Notes: svn path=/head/; revision=49559
* Merge the cons.c and cons.h to the best of my ability. alpha may orPoul-Henning Kamp1999-08-0966-1259/+113
| | | | | | | may not compile, I can't test it. Notes: svn path=/head/; revision=49558
* Back out previous commit - it's not necessary now that tty.h properly includesJordan K. Hubbard1999-08-091-2/+1
| | | | | | | the queue macros. Notes: svn path=/head/; revision=49557
* This uses an SLIST_ENTRY and breaks the build without sys/queue.h. CommitJordan K. Hubbard1999-08-091-1/+2
| | | | | | | this until bde and friends finish arguing over what to do instead. :) Notes: svn path=/head/; revision=49556
* Remove reference to nonexistant man page `da(9)'Chris Costello1999-08-091-3/+2
| | | | Notes: svn path=/head/; revision=49555
* Add a missing include (sys/queue.h for sys/tty.h SLIST usage.)Brian Feldman1999-08-091-1/+2
| | | | Notes: svn path=/head/; revision=49554
* Remove f2c-related stuff from the "includes" target and from aJohn Polstra1999-08-081-3/+2
| | | | | | | comment. Fixes broken make world. Notes: svn path=/head/; revision=49551
* Remove compile time limit on number of devices.Poul-Henning Kamp1999-08-081-25/+17
| | | | Notes: svn path=/head/; revision=49550
* Passing the unit number to an interrupt routing is kind of narrowminded,Poul-Henning Kamp1999-08-082-2/+7
| | | | | | | add a way to get the entire struct ppb_device back. Notes: svn path=/head/; revision=49549
* Remove compiled in limit on number of devices.Poul-Henning Kamp1999-08-081-104/+29
| | | | Notes: svn path=/head/; revision=49548
* register tty devices so they will look right in pstat.Poul-Henning Kamp1999-08-081-61/+26
| | | | Notes: svn path=/head/; revision=49547
* Document -f flag:Chris Costello1999-08-082-4/+10
| | | | | | | | -f Do not display a diagnostic message if chmod could not modify the mode for file. Notes: svn path=/head/; revision=49544
* Allocate and register struct tty on the fly.Poul-Henning Kamp1999-08-082-26/+6
| | | | Notes: svn path=/head/; revision=49543
* Enable ttymalloc().Poul-Henning Kamp1999-08-082-11/+8
| | | | Notes: svn path=/head/; revision=49542
* s/TULUP/TULIP/ - from vendor branch.Peter Wemm1999-08-082-6/+6
| | | | Notes: svn path=/head/; revision=49541
* Add new sysctl "kern.ttys" which return all the struct tty's which havePoul-Henning Kamp1999-08-083-3/+38
| | | | | | | | | been registered with ttyregister(). register ptys with ttyregister(). Notes: svn path=/head/; revision=49540
* Add support for picking up ttys with sysctl(kern.ttys).Poul-Henning Kamp1999-08-081-62/+12
| | | | Notes: svn path=/head/; revision=49539
* Make the pty driver as close to a cloning device as we can get for now,Poul-Henning Kamp1999-08-0812-124/+87
| | | | | | | | | | | | we create the pty on the fly when it is first opened. If you run out of ptys now, just MAKEDEV some more. This also demonstrate the use of dev_t->si_tty_tty and dev_t->si_drv1 in a device driver. Notes: svn path=/head/; revision=49536
* Decommision miscfs/specfs/specdev.h. Most of it goes into <sys/conf.h>,Poul-Henning Kamp1999-08-0858-238/+206
| | | | | | | | | a few lines into <sys/vnode.h>. Add a few fields to struct specinfo, paving the way for the fun part. Notes: svn path=/head/; revision=49535
* Avoid symbol clash in LINT.Poul-Henning Kamp1999-08-082-4/+4
| | | | Notes: svn path=/head/; revision=49534
* Silence a warning about uninitialized variables.Brian Somers1999-08-081-2/+2
| | | | Notes: svn path=/head/; revision=49533
* Don't includei 4b support on the alphaBrian Somers1999-08-081-2/+2
| | | | Notes: svn path=/head/; revision=49532
* Remove f2c as its libraries were tossed last April, and f2c has been replacedDavid E. O'Brien1999-08-0854-31525/+0
| | | | | | | | | with EGCS's f77. Noticed still alive by: bde Notes: svn path=/head/; revision=49531
* Fix a reference to `st' by replacing it with `sa'.Chris Costello1999-08-083-6/+6
| | | | Notes: svn path=/head/; revision=49529
* Don't log_Printf(..., buf) in case buf contains %sBrian Somers1999-08-081-7/+7
| | | | | | | Info provided by: Ollivier Robert <roberto@keltia.freenix.fr> Notes: svn path=/head/; revision=49527
* Fixed all printf format errors reported by gcc -Wformat on i386's:Bruce Evans1999-08-081-8/+8
| | | | | | | | | | | - %q -> %ll. Fixed nearby errors not reported by gcc -Wformat on i386's: - don't assume that the promotion of [u_]int64_t is [u_]quad_t. - don't use signed formats for unsigned args. Notes: svn path=/head/; revision=49526
* Fixed printf format errors (%qu -> %llu; the arg was already unsigned longBruce Evans1999-08-082-10/+6
| | | | | | | long to hide problems on alphas). Notes: svn path=/head/; revision=49525