Displaying 20 results from an estimated 2000 matches similar to: "PyGrub And Grub2 Submenus"
2012 Jul 06
1
Bug#680479: xen-utils-4.0: pygrub does not support grub2 submenus
Package: xen-utils-4.0
Version: 4.0.1-5.2
Severity: important
Tags: upstream patch
pygrub in Debian Squueze does not support Grub2 submenus. At least
Ubuntu Precise uses a submenu for older kernel versions, so a Precise
domU with more than one kernel installed will be unbootable (without
manual fixes) on a Squeeze dom0.
Attached is a patch that adds submenu support to pygrub.
-- System
2010 Oct 06
1
Bug#599243: xen-utils-4.0: pygrub does not understand grub2 partition types (e.g. (hd0, msdos1) instead of (hd0, 1))
Package: xen-utils-4.0
Version: 4.0.1-1
Severity: normal
Tags: patch
pygrub could not boot a newly-updated Debian/testing domU with a non-chained grub2. The traceback was:
Using <class 'grub.GrubConf.Grub2ConfigFile'> to parse /grub/grub.cfg
WARNING:root:Unknown directive load_video
WARNING:root:Unknown directive terminal_output
Traceback (most recent call last):
File
2013 Sep 29
2
Bug#603391: Workaround PyGrub issue
Confirmed this issue. To reproduce: Install a fresh Wheezy AMD64 guest
under Xen 4.1 (hypervirtualized, boot from the
debian-7.1.0-amd64-CD-1.iso). Use "entire disk" automatic layout for
partitioning, this creates /dev/xvda1 for / and /dev/xvda5 for swap.
It will create /boot/grub/grub.cfg with many references to
(/dev/xvda,msdos1) which works fine when the machine is booted
2013 Oct 01
0
Bug#603391: Bug#603391: Workaround PyGrub issue
On Sat, 2013-09-28 at 20:59 -0700, Tril wrote:
> Backtrace from manual run of the buggy GrubConf.py:
> # python /usr/lib/xen-4.1/lib/python/grub/GrubConf.py grub2 grub.cfg
> WARNING:root:Unknown directive load_video
> WARNING:root:Unknown directive terminal_output
> WARNING:root:Unknown image directive load_video
> Traceback (most recent call last):
> File
2010 Nov 13
0
Bug#603391: pygrub: unintelligible error messages
Package: xen-utils-4.0
Version: 4.0.1-1
Severity: normal
File: pygrub
The pygrub awesome error messages are captured below.
Please tell me what pygrub was doing and why it failed.
I also don't understand why <image> is supposed to be an integer.
# '/usr/lib/xen-4.0/bin/pygrub' '--kernel=/vmlinuz'
'--ramdisk=/initrd.img' '/dev/sda3'
linux (kernel
2011 Oct 01
2
Bug#643953: xen-utils-4.0: pygrub can not parse empty "root" statement in menu.lst
Package: xen-utils-4.0
Version: 4.0.1-2
Severity: normal
Trying to get a system that I've long had runing on the bare metal to
boot as a VM, I discovered that pygrub would not parse my menu.lst. The
problematic entry is this:
# This is a divider, added to separate the menu items below from the Debian
# ones.
title Other operating systems:
root
pygrub's parser seems to
2007 Jan 05
10
[PATCH 1/7] Fix pygrub path on Solaris
Fix for pygrub path on Solaris.
Signed-off-by: John Levon <john.levon@sun.com>
diff --git a/tools/python/xen/xend/XendDomainInfo.py b/tools/python/xen/xend/XendDomainInfo.py
--- a/tools/python/xen/xend/XendDomainInfo.py
+++ b/tools/python/xen/xend/XendDomainInfo.py
@@ -37,7 +37,7 @@ from xen.util.blkif import blkdev_uname_
from xen.util.blkif import blkdev_uname_to_file
from xen.util
2011 Oct 20
2
[PATCH] pygrub: do not overload RuntimeError for "no menu.lst found"
From: pbonzini@redhat.com
# HG changeset patch
# User Paolo Bonzini <pbonzini@redhat.com>
# Date 1319096986 -7200
# Node ID bd1f7361d3d7f4c767af21317fb4ec7ea1372f42
# Parent 1b110e895e285f43f14532e14c77597e54a0bcd2
pygrub will still try the next partition if run_grub exits with a
"real" error, thus hiding the root cause from the trace. Defining
a separate exception for "no
2013 Oct 01
2
Bug#603391: Bug#603391: Workaround PyGrub issue
Sorry didn't work. Aso it will only handle this special case, not the
general case of /dev/something.
# python GrubConf.py grub2 /home/tehadmin/snail-grub.cfg
WARNING:root:Unknown directive load_video
WARNING:root:Unknown directive terminal_output
WARNING:root:Unknown image directive load_video
Traceback (most recent call last):
File "GrubConf.py", line 467, in <module>
2013 Oct 10
1
[PATCH] pygrub: Support (/dev/xvda) style disk specifications
You get these if you install Debian Wheezy as HVM and then try to convert to
PV.
This is Debian bug #603391.
Signed-off-by: Ian Campbell <ian.campbell@citrix.com>
Tested-by: Tril <tril@metapipe.net>
---
tools/pygrub/examples/debian-wheezy-hvm.grub2 | 104 +++++++++++++++++++++++++
tools/pygrub/src/GrubConf.py | 6 +-
2 files changed, 109 insertions(+), 1
2012 Jul 19
2
[PATCH] pygrub: add syslog support to pygrub
# HG changeset patch
# User Zhigang Wang <zhigang.x.wang@oracle.com>
# Date 1342720736 14400
# Node ID ec9655b30a5fa5b5abb3e05505f681f9be559613
# Parent 43e21ce7f22151524b800a6cf0ac4ba1233b34a7
pygrub: add syslog support to pygrub
Currently, when pygrub failed, we don''t know the reason because xend/xl will
not capture the stderr message.
This patch will log the error message to
2013 Jun 22
2
[PATCH] pygrub/GrubConf: fix boot problem for fedora 19 grub.cfg
Booting a fedora 19 domU failed because a it could not properly
parse the grub.cfg file. This was cased by
set default="${next_entry}"
This statement actually is within an ''if'' statement, so maybe it would
be better to skip code within if/fi blocks...
But this patch seems to work fine.
---
tools/pygrub/src/GrubConf.py | 2 ++
1 files changed, 2 insertions(+), 0
2012 Jul 25
1
submenus and menu title
From
http://www.syslinux.org/wiki/index.php/Comboot/menu.c32
*** QUOTE - BEGIN ***
MENU BEGIN [tagname]
MENU END
Begin/end a submenu. The entries between MENU BEGIN and MENU END form a submenu, which is marked with a > mark on the right hand of the screen. Submenus inherit the properties of their parent menus, but can override them, and can thus have their own
2005 Mar 30
1
menu.c32, submenus
I am trying to create submenus, or more specifically a single submenu, using PXELINUX and the menu.c32. I have a tftp share with a basic config:
/ (root of tftp)
pxelinux.0
menu.c32
/diskdiag (dir)
/diskdiag/dskdiag.0
/pxelinux.cfg (dir)
/pxelinux.cfg/default
/pxelinux.cfg/dskdiag
one of the menu items in /pxelinux.cfg/default is as follows:
LABEL DISKDIAG
MENU LABEL [^B] Disk Diagnostics
2011 Dec 22
6
Error starting updated Debian servers
Hi all,
After applying some updates onto a Debian web server, I rebooted it.
However it will no longer start, and generates this error in XenCenter:
22/12/2011 09:57:45 Error: Starting VM ''Web Server'' - Using <class ''grub.GrubConf.Grub2ConfigFile''>; to parse /boot/grub/grub.cfg - WARNING:root:Unknown directive load_video - WARNING:root:Unknown directive
2007 Dec 22
0
[ wxruby-Bugs-16519 ] crash with Submenus - need GC protection
Bugs item #16519, was opened at 2007-12-22 18:14
You can respond by visiting:
http://rubyforge.org/tracker/?func=detail&atid=218&aid=16519&group_id=35
Category: Incorrect behavior
Group: current
Status: Open
Resolution: None
Priority: 5
Submitted By: Alex Fenton (brokentoy)
Assigned to: Alex Fenton (brokentoy)
Summary: crash with Submenus - need GC protection
Initial Comment:
With
2016 May 14
2
Bug#824341: wheezy-pu: update xen-utils-4.1 with patch to boot jessie/grub2 VMs
Package: release.debian.org
Severity: normal
Tags: wheezy
User: release.debian.org at packages.debian.org
Usertags: pu
X-Debbugs-CC: pkg-xen-devel at lists.alioth.debian.org
If somebody is still running wheezy for their dom0 (host) environment
and they are using jessie or other systems with grub2 in their VMs, they
can't boot their VM.
A rather trivial 1-line fix in the dom0 (host) system
2006 Nov 22
2
Problem with "additional" submenus
Hello all,
First off, thanks for the great work.
I have recently added "more submenus" to a functioning advanced menu
that only had one "submenu off of the main menu before" The addition of
the new submenus has caused the main menu to not function correctly and
I have been pouring over the code for several weeks and I just cannot
see the error that I have introduced. This
2019 Aug 06
1
Wiki edit: HowTos/Grub2
Greetings!
This is my first contribution, so please let me know if there is
anything I should be doing differently. I am following the instructions
found here: <https://wiki.centos.org/Contribute>.
Your /FirstnameLastname/ username: MitchellRoe
The proposed subject of your Wiki contribution(s): Corrected path for
getting menu entries
The proposed location of your Wiki contribution(s):
2013 May 29
0
Suggestion: MENU DISABLE and MENU HIDE for submenus
Hello Syslinux Team,
As known, the "MENU DISABLE" and "MENU HIDE" directives are valid
only after a LABEL directive. In addition to their main purpose, they
are sometimes useful for troubleshooting / simplifying / improving
(sections of) menus, without having to temporarily delete or comment
out (possibly large) parts of an already-existent menu.
I'd like to suggest,