2018-04-11 18:42:03 +00:00
|
|
|
From 92d3db585076d022521ab94a2ceed03eb05013fc Mon Sep 17 00:00:00 2001
|
2017-10-24 16:49:30 +00:00
|
|
|
From: Peter Jones <pjones@redhat.com>
|
|
|
|
Date: Thu, 19 Oct 2017 11:29:11 -0400
|
2018-07-02 12:42:57 +00:00
|
|
|
Subject: [PATCH 195/250] 20_linux_xen: load xen or multiboot{,2} modules as
|
2017-10-24 16:49:30 +00:00
|
|
|
needed.
|
|
|
|
|
|
|
|
Signed-off-by: Peter Jones <pjones@redhat.com>
|
|
|
|
---
|
|
|
|
util/grub.d/20_linux_xen.in | 3 +++
|
|
|
|
1 file changed, 3 insertions(+)
|
|
|
|
|
|
|
|
diff --git a/util/grub.d/20_linux_xen.in b/util/grub.d/20_linux_xen.in
|
2018-02-27 18:56:41 +00:00
|
|
|
index fae1ffe9494..fc53bd54231 100644
|
2017-10-24 16:49:30 +00:00
|
|
|
--- a/util/grub.d/20_linux_xen.in
|
|
|
|
+++ b/util/grub.d/20_linux_xen.in
|
|
|
|
@@ -126,6 +126,8 @@ linux_entry ()
|
|
|
|
else
|
|
|
|
xen_rm_opts="no-real-mode edd=off"
|
|
|
|
fi
|
|
|
|
+ insmod ${module_loader}
|
|
|
|
+ insmod ${xen_loader}
|
|
|
|
${xen_loader} ${rel_xen_dirname}/${xen_basename} placeholder ${xen_args} \${xen_rm_opts}
|
|
|
|
echo '$(echo "$lmessage" | grub_quote)'
|
|
|
|
${module_loader} ${rel_dirname}/${basename} placeholder root=${linux_root_device_thisversion} ro ${args}
|
|
|
|
@@ -135,6 +137,7 @@ EOF
|
|
|
|
message="$(gettext_printf "Loading initial ramdisk ...")"
|
|
|
|
sed "s/^/$submenu_indentation/" << EOF
|
|
|
|
echo '$(echo "$message" | grub_quote)'
|
|
|
|
+ insmod ${module_loader}
|
|
|
|
${module_loader} --nounzip ${rel_dirname}/${initrd}
|
|
|
|
EOF
|
|
|
|
fi
|
|
|
|
--
|
2018-06-04 16:28:07 +00:00
|
|
|
2.17.1
|
2017-10-24 16:49:30 +00:00
|
|
|
|