aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/Makefile3
-rwxr-xr-xsrc/mkkerneldoth.s39021
2 files changed, 24 insertions, 0 deletions
diff --git a/src/Makefile b/src/Makefile
index 9e642e6e..92b6e8e8 100644
--- a/src/Makefile
+++ b/src/Makefile
@@ -35,6 +35,9 @@ install:
install -m 644 consoletype.1 $(ROOT)$(mandir)/man1
install -m 644 initlog.conf $(ROOT)/etc
install -m 755 mkkerneldoth $(ROOT)/sbin
+ if uname -m | grep -q s390 ; then \
+ install -m 755 mkkerneldoth.s390 $(ROOT)/sbin/mkkerneldoth ; \
+ fi
# this daemon and initscript are useful for testing the up/down/status stuff
# not installed by default, only comes from sources.
diff --git a/src/mkkerneldoth.s390 b/src/mkkerneldoth.s390
new file mode 100755
index 00000000..137c15ec
--- /dev/null
+++ b/src/mkkerneldoth.s390
@@ -0,0 +1,21 @@
+#!/bin/bash
+#
+# Generate a header that defines the boot kernel.
+#
+
+KVER=`uname -r | sed 's/[^a-zA-Z]//g'`
+
+cat > /boot/kernel.h << EOF
+/* This file is automatically generated at boot time. */
+
+#ifndef __BOOT_KERNEL_H_
+#define __BOOT_KERNEL_H_
+
+#define __BOOT_KERNEL_vrdr 0
+#define __BOOT_KERNEL_tape 0
+
+#undef __BOOT_KERNEL_$KVER
+#define __BOOT_KERNEL_$KVER 1
+
+#endif
+EOF