summaryrefslogtreecommitdiff
path: root/sys/modules/linux/linux.sh
Commit message (Collapse)AuthorAgeFilesLines
* Retire linux(8). Using shell scripts to load kernel loadable modules isSheldon Hearn2000-11-021-21/+0
| | | | | | | | | | | | | | | | | out of fashion. This particular case, unlike joy(8) and friends which are just plain silly, did more than just load a kernel loadable module. However, /etc/rc and the linux_base port were adjusted a while back to cope with the absence of this script. The only outstanding reason to hang on to it would have been for the linux(8) manual page, which clued folks into the existence of the Linuxulator. A new linux(4) was introduced a while back. It does a much better job. This script just isn't useful any more. Notes: svn path=/head/; revision=68243
* Add a run of Linux ldconfig.Martin Cracauer1999-12-131-1/+10
| | | | Notes: svn path=/head/; revision=54541
* $Id$ -> $FreeBSD$Peter Wemm1999-08-281-1/+1
| | | | Notes: svn path=/head/; revision=50477
* Update to use kldload, no temporary files!Peter Wemm1998-11-051-5/+7
| | | | Notes: svn path=/head/; revision=40920
* Load linux emulator lkm only when not already loaded. This avoidsMartin Cracauer1998-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 Notes: svn path=/head/; revision=38911
* Revert $FreeBSD$ back to $Id$Peter Wemm1997-02-221-1/+1
| | | | Notes: svn path=/head/; revision=22982
* Make the long-awaited change from $Id$ to $FreeBSD$Jordan K. Hubbard1997-01-141-1/+1
| | | | | | | | | | | 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
* Do a pass over the broken LKM's and update them to use the "new"Peter Wemm1995-10-281-2/+2
| | | | | | | | | | | | | | | | | | 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
* First incarnation of our Linux emulator or rather compatibility code.Søren Schmidt1995-06-251-0/+3
This first shot only incorporaties so much functionality that DOOM can run (the X version), signal handling is VERY weak, so is many other things. But it meets my milestone number one (you guessed it - running DOOM). Uses /compat/linux as prefix for loading shared libs, so it won't conflict with our own libs. Kernel must be compiled with "options COMPAT_LINUX" for this to work. Notes: svn path=/head/; revision=9313