aboutsummaryrefslogtreecommitdiff
path: root/sys/modules
Commit message (Collapse)AuthorAgeFilesLines
* 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
* The FreeBSD lkm design is aout specific.John Birrell1998-05-151-1/+3
| | | | Notes: svn path=/head/; revision=36059
* Give this a shot at actually working as an LKM..Peter Wemm1998-03-271-3/+11
| | | | Notes: svn path=/head/; revision=34905
* Fixed a race to build the `@' and `machine' symlinks early enoughBruce Evans1998-03-191-2/+2
| | | | | | | for `make -jN'. Notes: svn path=/head/; revision=34675
* The coff LKM needs IBCS2 to be able to link (for the 'make regress'Eivind Eklund1998-03-121-1/+2
| | | | | | | linktest) - add this as a dependency. Notes: svn path=/head/; revision=34529
* Don't add files handled by bsd.kmod.mk to CLEANFILES. Don't add never-Bruce Evans1998-02-252-4/+4
| | | | | | | generated files to CLEANFILES. Notes: svn path=/head/; revision=33802
* Don't reference (nonesxistent) qcam module.Mike Smith1998-02-181-2/+2
| | | | Notes: svn path=/head/; revision=33574
* Back out opt_diagnostic.h changes.Eivind Eklund1998-02-0610-61/+26
| | | | Notes: svn path=/head/; revision=33143
* Make the LKMs handle DIAGNOSTIC as a new-style option.Eivind Eklund1998-02-0410-26/+61
| | | | 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-018-16/+11
| | | | | | | | 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
* Don't put a path to "sys" in ${CFLAGS} here. bsd.kmod.mk now handlesBruce Evans1998-02-016-12/+12
| | | | | | | this more generally. Notes: svn path=/head/; revision=32988
* Don't handle the `machine' symlink or related include paths here.Bruce Evans1998-02-013-25/+8
| | | | | | | bsd.kmod.mk now handles it more generally. Notes: svn path=/head/; revision=32987
* Fixed breakage from converting NULLFS_DEBUG to a new-style option.Bruce Evans1998-02-011-2/+6
| | | | Notes: svn path=/head/; revision=32986
* LKM-support for converting all file-system options to new-style options.Eivind Eklund1998-01-243-9/+18
| | | | Notes: svn path=/head/; revision=32725
* Include <machine/pc/display.h>, not <i386/include/pc/display.h>. This isBruce Evans1998-01-163-6/+6
| | | | | | | | | not quite correct, because the Makefiles in lkm/syscons don't set up the `machine' symlink, but other, more volatile headers in <machine> are already used. Notes: svn path=/head/; revision=32571
* Minor fixups after INET option change.Eivind Eklund1998-01-094-12/+41
| | | | Notes: svn path=/head/; revision=32357
* Make the LKMs compile with the INET option as a newstyle option inEivind Eklund1998-01-084-14/+28
| | | | | | | opt_inet.h. Notes: svn path=/head/; revision=32352
* Fix my typo.Eivind Eklund1997-12-161-2/+2
| | | | | | | Submitted by: helbig Notes: svn path=/head/; revision=31789
* Handle COMPAT_43 define -> option change.Eivind Eklund1997-12-161-4/+7
| | | | Notes: svn path=/head/; revision=31783
* Whoops - fix this after yesterday's IPX option changes. Also fixEivind Eklund1997-12-161-3/+12
| | | | | | | | | minor buglet when neither bsdcomp, deflate or filter is used. Pointed out by: Chris Timmons <skynyrd@opus.cts.cwu.edu> Notes: svn path=/head/; revision=31781
* - The daemon might go off the screen and crashed the system if theKazutaka YOKOTA1997-10-261-35/+148
| | | | | | | | | | | | | | | | | | screen size was changed while the screen saver was inactive. Adjust the positions of the daemon and the text and clip them accordingly each time. - Don't call set_border() too often. Some video chip may produce flicker. Pointed out by tony@dell.com - Don't fill the entire screen with blank char every time the saver is called. Blank only the part of the screen where the daemon and the text was previously printed. Notes: svn path=/head/; revision=30725
* Update Makefile to know about PPP_FILTER and fix the PPP_BSDCOMP andPeter Wemm1997-10-181-6/+13
| | | | | | | | | | | PPP_DEFLATE options... The code uses #if defined(PPP_DEFLATE) etc, so the original method of "#define PPP_DEFLATE 0" did not actually disable anything. It was not possible to configure out bsdcomp or zlib compression. Also, join the settings for PPP_FILTER and NBPFILTER together since they are related here (can't have PPP_FILTER without NBPFILTER). Notes: svn path=/head/; revision=30530
* Make the blank screen saver work with MDA and CGA. The fade and greenKazutaka YOKOTA1997-10-044-39/+171
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | savers are also modified so that they behave in the same way as the blank saver on MDA and CGA, although it's not the way these screen savers are supposed to work, but fading monitor and tickling green monitor cannot be done on MDA and CGA, AFAIK. So, this is the second best solution. As of this change, the current state of support of screen savers is summarized in the following table. MDA CGA EGA VGA blank OK OK NA OK daemon OK OK OK OK fade * * NA OK green * * NA OK snake OK OK OK OK star OK OK OK OK OK: works NA: doesn't work, the module cannot be loaded for this adapter. *: behave the same way as the blank saver. As you can see, EGA is left out for now. But, we can do no better, as EGA registers cannot be read... Reviewed by: sos Notes: svn path=/head/; revision=30095
* Add example for IPFIREWALL_DEFAULT_TO_ACCEPTPeter Wemm1997-09-101-1/+4
| | | | Notes: svn path=/head/; revision=29272
* Remove the vm86 LKM.Jonathan Lemon1997-08-281-2/+2
| | | | Notes: svn path=/head/; revision=28873
* Removed bogus -I path in CFLAGS.Bruce Evans1997-08-261-2/+2
| | | | Notes: svn path=/head/; revision=28800
* make lkm/if_ppp build again.. opt_ppp.h is needed again...John-Mark Gurney1997-08-211-3/+9
| | | | | | | | | similar fix to one provided in pr4348 Closes PR#4348 Notes: svn path=/head/; revision=28526
* Add VM86 to the lkm build.John Dyson1997-08-091-2/+2
| | | | Notes: svn path=/head/; revision=27996
* Don't use /sys.Bruce Evans1997-08-072-4/+4
| | | | | | | Submitted by: Jeremy Lea <reg@shale.csir.co.za> Notes: svn path=/head/; revision=27957
* Fixed bitrot in fpu LKMs.Bruce Evans1997-07-202-5/+6
| | | | Notes: svn path=/head/; revision=27536
* Incorporated lots of fixes and suggestions from Bruce and changes toKazutaka YOKOTA1997-07-1513-160/+112
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | facilitate the new saver loading/unloading notification interface in syscons. daemon_saver: - M_NOWAIT was wrong, since NULL returns are not handled. Just use M_WAITOK. - use `ostype' instead of hard-coded "FreeBSD". Now there is no more hard-coded string! (But, who will run this screen saver on other OS?!) - put macros and data declarations in a consistent order. - -DDEAMON_ONLY and -DSHOW_HOSTNAME options added in the previous commit are removed. Options of this kind can go stale and no one notices because no one uses them. DEAMON_ONLY is just removed. SHOW_HOSTNAME is made default. snake_saver: - use `ostype' and `osrelease' as in the daemon saver. The string changes slightly - there was a hyphen after "FreeBSD"; now there is a space. (It is consistent with uname -a, like the daemon server already is.) all screen savers: - Use the new add_scrn_saver()/remove_scrn_saver() in syscons.c to declare loading/unloading of a screen saver. Removed reference to `current_saver' and the variable `old_saver' as they are not necessary anymore. - The blank, fade and green screen savers manipulate VGA registers. Module loading should fail for non-VGA cards. - `scrn_blanked' is consistently treated as a number/counter rather than boolean. - Some savers touch `scp->start' and `scp->end' to force entire screen update when stopping themselves. This is unnecessary now because syscons.c takes care of that. - cleared up many unused or unnecessary #include statements. - Removed -DLKM from Makefiles. YOU NEED TO RECOMPILE BOTH SCREEN SAVERS AND KERNEL AS OF THIS CHANGE. Notes: svn path=/head/; revision=27427
* Take the OS release string from the kernel variable `osrelease'Kazutaka YOKOTA1997-06-242-5/+34
| | | | | | | | | | | rather than hard-code it in the message text. Optinally include the host name in the message if SHOW_HOSTNAME is defined. The origianl idea and sample code submitted by Angelo Turetta <ATuretta@stylo.it>. Notes: svn path=/head/; revision=26893
* Corrected accidental breakage in the last commit.Kazutaka YOKOTA1997-05-261-3/+3
| | | | | | | Pointed out by: Steve Passe, smp@csn.net Notes: svn path=/head/; revision=26146
* Fixed up ssigala@globalnet.it's "Jumping Daemon" screen saver for < v3.0.David E. O'Brien1997-05-251-4/+4
| | | | Notes: svn path=/head/; revision=26128
* Flip the daemon at the edge of the screen.Kazutaka YOKOTA1997-05-241-14/+53
| | | | | | | Submitted by: Sandro Sigala, Chris Shenton Notes: svn path=/head/; revision=26081
* Introducing "Jumping Daemon" screen saver. This is really cute andKazutaka YOKOTA1997-05-212-0/+224
| | | | | | | | | eye-catching :-) Submitted by: ssigala@globalnet.it Notes: svn path=/head/; revision=25968
* Introducing "Jumping Daemon" screen saver. This is really cute andKazutaka YOKOTA1997-05-212-5/+5
| | | | | | | | | | | eye-catching :-) Submitted by: ssigala@globalnet.it Also fixed some `extern' declarations in saver.h. Notes: svn path=/head/; revision=25967
* 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
* Merge 1.8.2.1 into -current.Jordan K. Hubbard1997-05-011-2/+2
| | | | Notes: svn path=/head/; revision=25342
* Make MOD_* macros almost consistent:Peter Dufault1997-04-061-3/+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=24674
* Make MOD_* macros almost consistent:Peter Dufault1997-04-067-19/+21
| | | | | | | | | | | | | | | | | | | | | | | 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-2258-58/+58
| | | | Notes: svn path=/head/; revision=22982
* Make ibcs2 a little bit saver. Add copyright.Wolfram Schneider1997-02-022-6/+70
| | | | Notes: svn path=/head/; revision=22209
* Upgrade the kbdio rutines to provide queued kbd & mouse events.Søren Schmidt1997-01-152-4/+36
| | | | | | | | | Minor other updates to syscons by me. Submitted by: Kazutaka YOKOTA <yokota@zodiac.mech.utsunomiya-u.ac.jp> Notes: svn path=/head/; revision=21731
* Make the long-awaited change from $Id$ to $FreeBSD$Jordan K. Hubbard1997-01-1458-58/+58
| | | | | | | | | | | 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
* Sort cross references.Wolfram Schneider1997-01-131-3/+3
| | | | Notes: svn path=/head/; revision=21635
* Add a man page for linux(8) (loads the Linux emulator kernel module).Mike Pritchard1997-01-102-2/+47
| | | | Notes: svn path=/head/; revision=21480
* Make snake 3.0-CURRENT here.Jordan K. Hubbard1996-11-111-2/+2
| | | | | | | There's gotta be a better way of syncronizing our release numbers. :-) Notes: svn path=/head/; revision=19643
* Prepare kernel to take advantage of "branded" ELF binaries.Søren Schmidt1996-10-161-4/+4
| | | | Notes: svn path=/head/; revision=18959