diff options
author | Florian La Roche <laroche@redhat.com> | 2001-04-25 12:09:08 +0000 |
---|---|---|
committer | Florian La Roche <laroche@redhat.com> | 2001-04-25 12:09:08 +0000 |
commit | 8135d5d68a222512111dccb25ab7ba3d9160b55b (patch) | |
tree | 84415d1a646af0808af36fc9f6e0ba59a7cdf1c4 /src/mkkerneldoth.s390 | |
parent | 2233e084fc67b5da42480b63cd6525067efc29b3 (diff) | |
download | initscripts-8135d5d68a222512111dccb25ab7ba3d9160b55b.tar initscripts-8135d5d68a222512111dccb25ab7ba3d9160b55b.tar.gz initscripts-8135d5d68a222512111dccb25ab7ba3d9160b55b.tar.bz2 initscripts-8135d5d68a222512111dccb25ab7ba3d9160b55b.tar.xz initscripts-8135d5d68a222512111dccb25ab7ba3d9160b55b.zip |
further s390 changes
Diffstat (limited to 'src/mkkerneldoth.s390')
-rwxr-xr-x | src/mkkerneldoth.s390 | 21 |
1 files changed, 21 insertions, 0 deletions
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 |