summaryrefslogtreecommitdiffstats
path: root/lkm
Commit message (Collapse)AuthorAgeFilesLines
* Delete obnoxious uprintf()s in load/unload procedures.wollman1995-11-295-15/+5
|
* Add Lyndon's man page.joerg1995-11-282-1/+67
| | | | | | Closes PR # docs/842 Submitted by: lyndon@orthanc.com (Lyndon Nerenberg)
* Changed the first (name) arg of MOD_DEV(), MOD_EXEC() and MOD_MISC()bde1995-11-149-38/+55
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | from a string to an identifier so that it can be used to generate declarations and strings. It's much easier to stringize an identifier than to identifize a string. A uniform naming scheme must be used for the automatically generated things to apply. This is a feature. Used the module identifer to generate prototypes for the module load, unload and stat functions. Removed the few prototypes for these that already existed. Used the module identifier to generate a unique struct tag in MOD_DEV(). This should probably be done for all the MOD_*() macros. Moved the trailing semicolon from the MOD_*() macro definitions to the macro invocations that didn't already (bogusly) have it. Staticized the module load and unload functions. Added function return types for the module load, unload and stat functions. lkm/ibcs2/ibcs2.c: Included <sys/sysproto.h> to get everything prototyped. Cleaned up #includes. lkm/ibcs2/ipfw.c: Cleaned up #includes. lkm/linux/linux.c: The module name had to change from "linux_emulator" to "linux_mod" to be automatically generated. Cleaned up #includes. lkm/syscons/*/*_saver.c: Completed delcarations of function pointers. sys/i386/isa/atapi.c: The module name had to change from "atapi" to "atapi_mod" to be automatically generated. sys/i386/isa/wcd.c: Used the fixed MOD_DEV(). This module has two devices and expanded the macro in the source instead of fixing it. The module names had to change from "wcd" and "rwcd" to "wcd_mod" and "rwcd_mod" to be automatically generated. sys/pccard/pcic.c: The module name had to change from "pcic" to "pcic_mod" to be automatically generated.
* Replaced nosys() by lkm_nullcmd(). Always call lkm load/unload/statbde1995-11-139-18/+23
| | | | | functions instead of skipping the call if the function is nosys(). nosys() returned the wrong value as well as having the wrong type.
* Update if_ppp lkm to pull in the new files...peter1995-10-311-3/+3
|
* Add extra export symbols for the ATAPI generic interface.peter1995-10-281-3/+7
| | | | And a couple of minor fiddles in the process..
* Reattach atapi and wcd to the lkm Makefile, these compile for me now.peter1995-10-281-4/+4
|
* Sorry.. I didn't mean to re-enable wcd yetpeter1995-10-281-3/+3
|
* Do a pass over the broken LKM's and update them to use the "new"peter1995-10-2813-48/+47
| | | | | | | | | | | | | | | convention of having their entry point named "<modname>_mod"". Symorder is enforcing this when the current bsd.kmod.mk is installed. I've not tested all these, but at least they all compile now. Reattach them to the makefile. Note that the change that I made to symorder needs to be compiled and installed before any LKM's will work - the last version was corrupting the relocation tables. A "make world" will to this, but if you manually run a make on the lkm's you'll need to take care of it by hand.
* Temp. disable following modules:ache1995-10-281-4/+8
| | | | | | atapi coff ibcs2 ipfw linux syscons wcd (until they will be fixed) It allows to build/install other modules from top
* Revert to default entry point.phk1995-10-151-2/+1
|
* Only export our 'init' symbol.phk1995-10-151-1/+2
|
* atapi and wcd LKMs.dg1995-10-142-0/+56
| | | | Submitted by: Serge Vakulenko, <vak@cronyx.ru>
* Remove socksys modload command from ibcs2 startup shell script.swallace1995-10-101-2/+1
|
* Remove socksys lkm from makefile list.swallace1995-10-101-2/+2
|
* Add prototypes and declare function return type in ibcs2.cswallace1995-10-102-5/+14
| | | | Add new files to Makefile.
* Update the version in the snake saver...peter1995-09-041-2/+2
| | | | | Something similar needs to happen to RELENG_2_1_0 - or better yet, this should become dynamic...
* Remove my xxxinit hack. It was too gross.phk1995-08-251-2/+2
|
* pcic lkm for the pccard stuff.phk1995-08-242-2/+12
|
* First incarnation of our Linux emulator or rather compatibility code.sos1995-06-254-2/+79
| | | | | | | | | | | | This first shot only incorporaties so much functionality that DOOM can run (the X version), signal handling is VERY weak, so is many other things. But it meets my milestone number one (you guessed it - running DOOM). Uses /compat/linux as prefix for loading shared libs, so it won't conflict with our own libs. Kernel must be compiled with "options COMPAT_LINUX" for this to work.
* I was wrong. I thought that the ip_mroute lkm would still compile, but itwollman1995-06-131-2/+2
| | | | | seems to have stopped working on me. Disable it until I get a chance to fix it.
* Remove trailing whitespace.rgrimes1995-05-3010-39/+39
|
* Changed relase number in snake_saver.c from 2.1 to 2.0.5sos1995-05-161-2/+2
|
* Fix declaration of palette[] so that fade saver doesn't cause panics.bde1995-05-141-1/+1
|
* Put vnode_if.h and vnode_if.c into CLEANFILES that are automaticallyats1995-04-151-2/+2
| | | | generated. Should this lkm set VFS_LKM ?
* Update to new screen update method.sos1995-03-302-4/+6
|
* Forgot pppcompress.c in PPP module.wollman1995-03-201-2/+2
|
* Forgot slcompress.c in SLIP module.wollman1995-03-201-2/+2
|
* The discard, tunnel, SLIP, and PPP network interface pseudo-deviceswollman1995-03-205-2/+91
| | | | | are now dynamically loadable. It doesn't make sense to do the same for the loopback.
* Make in lkm/syscons fails due to missing include for apm stuff.nate1995-03-031-0/+1
| | | | Submitted by: John Capo <jc@irbs.com> and John Hay <jhay@mikom.csir.co.za>
* Removed redundant delcaration of msdosfs_denode.c from the SRCS line.nate1995-03-031-3/+3
|
* Once and for all: Never a ${DESTDIR} in ${BINDIR} !phk1995-02-235-10/+10
|
* Next syscons update (given up on numbering :)sos1995-02-2213-2/+567
| | | | | | | | | | | Removed screensavers from syscons, they are now LKM's. This makes it possible to do some really "interesting" screensavers... Fixed bug that sometimes caused garbage to appear when leaving "scroll-lock" history. Reformattet indentation, it got too deep for a normal 80 pos screen. Split up in syscons.c & syscons.h for use with the saver-lkm's. Temporarily removed -s option from vidcontrol, savers should now be loaded with modload.
* Add ipfw to /lkm Makefile..uups..ugen1995-01-301-3/+3
|
* Remove typedefs that are now in <sys/conf.h>.bde1995-01-241-11/+1
|
* Checking new lkm structure..ugen1995-01-121-2/+2
|
* Firewall can be used as lkm module.To use itugen1995-01-122-0/+104
| | | | | | | | firewall should *NOT* be compiled into kernel. Then it can be loaded.This is misc module but i'v got no problemms with it,so shouldn't you i suppose.. BTW this is very stupid to have one module in CVS for ALL lkm's...
* install command was missing a ${DESTDIR}.wollman1994-12-111-2/+2
|
* Again, this is not a filesystem so don't compile it as if it were.wollman1994-10-271-3/+3
|
* ibcs2 is not a filesystem, don't compile it as if it were.wollman1994-10-271-3/+3
|
* Added socksys modulesos1994-10-161-2/+2
|
* Added load of socksys driver.sos1994-10-161-1/+2
|
* LKM for socksys driver (iBCS2 emulation)sos1994-10-162-0/+88
|
* Fix install of ibcs2 script.sos1994-10-141-3/+4
|
* Added coff & ibcs2 modules.sos1994-10-141-2/+2
| | | | | | Reviewed by: Submitted by: Obtained from:
* LKM module for the coff loader (used for iBCS2 emulation)sos1994-10-142-0/+68
|
* LKM module for the iBCS2 emulatorsos1994-10-143-10/+27
|
* Disable MFS as loadable until someone figures out how to make it work.wollman1994-09-281-2/+6
|
* LKM for ibcs2 supportsos1994-09-252-0/+72
|
* Create NFS LKM.wollman1994-09-222-2/+13
|
OpenPOWER on IntegriCloud