summaryrefslogtreecommitdiffstats
path: root/sys/conf
Commit message (Collapse)AuthorAgeFilesLines
* correct "device iwic0" to "device iwic"hm2000-10-101-1/+1
|
* Merged from sys/conf/{files.i386,options.i386} revisions 1.334 andkato2000-10-102-30/+70
| | | | 1.140, respectively.
* update to i4b version 0.95.04hm2000-10-091-48/+68
|
* update to i4b version 0.95.04hm2000-10-093-66/+116
|
* A couple of negative options was not commented out in NOTES/LINT. Thisphk2000-10-091-2/+2
| | | | obscured a #include bug in syscons.
* Unbreak detection of breakage in cy driver.bde2000-10-081-6/+6
|
* Cy driver doesn't compile and nobody seems to care.phk2000-10-071-6/+6
|
* Driver for the Intel 82801AA (ICH) SMBus controller and compatibles.archie2000-10-062-7/+14
| | | | Obtained from: Whistle source tree
* Correct the dependency for aicasm.gibbs2000-10-051-1/+1
|
* Next round of fixes to the ia64 code. This includes simulated clock anddfr2000-10-041-8/+10
| | | | | | | disk drivers along with a load of fixes to context switching, fork handling and a load of other stuff I can't remember now. This takes us as far as start_init() before it dies. I guess now I will have to finish off the VM system and syscall handling :-).
* Blah rev 1.208 got bits of the proposed "I want the file /kernel to beobrien2000-10-032-14/+12
| | | | | | | the kernel" patch. This commit is only the "Do not prepend `DESTDIR' to `KMODDIR' as sys/conf/kmod.mk already does that for us" change.
* Do not prepend `DESTDIR' to `KMODDIR' as sys/conf/kmod.mk already doesobrien2000-10-035-17/+19
| | | | that for us.
* Add the pcn device to NEWCARD and NOTES.wpaul2000-10-031-0/+5
|
* add ATA_ENABLE_TAGS optionsos2000-10-031-0/+1
|
* Add ATA_ENABLE_TAGS options descriptionsos2000-10-031-0/+2
|
* Move the ata/atapi files to the common area. They were the same on allpeter2000-10-035-36/+9
| | | | | | | | | | platforms. While here, work around a strange quirk in config(8) that I do not yet understand. Rearrange which atapi* files have 'optional' vs. 'count' so that you can have atapifd without atapicd. The only difference should be that this works instead of having a link error because atapi-all.o got left out of the kernel.
* Move sys/dev/nulldev to sys/dev/null to be more consistent with namingjhb2000-10-021-1/+1
| | | | under sys/dev.
* Added NEC PC-9801-83, 84, PC-9801-103, 104, PC-9801N-25 and PC-9801N-J02Rnyan2000-10-021-0/+5
| | | | | | | | support which use National Semiconductor DP8393X (SONIC) as ethernet controller. Currently, this driver is used on only PC-98. Submitted by: Motomichi Matsuzaki <mzaki@e-mail.ne.jp> Obtained from: NetBSD/pc98
* Merged from sys/conf/files.i386 revision 1.332.kato2000-10-021-1/+2
|
* Move the i386 PCI attachment code out of i386/isa back into i386/pci.msmith2000-10-021-1/+2
| | | | | Split out the configuration space access primitives, as these are needed elsewhere as well.
* Put on my nuclear-grade asbestos suit and cvs rm the old, broken, soundpeter2000-10-023-130/+0
| | | | | | | | | | | drivers (again). These drivers have not compiled for 5-6 months. Now that the new sound code supports MIDI, the major reason we had for reviving it is gone. It is a far better investment polishing the new midi code than trying to keep this on life support. Come 5.0-REL, if there are major shortcomings in the pcm sound driver then maybe we can rethink this, but until then we should focus on pcm. Remember, these have not been compilable since ~April-May this year.
* Remove ACPI_NO_OSDFUNC_INLINE option from kernel configuration. Nowiwasaki2000-10-012-2/+0
| | | | | | | that it's enabled in acpireg.h only if DIAGNOSTIC option is specified. ACPICA OSD functions will be compiled in machine/acpi_machdep.c again tentatively (if DIAGNOSTIC option is specified). # Should we have acpica_osd.c ?
* More updates to the ACPI code:msmith2000-09-301-1/+3
| | | | | | | | | | | | | | | - Move all register I/O into acpi_io.c - Move event handling into acpi_event.c - Reorganise headers into acpivar/acpireg/acpiio - Move find-RSDT and find-ACPI-owned-memory into acpi_machdep - Allocate all resources (except those detailed only by AML) as real resources. Add infrastructure that will make adding resource support to AML code easy. - Remove all ACPI #ifdefs in non-ACPI code - Removed unnecessary includes - Minor style and commenting fixes Reviewed by: iwasaki
* The `ed' NIC driver has been changed to work on Alpha now. So enable itobrien2000-09-304-4/+3
| | | | | | on all platforms. Submitted by: Alexander Langer <alex@big.endian.de>
* This is the first snapshot of the FreeBSD/ia64 kernel. This kernel willdfr2000-09-294-0/+642
| | | | | | not work on any real hardware (or fully work on any simulator). Much more needs to happen before this is actually functional but its nice to see the FreeBSD copyright message appear in the ia64 simulator.
* Add support for pccard attachments of the ex driver. It supports theimp2000-09-291-0/+1
| | | | | | | Olicom OC-2220 card, and maybe others. Submitted by: iwasaki Reviewed by: mdodd
* Document the pmtimer driver.iwasaki2000-09-261-1/+2
| | | | Pointed-out by: esu@yk.rim.or.jp (Shinya Esu)
* Formatting fix on ACPI options. Sort them, comment out negative options.iwasaki2000-09-251-4/+4
| | | | Suggested by: bde
* add feeder_fmt.ccg2000-09-231-1/+3
|
* Enable the ESS Maesto driver.jhb2000-09-231-1/+1
| | | | Approved by: cg
* Merged from sys/conf/options.i386 revision 1.139.kato2000-09-231-2/+0
|
* Remove the NCPU, NAPIC, NBUS, NINTR config options. Make NAPIC,ps2000-09-223-14/+0
| | | | | | NBUS, NINTR dynamic and set NCPU to a maximum of 16 under SMP. Reviewed by: peter
* Use quoted includes instead of full path references inside the aic7xxxgibbs2000-09-221-1/+1
| | | | | | sequencer files. Different platforms place the included files in different locations and it is easier to modify the include path passed as arguments to the assembler than adding #ifdef support to the assembler.
* Fix LINT breakage by options ACPI_NO_OSDFUNC_INLINE.iwasaki2000-09-211-4/+4
| | | | | | | Also space/tab-fix in NOTE. Grrr, my bad. Pointed-out by: eivind
* Add in and document two new debugging options used in the mutex code:jhb2000-09-211-0/+8
| | | | SMP_DEBUG and WITNESS.
* Add in documentation and examples of the KTR kernel config options.jhb2000-09-211-0/+19
| | | | Prompted by: phk's kernel include script
* Add a new driver for the AMD PCnet/FAST, FAST+ and Home PCI adapters.wpaul2000-09-201-0/+1
| | | | | | | | | | | | | | Previously, these cards were supported by the lnc driver (and they still are, but the pcn driver will claim them first), which is fine except the lnc driver runs them in 16-bit LANCE compatibility mode. The pcn driver runs these chips in 32-bit mode and uses the RX alignment feature to achieve zero-copy receive. (Which puts it in the same class as the xl, fxp and tl chipsets.) This driver is also MI, so it will work on the x86 and alpha platforms. (The lnc driver is still needed to support non-PCI cards. At some point, I'll need to newbusify it so that it too will me MI.) The Am79c978 HomePNA adapter is also supported.
* Add a homePNA PHY driver. This is really only a stub: MII-based homePNAwpaul2000-09-201-0/+1
| | | | | PHYs tend to look like 10mbps PHYs with no autonegotiation. This allows us to display the proper media type and link status however.
* Mention the AAC_COMPAT_LINUX optionmsmith2000-09-191-0/+5
|
* Document ENABLE_VFS_IOOPTeivind2000-09-191-1/+12
|
* I have no idea how a '#' became a '*'...phk2000-09-161-1/+1
| | | | Spotted by: Bernd Walter <ticso@cicely5.cicely.de>
* Update for aic7xxx driver reorganization.gibbs2000-09-161-8/+9
|
* Make LINT compile.phk2000-09-161-4/+3
|
* Reserve major number 156 for uscannern_hibma2000-09-151-0/+1
|
* Add pmtimer instance.iwasaki2000-09-141-0/+2
|
* Add Timer device driver for power management events.iwasaki2000-09-141-0/+1
| | | | | | | | | | | | | | | | The code for suspend/resume is derived from APM device driver. Some people suggested the original code is somewhat buggy, but I'd like to just move it from apm.c without any major changes for the initial version. This code should be refined later. To use pmtimer to adjust time at resume time, add device pmtimer in your kernel config file, and add hint.pmtimer.0.at="isa" in your device.hints Reviewed by: -current, bde
* Take out the RANDOMDEV option. The entropy device is a (pseudo-)devicemarkm2000-09-141-1/+0
| | | | now.
* Install the kernel KLM as "kernel" by default.obrien2000-09-144-4/+4
|
* - Newbus'ify and bus_space'ify.nyan2000-09-143-2/+4
| | | | | | | | | - Separate bus dependent part and independent part. - Moved source files to sys/dev/fe (repo copied). - Fixed some comments by chi@bd.mbn.or.jp (Chiharu Shibata) Tested by: bsd-nomads@clave.gr.jp and FreeBSD98-testers@jp.freebsd.org
* Add Quicknet LineJACK and PhoneJACK cardsroger2000-09-141-0/+1
|
OpenPOWER on IntegriCloud