summaryrefslogtreecommitdiffstats
path: root/sys/modules
Commit message (Collapse)AuthorAgeFilesLines
* Sort cross references.wosch1998-08-311-3/+3
|
* Shut this thing up, like the other LKMsjkh1998-08-241-2/+2
|
* The daemon, snake and star savers should refuse to load if the currentyokota1998-08-063-3/+12
| | | | | video mode is the VESA mode, because they cannot work properly under the VESA mode support as in the current form.
* A better solution to the rm_at_exit problem: Register the exit functionalex1998-07-271-2/+2
| | | | | | | | during first mount. Unregister the exit function at last unmount. Concept by: sef Reviewed by: sef Implemented by: alex
* Override the default VFS LKM dispatch functions so that a modulealex1998-07-251-2/+2
| | | | | unload function can be provided (this is necessary to unregister the at_exit handler).
* Finished previous fix - don't forget to add one dummy options headerbde1998-07-073-39/+30
| | | | | | to CLEANFILES. Fixed lots of style bugs.
* Added a `build-tools' target for internal tools. (linux_genassym maybde1998-07-071-2/+4
| | | | | | | | | not actually work for cross compiling, but that is another problem.) Honor LDFLAGS for building internal tools. (Tools should normally be built static to avoid problems with picking up target shared libraries. bsd.kmod doesn't set -static yet, and has some problems with `LDFLAGS=-static ...' in the environment.)
* Fix the N'th occurance of missed bits due to opt_???? mucking.sos1998-07-023-6/+15
| | | | | | Doesn't anybody TEST code before committing.... This is the N+1'th time these laste couble of days...
* Fixed missing options headers. Options that affect LKMs shouldn'tbde1998-07-011-3/+6
| | | | exist.
* Added opt_vmpage.h to SRCS so that it actually gets created.bde1998-07-011-5/+5
|
* Leading whitespace in Makefile are TABS not spaces....sos1998-06-301-2/+2
|
* add new opt_nfs.h to cleanfiles...jmg1998-06-303-6/+6
|
* fix more of my breakage... :(jmg1998-06-301-1/+5
| | | | create opt_vmpage.h
* fix buildworld hopefully be3fore anyone complains...jmg1998-06-303-3/+9
| | | | | | | | NFS_*TIMO should possibly be converted to sysctl vars (jkh's suggestion), but in some cases it looks like nfs keeps a copy of the value in a struct hash sizes are already ifdef'd KERNEL, so there aren't userland inpact from them...
* Removed reference to obsolete file "README.iBCS2".jkoshy1998-05-191-2/+1
| | | | | Submitted by: Max Euston <max@jmrodgers.com> PR: 6679
* The FreeBSD lkm design is aout specific.jb1998-05-151-1/+3
|
* Give this a shot at actually working as an LKM..peter1998-03-271-3/+11
|
* Fixed a race to build the `@' and `machine' symlinks early enoughbde1998-03-191-2/+2
| | | | for `make -jN'.
* The coff LKM needs IBCS2 to be able to link (for the 'make regress'eivind1998-03-121-1/+2
| | | | linktest) - add this as a dependency.
* Don't add files handled by bsd.kmod.mk to CLEANFILES. Don't add never-bde1998-02-252-4/+4
| | | | generated files to CLEANFILES.
* Don't reference (nonesxistent) qcam module.msmith1998-02-181-2/+2
|
* Back out opt_diagnostic.h changes.eivind1998-02-0610-61/+26
|
* Make the LKMs handle DIAGNOSTIC as a new-style option.eivind1998-02-0410-26/+61
|
* Make this work with SPX_HACK as a new-style option.eivind1998-02-041-3/+7
|
* Don't put "-I." in ${CFLAGS} here. bsd.kmod.mk now puts an absolutebde1998-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}.
* Don't put a path to "sys" in ${CFLAGS} here. bsd.kmod.mk now handlesbde1998-02-016-12/+12
| | | | this more generally.
* Don't handle the `machine' symlink or related include paths here.bde1998-02-013-25/+8
| | | | bsd.kmod.mk now handles it more generally.
* Fixed breakage from converting NULLFS_DEBUG to a new-style option.bde1998-02-011-2/+6
|
* LKM-support for converting all file-system options to new-style options.eivind1998-01-243-9/+18
|
* Include <machine/pc/display.h>, not <i386/include/pc/display.h>. This isbde1998-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.
* Minor fixups after INET option change.eivind1998-01-094-12/+41
|
* Make the LKMs compile with the INET option as a newstyle option ineivind1998-01-084-14/+28
| | | | opt_inet.h.
* Fix my typo.eivind1997-12-161-2/+2
| | | | Submitted by: helbig
* Handle COMPAT_43 define -> option change.eivind1997-12-161-4/+7
|
* Whoops - fix this after yesterday's IPX option changes. Also fixeivind1997-12-161-3/+12
| | | | | | minor buglet when neither bsdcomp, deflate or filter is used. Pointed out by: Chris Timmons <skynyrd@opus.cts.cwu.edu>
* - The daemon might go off the screen and crashed the system if theyokota1997-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.
* Update Makefile to know about PPP_FILTER and fix the PPP_BSDCOMP andpeter1997-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).
* Make the blank screen saver work with MDA and CGA. The fade and greenyokota1997-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
* Add example for IPFIREWALL_DEFAULT_TO_ACCEPTpeter1997-09-101-1/+4
|
* Remove the vm86 LKM.jlemon1997-08-281-2/+2
|
* Removed bogus -I path in CFLAGS.bde1997-08-261-2/+2
|
* make lkm/if_ppp build again.. opt_ppp.h is needed again...jmg1997-08-211-3/+9
| | | | | | similar fix to one provided in pr4348 Closes PR#4348
* Add VM86 to the lkm build.dyson1997-08-091-2/+2
|
* Don't use /sys.bde1997-08-072-4/+4
| | | | Submitted by: Jeremy Lea <reg@shale.csir.co.za>
* Fixed bitrot in fpu LKMs.bde1997-07-202-5/+6
|
* Incorporated lots of fixes and suggestions from Bruce and changes toyokota1997-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.
* Take the OS release string from the kernel variable `osrelease'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>.
* Corrected accidental breakage in the last commit.yokota1997-05-261-3/+3
| | | | Pointed out by: Steve Passe, smp@csn.net
* Fixed up ssigala@globalnet.it's "Jumping Daemon" screen saver for < v3.0.obrien1997-05-251-4/+4
|
* Flip the daemon at the edge of the screen.yokota1997-05-241-14/+53
| | | | Submitted by: Sandro Sigala, Chris Shenton
OpenPOWER on IntegriCloud