2015-07-22 14:14:34 +00:00
|
|
|
From 8a516f33193744bbe67198fe03cadf1a67129630 Mon Sep 17 00:00:00 2001
|
2014-01-06 16:39:16 +00:00
|
|
|
From: Peter Jones <pjones@redhat.com>
|
|
|
|
Date: Mon, 28 Oct 2013 10:05:07 -0400
|
2015-07-22 14:14:34 +00:00
|
|
|
Subject: [PATCH 27/74] Use linux16 when appropriate (#880840)
|
2014-01-06 16:39:16 +00:00
|
|
|
|
|
|
|
The kernel group really would prefer that we use the 16 bit entry point
|
|
|
|
on x86 bios machines.
|
|
|
|
|
|
|
|
Resolves: rhbz#880840
|
|
|
|
|
|
|
|
Signed-off-by: Peter Jones <pjones@redhat.com>
|
|
|
|
---
|
|
|
|
util/grub.d/10_linux.in | 9 +++++++--
|
|
|
|
1 file changed, 7 insertions(+), 2 deletions(-)
|
|
|
|
|
|
|
|
diff --git a/util/grub.d/10_linux.in b/util/grub.d/10_linux.in
|
2015-07-22 13:44:51 +00:00
|
|
|
index 70f3169..013b7f0 100644
|
2014-01-06 16:39:16 +00:00
|
|
|
--- a/util/grub.d/10_linux.in
|
|
|
|
+++ b/util/grub.d/10_linux.in
|
|
|
|
@@ -74,6 +74,11 @@ linux_entry ()
|
|
|
|
type="$3"
|
|
|
|
args="$4"
|
|
|
|
|
2014-01-07 15:02:18 +00:00
|
|
|
+ sixteenbit=""
|
2014-01-06 16:39:16 +00:00
|
|
|
+ case "$machine" in
|
2014-01-07 15:02:18 +00:00
|
|
|
+ i?86|x86_64) sixteenbit="16" ;;
|
2014-01-06 16:39:16 +00:00
|
|
|
+ esac
|
|
|
|
+
|
|
|
|
if [ -z "$boot_device_id" ]; then
|
|
|
|
boot_device_id="$(grub_get_device_id "${GRUB_DEVICE}")"
|
|
|
|
fi
|
|
|
|
@@ -132,7 +137,7 @@ linux_entry ()
|
|
|
|
EOF
|
|
|
|
else
|
|
|
|
sed "s/^/$submenu_indentation/" << EOF
|
|
|
|
- linux ${rel_dirname}/${basename} root=${linux_root_device_thisversion} ro ${args}
|
2014-01-07 15:02:18 +00:00
|
|
|
+ linux${sixteenbit} ${rel_dirname}/${basename} root=${linux_root_device_thisversion} ro ${args}
|
2014-01-06 16:39:16 +00:00
|
|
|
EOF
|
|
|
|
fi
|
|
|
|
if test -n "${initrd}" ; then
|
|
|
|
@@ -142,7 +147,7 @@ EOF
|
|
|
|
EOF
|
|
|
|
else
|
|
|
|
sed "s/^/$submenu_indentation/" << EOF
|
|
|
|
- initrd ${rel_dirname}/${initrd}
|
2014-01-07 15:02:18 +00:00
|
|
|
+ initrd${sixteenbit} ${rel_dirname}/${initrd}
|
2014-01-06 16:39:16 +00:00
|
|
|
EOF
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
--
|
2015-07-22 13:44:51 +00:00
|
|
|
2.4.3
|
2014-01-06 16:39:16 +00:00
|
|
|
|