summaryrefslogtreecommitdiffstats
path: root/lkm
Commit message (Collapse)AuthorAgeFilesLines
* Fixes for lkm:rvb1998-09-291-2/+1
| | | | | 1. use VFS_LKM vs ACTUALLY_LKM_NOT_KERNEL 2. don't pass -DCODA to lkm build
* Include vinum in SUBDIRgrog1998-09-281-2/+2
|
* Correct calculation of revive blocksizegrog1998-09-281-2/+2
| | | | Submitted by: Chris Csanady
* Get include paths rightgrog1998-09-281-2/+2
|
* This commit was generated by cvs2svn to compensate for changes in r39652,rvb1998-09-251-0/+11
|\ | | | | | | which included commits to RCS files with non-trunk default branches.
| * lkm for codarvb1998-09-251-0/+11
|
* lkm for codarvb1998-09-251-2/+2
|
* Add support for glibc consumers using the new ld-linux.so.2 linker.msmith1998-09-171-3/+4
| | | | I can't say this was the most inspired fix, but it matches the design OK.
* Fix the sreensavers so the work again with the new syscons & friends.sos1998-09-177-35/+46
| | | | Submitted by: Kazutaka YOKOTA <yokota@zodiac.mech.utsunomiya-u.ac.jp>
* This commit was generated by cvs2svn to compensate for changes in r39330,grog1998-09-1623-0/+8235
|\ | | | | | | which included commits to RCS files with non-trunk default branches.
| * Import base vinum lkm sourcesgrog1998-09-1623-0/+8235
|
* Add the vesa module to the listsos1998-09-151-2/+2
|
* Double oops, committed the wrong Makefile ata that, fixed.sos1998-09-151-2/+2
|
* Oops for the Makefile for the VESA lkmsos1998-09-151-0/+19
|
* Add VESA support to syscons.sos1998-09-157-39/+39
| | | | | | | | | | | | | | | | | | | | | | | | | Kazu writes: The VESA support code requires vm86 support. Make sure your kernel configuration file has the following line. options "VM86" If you want to statically link the VESA support code to the kernel, add the following option to the kernel configuration file. options "VESA" The vidcontrol command now accepts the following video mode names: VESA_132x25, VESA_132x43, VESA_132x50, VESA_132x60, VESA_800x600 The VESA_800x600 mode is a raster display mode. The 80x25 text will be displayed on the 800x600 screen. Useful for some laptop computers. vidcontrol accepts the new `-i <info>' option, where <info> must be either `adapter' or `mode'. When the `-i adapter' option is given, vidcontrol will print basic information (not much) on the video adapter. When the `-i mode' option is specified, vidcontrol will list video modes which are actually supported by the video adapter. Submitted by: Kazutaka YOKOTA yokota@FreeBSD.ORG
* Load linux emulator lkm only when not already loaded. This avoidscracauer1998-09-071-2/+9
| | | | | | | leftover files in /tmp. Script slightly modified from PR version to use fewer processes. PR: i386/7725 Submitted by: Stefan Eggers seggers@semyam.dinoco.de
* Add -aout to CFLAGS and LDFLAGS in bsd.kmod.mk, not inbde1998-09-021-7/+0
| | | | | | src/lkm/Makefile.inc. This fixes broken builds of the syscons LKMs when OBJFORMAT=elf. Removed src/lkm/Makefile.inc since it became empty and is worse than useless.
* 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-071-13/+10
| | | | | | 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-021-2/+5
| | | | | | 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-301-2/+2
|
* fix more of my breakage... :(jmg1998-06-301-1/+5
| | | | create opt_vmpage.h
* fix buildworld hopefully be3fore anyone complains...jmg1998-06-301-1/+3
| | | | | | | | 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...
* ELF preparation step 2:sos1998-05-261-1/+4
| | | | | | | | | | | | | | Move a.out libraries to /usr/lib/aout to make space for ELF libs. Make rtld usr /usr/lib/aout as default library path. Make ldconfig reject /usr/lib as an a.out library path. Fix various Makefiles for LIBDIR!=/usr/lib breakage. This will after a make world & reboot give a system that no longer uses /usr/lib/*, infact one could remove all the old libraries there, they are not used anymore. We are getting close to an ELF make world, but I'll let this all settle for a week or two...
* 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
|
* Remove qcam LKM.msmith1998-02-183-76/+0
| | | | Submitted by: pst
* Back out opt_diagnostic.h changes.eivind1998-02-067-43/+18
|
* Make the LKMs handle DIAGNOSTIC as a new-style option.eivind1998-02-047-18/+43
|
* 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-019-18/+13
| | | | | 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-244-12/+24
|
* 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-092-6/+15
|
OpenPOWER on IntegriCloud