summaryrefslogtreecommitdiff
path: root/emulators/suse_base/INSTALL
diff options
context:
space:
mode:
Diffstat (limited to 'emulators/suse_base/INSTALL')
-rw-r--r--emulators/suse_base/INSTALL34
1 files changed, 34 insertions, 0 deletions
diff --git a/emulators/suse_base/INSTALL b/emulators/suse_base/INSTALL
new file mode 100644
index 00000000000..4abc363e823
--- /dev/null
+++ b/emulators/suse_base/INSTALL
@@ -0,0 +1,34 @@
+#!/bin/sh
+# $NetBSD: INSTALL,v 1.1 2001/10/31 23:53:32 zuntum Exp $
+
+emul=linux
+if [ "$2" != "POST-INSTALL" ]; then exit 0; fi
+
+cat <<EOF
+==============================================================================
+
+Do not forget to include COMPAT_LINUX and EXEC_ELF32 in your kernel
+configuration file. (Linux binaries require these options in order to
+work.)
+EOF
+
+if [ "`cd /etc && cd ${PKG_PREFIX}/emul/$emul 2>/dev/null && pwd -P`" != \
+ "`cd / && cd /emul/$emul 2>/dev/null && pwd -P`" ]; then
+ if [ -e /emul/$emul -o -L /emul/$emul ] || \
+ [ \( -e /emul -o -L /emul \) -a ! -d /emul ]; then
+ cat <<-EOF
+
+ IMPORTANT: You must create a symbolic link from /emul/$emul to
+ ${PKG_PREFIX}/emul/$emul in order for this package to work properly.
+ (It seems there is something else located at /emul/$emul.)
+ EOF
+ else
+ mkdir -p /emul
+ ln -sf ${PKG_PREFIX}/emul/$emul /emul/$emul
+ fi
+fi
+
+cat <<EOF
+
+==============================================================================
+EOF