summaryrefslogtreecommitdiffstats
path: root/sys/modules
Commit message (Collapse)AuthorAgeFilesLines
* Add uart_subr.cmarcel2004-03-201-1/+1
|
* Generate opt_inet.h.fjoe2004-03-181-1/+5
| | | | Add opt_inet.h to SRCS.
* Move the arl to i386 only.nyan2004-03-161-1/+1
|
* Remove the module reference for RAIDframescottl2004-03-161-1/+0
|
* Remove RAIDFrame. It hasn't worked since GEOM replaced the old diskscottl2004-03-161-28/+0
| | | | | | mini-layer. I don't have time to bing it forward into the GEOM world, and no one else has stepped forward to claim it. It'll be in the Attic for safe keeping for now.
* Add arl(4): driver for Aironet Arlan 655 wireless adapters.fjoe2004-03-152-0/+12
| | | | MFC after: 2 weeks
* Kill bogus isa compat opt file.imp2004-03-151-1/+1
|
* Link pf to the build and install:mlaier2004-03-081-0/+9
| | | | | | | | | | | | | | | | This adds the former ports registered groups: proxy and authpf as well as the proxy user. Make sure to run mergemaster -p in oder to complete make installworld without errors. This also provides the passive OS fingerprints from OpenBSD (pf.os) and an example pf.conf. For those who want to go without pf; it provides a NO_PF knob to make.conf. __FreeBSD_version will be bumped soon to reflect this and to be able to change ports accordingly. Approved by: bms(mentor)
* Add a netgraph node to handle ATM LLC encapsulation. This currently handlesbenno2004-03-081-0/+6
| | | | | | | | | | ethernet (tested) and FDDI (not tested). The main use for this is on ADSL (or other ATM) connections where bridged ethernet is used, PPPoE being a prime example. There is no manual page as yet, I will write one shortly. Reviewed by: harti
* Add preliminary support for PCMCIA devices in addition to PCI/cardbus.wpaul2004-03-072-2/+2
| | | | | | | | | | | | if_ndis.c has been split into if_ndis_pci.c and if_ndis_pccard.c. The ndiscvt(8) utility should be able to parse device info for PCMCIA devices now. The ndis_alloc_amem() has moved from kern_ndis.c to if_ndis_pccard.c so that kern_ndis.c no longer depends on pccard. NOTE: this stuff is not guaranteed to work 100% correctly yet. So far I have been able to load/init my PCMCIA Cisco Aironet 340 card, but it crashes in the interrupt handler. The existing support for PCI/cardbus devices should still work as before.
* - Some older Atheros drivers want KeInitializeTimer(), so implement it,wpaul2004-03-041-1/+0
| | | | | | | | | | | | | | | | | along with KeInitializeTimerEx(), KeSetTimer(), KeSetTimerEx(), KeCancelTimer(), KeReadStateTimer() and KeInitializeDpc(). I don't know for certain that these will make the Atheros driver happy since I don't have the card/driver combo needed to test it, but these are fairly independent so they shouldn't break anything else. - Debugger() is present even in kernels without options DDB, so no conditional compilation is necessary (pointed out by bde). - Remove the extra km_acquirecnt member that I added to struct kmutant and embed it within an unused portion of the structure instead, so that we don't make the structure larger than it's defined to be in Windows. I don't know what crack I was smoking when I decided it was ok to do this, but it's worn off now.
* Add proper support for DbgPrint(): only print messages if bootverbosewpaul2004-03-031-0/+1
| | | | | | | | is set, since some drivers with debug info can be very chatty. Also implement DbgBreakPoint(), which is the Windows equivalent of Debugger(). Unfortunately, this forces subr_ntoskrnl.c to include opt_ddb.h.
* 1. Add modules makefile for Cronyx Tau/ISA driver (ctau).rik2004-03-021-0/+37
| | | | Approved by: imp (mentor)
* Netgraph node type for IEEE 802.1Q VLAN tagging.ru2004-03-012-1/+8
|
* Hook acpi_video up to the build.njl2004-03-011-1/+1
|
* Add the ACPI standard video extensions driver. I've done some style cleanupnjl2004-03-011-0/+11
| | | | | | but a bit more reamins to be done. For now, it is usable. Submitted by: Taku YAMAMOTO <taku@cent.saitama-u.ac.jp>
* add driver for BWCT console management serialsticso2004-03-012-0/+10
|
* Clean all the object files whether or not ACPI_DEBUG is specified.njl2004-02-281-1/+1
|
* add support DM9601(DAVICOM USB to Ethernet MAC Controller with Integrated ↵sanpei2004-02-282-0/+10
| | | | | | | | | | 10/100 PHY) - Corega FEther USB-TXC PR: kern/62932 Submitted by: HASHI Hiroaki <hashiz@tomba.cskk-sv.co.jp> Obtained from: NetBSD
* Tweak existing header and other build infrastructure to be able to buildmlaier2004-02-263-0/+80
| | | | | | | pf/pflog/pfsync as modules. Do not list them in NOTES or modules/Makefile (i.e. do not connect it to any (automatic) builds - yet). Approved by: bms(mentor)
* Connect geom_concat.ko module to the build.pjd2004-02-231-0/+1
| | | | Approved by: scottl (mentor)
* Makefile needed for building geom_concat module.pjd2004-02-191-0/+8
| | | | Approved by: scottl (mentor)
* Adding missing cx (cronyx/Sigma) entry.rik2004-02-141-0/+2
| | | | Approved by: imp (mentor)
* Removed -g from CFLAGS. There is a better way to build debuggingru2004-02-1310-16/+6
| | | | | | versions of the modules, and unconditionally putting -g in CFLAGS has negative impact on the size of the resulting .ko object, even now that debugging symbols are always stripped.
* Always build ext2fs module. There is no written policy preventing theobrien2004-01-281-4/+0
| | | | building of GPL'ed modules.
* Enable ndis for AMD64 (for the time that modules are supported)...obrien2004-01-281-0/+4
|
* Add NO_BLUETOOTH knob to the build processemax2004-01-281-0/+2
| | | | | Requested by: phk Reviewed by: imp (mentor), ru
* Removed custom "load" and "unload" targets.ru2004-01-194-27/+0
| | | | | Removed "deinstall" targets -- the idea is to provide the standard "deinstall" target.
* Normalize SUBDIR.ru2004-01-193-20/+21
|
* - Build things in pure alphabetical dictionary order.ru2004-01-161-148/+227
| | | | | | | | | | - Unify the conditional assignments section so that architectural exclusions come first, sorted, then options and !options, sorted by the option name, also in directory order, then architecture specific sections, sorted by the architecture name, with i386 being a traditional exception. Prodded by: bde
* Use generic net80211 framework for awi driver.onoe2004-01-151-1/+1
| | | | | | Restore awi to be workable again; it was broken.. XXX: The initialization is still unreliable yet, it sometimes fails on some card.
* Include "../Makefile.inc" to propagate the configuration to subdirectories.nyan2004-01-131-0/+3
|
* MODULE_DEPEND is a C macro, not a make(1).ru2004-01-131-1/+0
|
* bsd.kmod.mk does not deal with manpages anymore.ru2004-01-1324-25/+0
|
* Don't put .depend in CLEANFILES, it's cleaned by cleandepend.ru2004-01-131-1/+0
|
* Hook up acpi_toshibanjl2004-01-121-1/+1
|
* Add the ACPI Toshiba extras driver (hotkeys, LCD backlight, video output,njl2004-01-111-0/+9
| | | | | | forced fan control, and CPU throttling). Submitted by: Hiroyuki Aizu <aizu@navi.org>
* Add Audigy support.obrien2004-01-111-2/+11
| | | | | | I started with a year-old patch by Orlando Bassotto <orlando.bassotto@ieo-research.it>, and ported it to 5.2-CURRENT along with fixing the problems working with pre-Audigy cards.
* The ida module is not needed for pc98.nyan2004-01-111-1/+1
|
* ida(4) module. PCI only for now.mdodd2004-01-112-0/+10
|
* Implement NdisOpenFile()/NdisCloseFile()/NdisMapFile()/NdisUnmapFile().wpaul2004-01-091-1/+1
| | | | | | | | | By default, we search for files in /compat/ndis. This can be changed with a systcl. These routines are used by some drivers which need to download firmware or microcode into their respective devices during initialization. Also, remove extraneous newlines from the 'built-in' sysctl/registry variables.
* Always clean all files, including ones under ACPI_DEBUG when doing anjl2004-01-081-7/+9
| | | | "make clean".
* Use double quotes instead of single quotes for echos to build optionsbde2003-12-293-3/+4
| | | | | headers as in most other modules Makefiles (5 yesterday, none now). Fixed any simple nearby style bugs (not many).
* Fixed some style bugs (mainly the bad examples @echo, NOMAN, and non-usebde2003-12-291-10/+6
| | | | | | | of ${.TARGET}). This was the last instances of @echo in module Makefiles after it was removed in sio/Makefile. NOMAN is nonsense in module Makefiles, and was removed, but came back here and in too many other places.
* Fixed some style bugs:bde2003-12-291-8/+6
| | | | | | | | - SRCS was totally disordered. - the echos to create options headers were hidden using '@'. - the args of echos to create options headers were single-quoted. - the target names for the rules to create options headers were repeated. - the unused option COMPAT_FREEBSD4 was put in opt_compat.h.
* Fixed some style bugs. SRCS and the opt_*.h rules were totallybde2003-12-291-11/+10
| | | | | disordered. This commit only fixes the external disorder by rearranging whole lines.
* Fix to support pc98 and currect typo.nyan2003-12-281-2/+11
|
* New sio module. A number of people have suggested this over the yearsimp2003-12-271-0/+25
| | | | | | | | | | (most recently bde), so I'll commit the module I've had knocking around in my tree for a while. This may have some rough edges, so if you are able to build it on non-i386 platform (including pc98) please let me know you succeeded. When I get enough reports, I'll connect it to the build. If there are problems, feel free to fix them. Suggested by: bde
* Move the acpi module down a directory. This will allow us to importnjl2003-12-242-76/+81
| | | | other ACPI-specific drivers into sys/modules/acpi/.
* Push m_apply() and m_getptr() up into the colleciton of standard mbufbms2003-12-151-1/+1
| | | | | | | | routines, and purge them from opencrypto. Reviewed by: sam Obtained from: NetBSD Sponsored by: spc.org
OpenPOWER on IntegriCloud