summaryrefslogtreecommitdiffstats
path: root/lkm
Commit message (Collapse)AuthorAgeFilesLines
* Bannish ATAPI and ATAPI_STATIC #defines to opt_atapi.h.pst1996-09-062-8/+14
|
* `struct linker_set execsw_set' was declared as const and pointers in itbde1996-09-032-4/+4
| | | | | | | were declared as non-const. This is backwards (_lkm_exec() changes the pointers but all the target `struct execsw's are const). Fixed this and poisoned related declarations to match and removed the bogus casts that hid the bug.
* Added or restored #include of <machine/md_var.h>. Some declarationsbde1996-07-012-4/+10
| | | | moved from <machine/cpufunc.h> to better places.
* Fixed the `machine' link. It pointed to the wrong place, and was createdbde1996-06-251-6/+9
| | | | | | | | | too late to be used in all cases. It should probably be created (early) in bsd.kmod.mk for all LKMs. Use cc instead of cpp | as for the same reasons as in the kernel makefile. CFLAGS isn't split up as well as in the kernel makefile, but cc doesn't pass compiler warning flags to cpp, so there is no need to split it.
* Don't add -I/sys to CFLAGS. bsd.kmod.mk adds the correct (relative)bde1996-06-232-4/+4
| | | | path.
* Don't claim to be a VFS_LKM - generate vnode_if.h by putting it in SRCS.bde1996-06-231-5/+4
| | | | | Don't add -I/sys to CFLAGS. bsd.kmod.mk adds the correct (relative) path.
* Don't (re)define ACTUALLY_LKM_NOT_KERNEL. It wasn't even used by thebde1996-06-231-1/+1
| | | | | | | joy driver proper. Don't add -I/sys to CFLAGS. bsd.kmod.mk adds the correct (relative) path.
* Don't (re)define or use ACTUALLY_LKM_NOT_KERNEL - use the existingbde1996-06-231-1/+1
| | | | | | | | definition of QCAM_MODULE for everything involving LKM'ness. Makefile: Don't add -I/sys to CFLAGS. bsd.kmod.mk adds the correct (relative) path.
* Use IPFIREWALL_MODULE instead of ACTUALLY_LKM_NOT_KERNEL to indicatebde1996-06-231-2/+3
| | | | | | | | | | LKM'ness. ACTUALLY_LKM_NOT_KERNEL is supposed to be so ugly that it only gets used until <machine/conf.h> goes away. bsd.kmod.mk should define a better-named general macro for this. Some places use PSEUDO_LKM. This is another bad name. Makefile: Added IPFIREWALL_VERBOSE_LIMIT option (commented out).
* Disabled unusable union lkm.bde1996-06-231-3/+3
|
* Add new parts, kernel not booted in other caseache1996-06-181-3/+3
|
* Add ccd.asami1996-06-121-2/+2
|
* This commit was generated by cvs2svn to compensate for changes in r16314,asami1996-06-121-0/+17
|\ | | | | | | which included commits to RCS files with non-trunk default branches.
| * A Makefile for a ccd lkm. You need to explicitly /sbin/modload it forasami1996-06-121-0/+17
| | | | now. Someday I'll add a hook to ccdconfig to do it automatically.
* ``mv'' -> ``mv -f''wosch1996-05-072-2/+6
| | | | | ``rm'' -> ``rm -f'' so mv/rm may not ask for confirmation if you are not root
* Add in qcam module (forgot)pst1996-03-241-2/+2
|
* Add in both parts of the driver. LKM qcam driver now works.pst1996-03-211-1/+1
|
* This commit was generated by cvs2svn to compensate for changes in r14640,pst1996-03-163-0/+71
|\ | | | | | | which included commits to RCS files with non-trunk default branches.
| * Bring in support code to make QuickCam driver a LKM.pst1996-03-163-0/+71
| | | | Stolen from: jmz
* Add joy to the SUBDIR list.jmz1996-03-161-2/+2
|
* Build LKM for joystick driver.jmz1996-03-163-0/+67
|
* linux_interp now moved into sys/i386/linux/linux_sysvec.c, but stillpeter1996-03-101-6/+2
| | | | connected at load and unload time from here.
* First attempt at FreeBSD & Linux ELF support.sos1996-03-102-3/+15
| | | | | | | | | | | | | | | | | Compile and link a new kernel, that will give native ELF support, and provide the hooks for other ELF interpreters as well. To make native ELF binaries use John Polstras elf-kit-1.0.1.. For the time being also use his ld-elf.so.1 and put it in /usr/libexec. The Linux emulator has been enhanced to also run ELF binaries, it is however in its very first incarnation. Just get some Linux ELF libs (Slackware-3.0) and put them in the prober place (/compat/linux/...). I've ben able to run all the Slackware-3.0 binaries I've tried so far. (No it won't run quake yet :)
* Update the linux lkm to use the new file list and build routine.peter1996-03-021-5/+25
| | | | This is a bit of a kludge and needs more work.
* Make the ipfw LKM work again.phk1996-02-242-94/+3
| | | | This concludes this round of updates to ipfw, have at it!
* Correct some man page cross references and some filempp1996-02-051-2/+1
| | | | locations.
* Add missing ${DESTDIR} to afterinstall: target.rgrimes1996-01-271-2/+2
|
* Attempt to fix the procfs LKM after making some of the procfspeter1996-01-241-5/+3
| | | | code shared with ptrace and "standard" in the config.
* No longer generate empty opt_sysvipc.h, and no longer issue -DSYSVSHM etcpeter1996-01-081-7/+3
| | | | | for the CFLAGS. Now, it tracks whatever the booted kernel has rather than being specifying what features your kernel has at lkm build time.
* No longer generate empty opt_sysvipc.h..peter1996-01-081-6/+2
|
* Detach fpu and gnufpu from Makefile.. These lkm's build (or used to)peter1996-01-061-2/+5
| | | | | but are not quite useable. (fpu is used by init, and process switch apparently..)
* Add opt_sysvipc.h rules similar as in ibcs2 Makefileache1996-01-061-2/+6
| | | | (make fails in old case)
* Automatically create an empty opt_sysvipc.h to mimic old optionwollman1996-01-041-2/+6
| | | | environment.
* recording cvs-1.6 file deathpeter1995-12-302-78/+0
|
* Added SYSVSHM definesos1995-12-291-2/+2
|
* Reformatted the list of broken modules and added ip_mroute_mod to it.bde1995-12-161-5/+2
|
* Two x87 emulators as LKMs.phk1995-12-143-2/+29
| | | | | If somebody with the right HW would make the change to /etc/rc to use this, we could rip MATH_EMULATE from GENERIC...
* 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>
OpenPOWER on IntegriCloud