diff options
author | peter <peter@FreeBSD.org> | 1996-03-10 22:43:37 +0000 |
---|---|---|
committer | peter <peter@FreeBSD.org> | 1996-03-10 22:43:37 +0000 |
commit | 35ed39b53738a5ff2e719bb679d8d64cc2941bcc (patch) | |
tree | 97eb51274a07b4f2f640197541967bf3ea32f627 /sys/modules | |
parent | 7543251e29e59398e36da07dc2d671418b98545a (diff) | |
download | FreeBSD-src-35ed39b53738a5ff2e719bb679d8d64cc2941bcc.zip FreeBSD-src-35ed39b53738a5ff2e719bb679d8d64cc2941bcc.tar.gz |
linux_interp now moved into sys/i386/linux/linux_sysvec.c, but still
connected at load and unload time from here.
Diffstat (limited to 'sys/modules')
-rw-r--r-- | sys/modules/linux/linux.c | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/sys/modules/linux/linux.c b/sys/modules/linux/linux.c index dbd319f..a0f27ea 100644 --- a/sys/modules/linux/linux.c +++ b/sys/modules/linux/linux.c @@ -25,7 +25,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: linux.c,v 1.4 1995/11/14 07:34:18 bde Exp $ + * $Id: linux.c,v 1.5 1996/03/10 08:42:32 sos Exp $ */ #include <sys/param.h> @@ -41,11 +41,7 @@ extern const struct execsw linux_execsw; MOD_EXEC(linux, -1, (struct execsw*)&linux_execsw); -static Elf32_Interp_info linux_interp = { - &elf_linux_sysvec, - "/lib/ld-linux.so.1", - "/compat/linux" - }; +extern Elf32_Interp_info linux_interp; static int linux_load(struct lkm_table *lkmtp, int cmd) |