From 507fd33573fb948e4be95f15b8c5784af2aa56e3 Mon Sep 17 00:00:00 2001 From: marcel Date: Wed, 18 Aug 1999 12:49:53 +0000 Subject: Fix the way the port figures out if linux support is present in the kernel. It now also works when the linuxulator is compiled into the kernel (using options COMPAT_LINUX). Due to my misunderstanding, PR/12918 has been closed for the wrong reasons. My apologies to the originator. PR: 12918 Originator: Dean Lombardo --- emulators/linux_base-8/Makefile | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'emulators/linux_base-8') diff --git a/emulators/linux_base-8/Makefile b/emulators/linux_base-8/Makefile index 9ad65d9..06538e9 100644 --- a/emulators/linux_base-8/Makefile +++ b/emulators/linux_base-8/Makefile @@ -3,7 +3,7 @@ # Date created: Jul 7, 1999 # Whom: marcel@FreeBSD.org # -# $Id: Makefile,v 1.27 1999/08/06 15:13:17 billf Exp $ +# $Id: Makefile,v 1.28 1999/08/08 11:40:53 marcel Exp $ # DISTNAME= linux_base @@ -105,13 +105,13 @@ NEEDLOADLINK= true .endif do-install: - @if [ -z "`kldstat | ${GREP} linux.ko | ${AWK} '{print $1}'`" ]; then \ - ${ECHO} 'The Linux emulator kernel module is not loaded.\ - Loading Linux emulator kernel module...' | fmt; \ + @if [ -z "`kldstat -v | ${GREP} -E 'linux(aout|elf)'`" ]; then \ + ${ECHO} 'Linux mode is not enabled.\ + Loading linux kernel module...' | fmt; \ linux || { \ - ${ECHO} 'The Linux emulator kernel module could not be\ - loaded. Please manually load the module and retry.\ - See "man linux" for details.' | fmt; \ + ${ECHO} 'The linux kernel module could not be loaded.\ + Please manually load the module and retry.\ + See "man linux" for details.' | fmt; \ ${FALSE}; \ };\ fi -- cgit v1.1