summaryrefslogtreecommitdiffstats
path: root/lkm
Commit message (Collapse)AuthorAgeFilesLines
...
* 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
* Introducing "Jumping Daemon" screen saver. This is really cute andyokota1997-05-212-0/+224
| | | | | | eye-catching :-) Submitted by: ssigala@globalnet.it
* Introducing "Jumping Daemon" screen saver. This is really cute andyokota1997-05-212-5/+5
| | | | | | | | eye-catching :-) Submitted by: ssigala@globalnet.it Also fixed some `extern' declarations in saver.h.
* Also quiet down the ibcs2 startup (same reason as linux lkm - it screwsjkh1997-05-011-2/+2
| | | | the console output).
* Merge 1.8.2.1 into -current.jkh1997-05-011-2/+2
|
* Make MOD_* macros almost consistent: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
* Make MOD_* macros almost consistent: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
* Revert $FreeBSD$ back to $Id$peter1997-02-2253-53/+53
|
* Make ibcs2 a little bit saver. Add copyright.wosch1997-02-021-3/+35
|
* Upgrade the kbdio rutines to provide queued kbd & mouse events.sos1997-01-152-4/+36
| | | | | | Minor other updates to syscons by me. Submitted by: Kazutaka YOKOTA <yokota@zodiac.mech.utsunomiya-u.ac.jp>
* Make the long-awaited change from $Id$ to $FreeBSD$jkh1997-01-1453-53/+53
| | | | | | | | 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.
* Sort cross references.wosch1997-01-132-6/+6
|
* Add a man page for linux(8) (loads the Linux emulator kernel module).mpp1997-01-102-2/+47
|
* Make snake 3.0-CURRENT here.jkh1996-11-111-2/+2
| | | | There's gotta be a better way of syncronizing our release numbers. :-)
* Prepare kernel to take advantage of "branded" ELF binaries.sos1996-10-161-4/+4
|
* delete unused variable BINDIR, use new variable MODLOAD/MODUNLOADwosch1996-10-068-21/+14
|
* add forgotten $Id$wosch1996-09-224-1/+7
|
* Fiexed CFLAGS. Compiling things in the kernel without -O now causesbde1996-09-211-2/+2
| | | | | zillions of warnings about static inline functions because `inline' is ignored without -O.
* 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.
OpenPOWER on IntegriCloud