summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Last change to pccard_nbk now obviates the need to check the name ofimp1999-10-284-32/+6
| | | | | the device in question. Also fix warnings on if_ep_pccard.c
* Add comments to Linksys probe code.imp1999-10-281-7/+20
| | | | | | Add another OUI to those acceptible to linksys (this check may need to be removed). A couple of style(9) nits.
* Do not add children for new bus kludge version of pccard.imp1999-10-282-10/+2
| | | | Fix some compile warnings.
* Lewis Carroll's name was spelled Lewis Carrol in some fortunescpiazza1999-10-282-13/+13
| | | | | PR: 14569 Submitted by: Janet Davis <janet@one-eyed-alien.net>
* I was misinformed. I cannot get away from specifying tags for FC. Some devicesmjacob1999-10-281-2/+8
| | | | are happy w/o them- some are unhappy (IBM drives).
* If we get an EPROTONOSUPP error when trying to create the netgraph socketarchie1999-10-273-1/+18
| | | | | node, it's most likely because the "ng_socket.ko" KLD is not loaded yet. So make an attempt to load it before giving up.
* Remove extraneous -I compile flag that was used during testing.archie1999-10-271-1/+0
|
* Mark path for deallocation only *after* you've successfully allocated it.mjacob1999-10-271-2/+3
|
* Sync with recent 'ep' driver changes.mdodd1999-10-271-6/+0
|
* Add more verbage explaining the "-I" option and its behavior.obrien1999-10-271-0/+9
| | | | Submitted by: Archie Cobbs <archie@whistle.com>
* make.conf is being made to conform to the /etc/defaults/ standard thatdillon1999-10-271-0/+5
| | | | | | was settled on a few months ago. Approved by: "Jordan K. Hubbard" <jkh@zippy.cdrom.com>
* I'll take the MAINTAINER line. I have been accused of knowing humorjkh1999-10-271-0/+5
| | | | when I at least see it. :)
* Realize the changes to usage() and the man page were missing fromdcs1999-10-272-1/+10
| | | | the previous commit, and document the -C (comments) flag.
* Allow a user specified parameter to 'yyparse()', in a manner similar toobrien1999-10-271-8/+11
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | that used by bison. The names are consistent with the bison implementation but this one also allows the type of the parameter to be specified. For a desired prototype of: int yyparse __P((struct yyresult *)); and compile like this: yacc -dv grammar.y cc -c -DYYPARSE_PARAM_TYPE="struct yyresult *" \ -DYYPARSE_PARAM="parm" y.tab.c and use like this: ${ #include "usrtypes.h" #include "usrproto.h" }$ %token NUMBER %% goal : NUMBER { parm->value = yylval; } ; If YYPARSE_PARAM_TYPE isn't specified then "void *" is the default type. If YYPARSE_PARAM is not specified then the generated code behaves exactly as traditional byacc. PR: 13562 Submitted by: W Gerald Hicks <wghicks@bellsouth.net>
* Shrink "struct vm_object" by not spending a full 32 bitsalc1999-10-271-2/+2
| | | | on "objtype_t".
* Emit YYERRCODE into y.tab.h to help `lex' report scanning errors back toobrien1999-10-271-3/+9
| | | | | | | Yacc. PR: 13562 Submitted by: W Gerald Hicks <wghicks@bellsouth.net>
* It seems I forgot to remove the bits from isa_compat.h.mdodd1999-10-271-6/+0
| | | | | | | Note to self; when converting a driver to newbus, the foodriver bits must be removed from sys/i386/isa/isa_compat.h Reminded gently by: Mitsuru IWASAKI <iwasaki@jp.FreeBSD.org>
* Fix potential panic by illegal increment of wfdnlun.nyan1999-10-272-4/+6
| | | | | Submitted by: chi@bd.mbn.or.jp (Chiharu Shibata) Reviewed by: Junichi Satoh <junichi@astec.co.jp> (the original author)
* fix typojulian1999-10-271-2/+2
|
* The node goes away when last session disconnects or when disconnected fromjulian1999-10-271-0/+9
| | | | the ethernet node.
* change PPPoE occurences to pppoe. Not JUST a cosmeting change.julian1999-10-272-40/+40
| | | | | some occurrances needed to be the same as the filenmnae which was pppoe not PPPoE.
* Use the stock file for now.obrien1999-10-271-162/+378
|
* s brings rev 1.2 (document printf0()) into GCC 2.95.1.obrien1999-10-271-13/+286
|
* This brings rev 1.2 (reality check and document profiling extensions)obrien1999-10-271-496/+1011
| | | | into GCC 2.95.1.
* This adds rev 1.2 (-fformat-extensions) to GCC 2.95.1.obrien1999-10-271-807/+1404
|
* Use the stock file.obrien1999-10-271-513/+718
|
* I really didn't want to maintain this.obrien1999-10-271-2/+0
| | | | (so *that's* why the Makefile looked rather strange)
* After a proper import we now have both the original RCS tags + our own.obrien1999-10-2719-3/+22
| | | | (also now clearer in ``cvs log'' that we are at version 2.5.4)
* Add $FreeBSD$'sobrien1999-10-272-0/+4
|
* Modify the man page for the 'ep' driver to be somewhat consistent withmdodd1999-10-271-21/+9
| | | | the recent changes.
* Modify the entries regarding the 'ep' driver to take into accountmdodd1999-10-275-21/+12
| | | | my recent changes to that driver.
* HEADS UP! All 3c5x9 users!mdodd1999-10-277-796/+707
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Rip out all the static softc stuff and do softc allocation the right way. - Rewrite most of the ISA code so that it provides a DEVICE_IDENTIFY method to enumerate all non-PnP ISA devices. This has the following consequences: - No 'ep' devices may be hardwired. - All hardwired devices will probably be detected twice. By hardwired I mean: device ep0 at isa? port 0x300 irq 10 - 'ep' devices are ordered by bus, slot, and then MAC address. - Make 3c509B cards work in PnP mode. Yes, they really work. - Convert over to using ifmedia for media selection. No more of this lame 'linkX' stuff. - Consolidate a lot of duplicated code. - Make a stab at not breaking MII based PCCARD devices. I doubt that the PCCARD stuff works any more than it did before my changes but theres hope. My PCCARD hardware should arrive in a week or so. - Retreive the media settings from the card EEPROM rather than guessing. I've got a 3c509-TPO that thinks its got an AUI port and if others can report similar problems I'll write a bit of clever code that will fix this but right now it works correctly on all but 1 card. - Clean up a few things and make some cosmetic changes. - Add myself as the MAINTAINER since nobody else wants to. I'm in the best position to do this as I've got an example of most of the cards: EISA 3c579 bnc/aui MCA 3c529 tp/aui ISA 3c509 tpo ISA-PnP 3c509B combo If someone wants to send me a any cards I don't have I'd appriciate it. Also welcome are 3c59x boards since I'll be folding if_vx and if_ep at some point.
* Make these compile. Next step is to connect newbus plumbing.imp1999-10-275-70/+88
|
* Only build old pcic device when building card controller rather thanimp1999-10-271-1/+1
| | | | pccard controller.
* IRC wisdom.green1999-10-271-0/+2
|
* If PAGING is defined then actually turn it on when entering protectedjhb1999-10-272-0/+10
| | | | mode.
* Move some hardware-related items to the hardware-related header.msmith1999-10-265-168/+185
| | | | | | Shift to using the same queueing strategy that the amr driver uses. Some simple tests indicate that we use about 2% of the CPU at around 500tps with the controller completely saturated with I/O.
* Change the queueing model used by the controller to drastically reducemsmith1999-10-263-44/+49
| | | | | | the time spent at splbio(). We now avoid it unless we are actually manipulating the command queues themselves. This doesn't improve performance noticeably, but should improve concurrency somewhat.
* add support for LinkSys 10/100 cardsjmb1999-10-262-8/+76
| | | | | | new code is conditionalized by the vendor's ethernet OUI Obtained from: PAO Project
* Restore alphabetical order of command line options parsing.luoqi1999-10-261-4/+4
| | | | Requested by: ken
* cleanups regarding misused m_pullup() and similar.julian1999-10-267-32/+44
|
* nuke a debug printout I thought I had already nukedmjacob1999-10-261-2/+0
|
* Fix a typo which would result a bad REQUEST SENSE command be sent toluoqi1999-10-261-5/+19
| | | | | | a device at lun != 0. Enable tagged queueing (should it be spelled as queuing?) by default.
* Debug flags -T and -S were reversed.luoqi1999-10-261-2/+2
|
* Add IGNORE_MOTD to allow the sysadmin to ignore (likely) differences inbillf1999-10-263-0/+18
| | | | | | the FreeBSD default motd and the system motd Submitted by: author
* Use $FreeBSD$ (instead of the author's $Revision$) to report thebillf1999-10-262-6/+2
| | | | | | version number now that we have it. Reviewed by: author
* freebsd -> FreeBSDbillf1999-10-261-1/+1
|
* Add $FreeBSD$billf1999-10-261-2/+1
| | | | Submitted by: chris
* Co-MAINTAINER this module.billf1999-10-261-0/+1
|
* Add text for the VIA 82C686 southbridge used by some Athlon and PII boards.alc1999-10-261-0/+2
|
OpenPOWER on IntegriCloud