mirror of
https://src.fedoraproject.org/rpms/grub2.git
synced 2024-11-24 06:22:43 +00:00
Add again 20_linux_xen script fix that got dropped by mistake
Resolves: rhbz#1858364 Signed-off-by: Javier Martinez Canillas <javierm@redhat.com>
This commit is contained in:
parent
d672447dfb
commit
2f63333bcf
2 changed files with 29 additions and 9 deletions
|
@ -5,27 +5,43 @@ Subject: [PATCH] 20_linux_xen: load xen or multiboot{,2} modules as needed.
|
||||||
|
|
||||||
Signed-off-by: Peter Jones <pjones@redhat.com>
|
Signed-off-by: Peter Jones <pjones@redhat.com>
|
||||||
---
|
---
|
||||||
util/grub.d/20_linux_xen.in | 3 +++
|
util/grub.d/20_linux_xen.in | 5 +++++
|
||||||
1 file changed, 3 insertions(+)
|
1 file changed, 5 insertions(+)
|
||||||
|
|
||||||
diff --git a/util/grub.d/20_linux_xen.in b/util/grub.d/20_linux_xen.in
|
diff --git a/util/grub.d/20_linux_xen.in b/util/grub.d/20_linux_xen.in
|
||||||
index e9e73b815fb..f8897479fe6 100644
|
index e9e73b815fb..c23b064be6c 100644
|
||||||
--- a/util/grub.d/20_linux_xen.in
|
--- a/util/grub.d/20_linux_xen.in
|
||||||
+++ b/util/grub.d/20_linux_xen.in
|
+++ b/util/grub.d/20_linux_xen.in
|
||||||
@@ -153,6 +153,8 @@ linux_entry_xsm ()
|
@@ -153,6 +153,7 @@ linux_entry_xsm ()
|
||||||
else
|
else
|
||||||
xen_rm_opts="no-real-mode edd=off"
|
xen_rm_opts="no-real-mode edd=off"
|
||||||
fi
|
fi
|
||||||
+ insmod ${module_loader}
|
+ insmod ${xen_module}
|
||||||
+ insmod ${xen_loader}
|
|
||||||
${xen_loader} ${rel_xen_dirname}/${xen_basename} placeholder ${xen_args} \${xen_rm_opts}
|
${xen_loader} ${rel_xen_dirname}/${xen_basename} placeholder ${xen_args} \${xen_rm_opts}
|
||||||
echo '$(echo "$lmessage" | grub_quote)'
|
echo '$(echo "$lmessage" | grub_quote)'
|
||||||
${module_loader} ${rel_dirname}/${basename} placeholder root=${linux_root_device_thisversion} ro ${args}
|
${module_loader} ${rel_dirname}/${basename} placeholder root=${linux_root_device_thisversion} ro ${args}
|
||||||
@@ -166,6 +168,7 @@ EOF
|
@@ -166,6 +167,7 @@ EOF
|
||||||
done
|
done
|
||||||
sed "s/^/$submenu_indentation/" << EOF
|
sed "s/^/$submenu_indentation/" << EOF
|
||||||
echo '$(echo "$message" | grub_quote)'
|
echo '$(echo "$message" | grub_quote)'
|
||||||
+ insmod ${module_loader}
|
+ insmod ${xen_module}
|
||||||
${module_loader} --nounzip $(echo $initrd_path)
|
${module_loader} --nounzip $(echo $initrd_path)
|
||||||
EOF
|
EOF
|
||||||
fi
|
fi
|
||||||
|
@@ -253,13 +255,16 @@ while [ "x${xen_list}" != "x" ] ; do
|
||||||
|
echo " submenu '$(gettext_printf "Xen hypervisor, version %s" "${xen_version}" | grub_quote)' \$menuentry_id_option 'xen-hypervisor-$xen_version-$boot_device_id' {"
|
||||||
|
fi
|
||||||
|
if ($grub_file --is-arm64-efi $current_xen); then
|
||||||
|
+ xen_module="xen_boot"
|
||||||
|
xen_loader="xen_hypervisor"
|
||||||
|
module_loader="xen_module"
|
||||||
|
else
|
||||||
|
if ($grub_file --is-x86-multiboot2 $current_xen); then
|
||||||
|
+ xen_module="multiboot2"
|
||||||
|
xen_loader="multiboot2"
|
||||||
|
module_loader="module2"
|
||||||
|
else
|
||||||
|
+ xen_module="multiboot"
|
||||||
|
xen_loader="multiboot"
|
||||||
|
module_loader="module"
|
||||||
|
fi
|
||||||
|
|
|
@ -14,7 +14,7 @@
|
||||||
Name: grub2
|
Name: grub2
|
||||||
Epoch: 1
|
Epoch: 1
|
||||||
Version: 2.06~rc1
|
Version: 2.06~rc1
|
||||||
Release: 3%{?dist}
|
Release: 4%{?dist}
|
||||||
Summary: Bootloader with support for Linux, Multiboot and more
|
Summary: Bootloader with support for Linux, Multiboot and more
|
||||||
License: GPLv3+
|
License: GPLv3+
|
||||||
URL: http://www.gnu.org/software/grub/
|
URL: http://www.gnu.org/software/grub/
|
||||||
|
@ -555,6 +555,10 @@ mv ${EFI_HOME}/grub.cfg.stb ${EFI_HOME}/grub.cfg
|
||||||
%endif
|
%endif
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Mon Apr 12 2021 Javier Martinez Canillas <javierm@redhat.com> - 2.06~rc1-4
|
||||||
|
- Add again 20_linux_xen script fix that got dropped by mistake
|
||||||
|
Resolves: rhbz#1858364
|
||||||
|
|
||||||
* Thu Mar 25 2021 Javier Martinez Canillas <javierm@redhat.com> - 2.06~rc1-3
|
* Thu Mar 25 2021 Javier Martinez Canillas <javierm@redhat.com> - 2.06~rc1-3
|
||||||
- Prevent %%posttrans scriptlet to fail if grubenv isn't present in the ESP
|
- Prevent %%posttrans scriptlet to fail if grubenv isn't present in the ESP
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue