81501c15a5
23686-pygrub-solaris.patch 23697-pygrub-grub2.patch 23944-pygrub-debug.patch 23998-pygrub-GPT.patch 23999-pygrub-grub2.patch 24064-pygrub-HybridISO.patch 24401-pygrub-scrolling.patch 24402-pygrub-edit-fix.patch 24460-pygrub-extlinux.patch 24706-pygrub-extlinux.patch - Revised version of security patch and an additional patch for bnc#764077 x86_64-AMD-erratum-121.patch x86_64-allow-unsafe-adjust.patch - bnc#764077 - VUL-0: EMBARGOED: xen: XSA-9: denial of service on older AMD systems x86_64-AMD-erratum-121.patch - Revised version of security patch for bnc#757537 x86_64-sysret-canonical.patch - bnc#757537 - VUL-0: xen: CVE-2012-0217 PV guest escalation x86_64-sysret-canonical.patch - bnc#757970 - VUL-1: xen: guest denial of service on syscall GPF generation x86_64-trap-bounce-flags.patch OBS-URL: https://build.opensuse.org/package/show/Virtualization/xen?expand=0&rev=190
27 lines
1.2 KiB
Diff
27 lines
1.2 KiB
Diff
# HG changeset patch
|
|
# User Michael Young <m.a.young@durham.ac.uk>
|
|
# Date 1319566729 -3600
|
|
# Node ID 138f707fa598340749a70a79748b01dff850b8f2
|
|
# Parent 85d7b207fabcd1cbda8f93e3937c5990f42a2cf9
|
|
pygrub: look in /boot/grub2 (for eg Fedora 16)
|
|
|
|
Fedora 16 puts grub configuration files in /boot/grub2/grub.cfg so
|
|
pygrub should look there as well
|
|
|
|
Signed-off-by: Michael Young <m.a.young@durham.ac.uk>
|
|
Acked-by: Ian Campbell <ian.campbell@citrix.com>
|
|
|
|
diff -r 85d7b207fabc -r 138f707fa598 tools/pygrub/src/pygrub
|
|
--- a/tools/pygrub/src/pygrub Tue Oct 25 19:15:54 2011 +0100
|
|
+++ b/tools/pygrub/src/pygrub Tue Oct 25 19:18:49 2011 +0100
|
|
@@ -395,7 +395,8 @@
|
|
["/efi/boot/elilo.conf", "/elilo.conf",])
|
|
else:
|
|
cfg_list = map(lambda x: (x,grub.GrubConf.Grub2ConfigFile),
|
|
- ["/boot/grub/grub.cfg", "/grub/grub.cfg"]) + \
|
|
+ ["/boot/grub/grub.cfg", "/grub/grub.cfg",
|
|
+ "/boot/grub2/grub.cfg", "/grub2/grub.cfg"]) + \
|
|
map(lambda x: (x,grub.ExtLinuxConf.ExtLinuxConfigFile),
|
|
["/boot/isolinux/isolinux.cfg",
|
|
"/boot/extlinux.conf"]) + \
|