aboutsummaryrefslogtreecommitdiff
path: root/lkm/ibcs2
Commit message (Collapse)AuthorAgeFilesLines
* Remove LKM's depricated by modules.Søren Schmidt1998-12-274-199/+0
| | | | Notes: svn path=/head/; revision=42098
* /usr/bin/ibcs2 comes from src/sys/modules/ibcs2 now. This is probablyPeter Wemm1998-11-111-4/+4
| | | | | | | | | the wrong place, but we cannot install both into the same file. I suspect there should be a usr.bin/{linux|ibcs2}/ directory conataining these. Notes: svn path=/head/; revision=41075
* Sort cross references.Wolfram Schneider1998-08-311-3/+3
| | | | Notes: svn path=/head/; revision=38702
* Removed reference to obsolete file "README.iBCS2".Joseph Koshy1998-05-191-2/+1
| | | | | | | | Submitted by: Max Euston <max@jmrodgers.com> PR: 6679 Notes: svn path=/head/; revision=36171
* Back out opt_diagnostic.h changes.Eivind Eklund1998-02-061-6/+3
| | | | Notes: svn path=/head/; revision=33143
* Make the LKMs handle DIAGNOSTIC as a new-style option.Eivind Eklund1998-02-041-3/+6
| | | | Notes: svn path=/head/; revision=33105
* Make this work with SPX_HACK as a new-style option.Eivind Eklund1998-02-041-3/+7
| | | | Notes: svn path=/head/; revision=33070
* Don't put "-I." in ${CFLAGS} here. bsd.kmod.mk now puts an absoluteBruce Evans1998-02-011-2/+2
| | | | | | | | path to the obj directory in ${CFLAGS}. This is actually equivalent to "-I." since bsd.kmod.mk also puts -I- in ${CFLAGS}. Notes: svn path=/head/; revision=32990
* Also quiet down the ibcs2 startup (same reason as linux lkm - it screwsJordan K. Hubbard1997-05-011-2/+2
| | | | | | | the console output). Notes: svn path=/head/; revision=25343
* Make MOD_* macros almost consistent:Peter Dufault1997-04-061-2/+3
| | | | | | | | | | | | | | | | | | | | | | | Use the name argument almost the same in all LKM types. Maintain the current behavior for the external (e.g., modstat) name for DEV, EXEC, and MISC types being #name ## "_mod" and SYCALL and VFS only #name. This is a candidate for change and I vote just the name without the "_mod". Change the DISPATCH macro to MOD_DISPATCH for consistency with the other macros. Add an LKM_ANON #define to eliminate the magic -1 and associated signed/unsigned warnings. Add MOD_PRIVATE to support wcd.c's poking around in the lkm structure. Change source in tree to use the new interface. Reviewed by: Bruce Evans Notes: svn path=/head/; revision=24673
* Revert $FreeBSD$ back to $Id$Peter Wemm1997-02-224-4/+4
| | | | Notes: svn path=/head/; revision=22982
* Make ibcs2 a little bit saver. Add copyright.Wolfram Schneider1997-02-021-3/+35
| | | | Notes: svn path=/head/; revision=22209
* Make the long-awaited change from $Id$ to $FreeBSD$Jordan K. Hubbard1997-01-144-4/+4
| | | | | | | | | | | This will make a number of things easier in the future, as well as (finally!) avoiding the Id-smashing problem which has plagued developers for so long. Boy, I'm glad we're not using sup anymore. This update would have been insane otherwise. Notes: svn path=/head/; revision=21673
* add forgotten $Id$Wolfram Schneider1996-09-221-1/+1
| | | | Notes: svn path=/head/; revision=18471
* Correct some man page cross references and some fileMike Pritchard1996-02-051-2/+1
| | | | | | | locations. Notes: svn path=/head/; revision=13922
* No longer generate empty opt_sysvipc.h..Peter Wemm1996-01-081-6/+2
| | | | Notes: svn path=/head/; revision=13339
* Automatically create an empty opt_sysvipc.h to mimic old optionGarrett Wollman1996-01-041-2/+6
| | | | | | | environment. Notes: svn path=/head/; revision=13227
* Add Lyndon's man page.Joerg Wunsch1995-11-282-1/+67
| | | | | | | | | Closes PR # docs/842 Submitted by: lyndon@orthanc.com (Lyndon Nerenberg) Notes: svn path=/head/; revision=12509
* Changed the first (name) arg of MOD_DEV(), MOD_EXEC() and MOD_MISC()Bruce Evans1995-11-141-9/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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. Notes: svn path=/head/; revision=12276
* Replaced nosys() by lkm_nullcmd(). Always call lkm load/unload/statBruce Evans1995-11-131-2/+2
| | | | | | | | functions instead of skipping the call if the function is nosys(). nosys() returned the wrong value as well as having the wrong type. Notes: svn path=/head/; revision=12250
* Do a pass over the broken LKM's and update them to use the "new"Peter Wemm1995-10-283-5/+8
| | | | | | | | | | | | | | | | | | 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. Notes: svn path=/head/; revision=11857
* Remove socksys modload command from ibcs2 startup shell script.Steven Wallace1995-10-101-2/+1
| | | | Notes: svn path=/head/; revision=11405
* Add prototypes and declare function return type in ibcs2.cSteven Wallace1995-10-102-5/+14
| | | | | | | Add new files to Makefile. Notes: svn path=/head/; revision=11402
* Remove trailing whitespace.Rodney W. Grimes1995-05-301-2/+2
| | | | Notes: svn path=/head/; revision=8871
* install command was missing a ${DESTDIR}.Garrett Wollman1994-12-111-2/+2
| | | | Notes: svn path=/head/; revision=5043
* ibcs2 is not a filesystem, don't compile it as if it were.Garrett Wollman1994-10-271-3/+3
| | | | Notes: svn path=/head/; revision=3946
* Added load of socksys driver.Søren Schmidt1994-10-161-1/+2
| | | | Notes: svn path=/head/; revision=3649
* Fix install of ibcs2 script.Søren Schmidt1994-10-141-3/+4
| | | | Notes: svn path=/head/; revision=3596
* LKM module for the iBCS2 emulatorSøren Schmidt1994-10-143-10/+27
| | | | Notes: svn path=/head/; revision=3582
* LKM for ibcs2 supportSøren Schmidt1994-09-252-0/+72
Notes: svn path=/head/; revision=3089