[PATCH] Support GRUB_DISABLE_LINUX_RECOVERY

2009-06-17 Thread Colin Watson
This patch fixes https://bugs.launchpad.net/ubuntu/+source/grub2/+bug/190207. Index: ChangeLog === --- ChangeLog (revision 2335) +++ ChangeLog (working copy) @@ -1,5 +1,10 @@ +2009-06-17 Colin Watson + + * util/grub-mkcon

Re: Fw: gettext support

2009-06-17 Thread Vladimir 'phcoder' Serbinenko
Hello > Comments for next steps to commit the patch are welcomed. Quick look revealed that you haven't taken into account my comments exposed here: http://lists.gnu.org/archive/html/grub-devel/2009-04/msg00181.html > > (maybe I need to setup the "path" to access to /usr/share/locale in the > G

[PATCH] fix building bug with --enable-grub-emu-usb

2009-06-17 Thread Vladimir 'phcoder' Serbinenko
Hello. This is a fix for problem in subject line. I believe this fix to be correct and legitimate but as I don't know ruby well could someone review it? If nobody knows ruby in depth I think we can commit this even without deep review -- Regards Vladimir 'phcoder' Serbinenko diff --git a/ChangeLo

[PATCH] enable buildable targets by default

2009-06-17 Thread Vladimir 'phcoder' Serbinenko
Hello. We often faced breakages of components which aren't enabled by default. So Robert Millan proposed to enable all buildable tagets by default. Here is an implementation. Additionally at the end of output it writes how exactly grub will be built for easier overview -- Regards Vladimir 'phcode

[PATCH] add support for dmraid devices

2009-06-17 Thread Felix Zielcke
Here's a patch which let grub-probe work with /dev/mapper/nvidia_ dmraid devices. The other ones that dmraid supports are for now just not anymore treated as LVM but hostdisk.c doestn't yet support them. The find_partition_by_uuid is needed, because on my dmraid the HDIO_GETGEO ioctl returns just

Re: echo and hello bug

2009-06-17 Thread James Jarvis
Vladimir 'phcoder' Serbinenko wrote: On Tue, Jun 16, 2009 at 4:09 PM, James Jarvis > wrote: Vladimir 'phcoder' Serbinenko wrote: tried this module list in grub-mkimage on 2282 but it hung! I think you have a problem with

Re: echo and hello bug

2009-06-17 Thread Vladimir 'phcoder' Serbinenko
On Wed, Jun 17, 2009 at 5:24 PM, James Jarvis wrote: > Vladimir 'phcoder' Serbinenko wrote: > >> >> >> On Tue, Jun 16, 2009 at 4:09 PM, James Jarvis > james.jar...@ed.ac.uk>> wrote: >> >>Vladimir 'phcoder' Serbinenko wrote: >> >>tried this module list in grub-mkimage on 2282 but i

Re: A strange occurrence

2009-06-17 Thread David A. Cobb
On 06/16/2009 02:30 PM, Felix Zielcke wrote: Am Dienstag, den 16.06.2009, 14:20 -0400 schrieb David A. Cobb: But, I'm puzzled [yeah, that is my normal state]. Did the BIOS actually read a different image? Or, did the "old" GRUB fail to chainload, even though there is no visible sign during

Re: Fw: gettext support

2009-06-17 Thread Carles Pina i Estany
Hi, On Jun/17/2009, Vladimir 'phcoder' Serbinenko wrote: > Hello > > > > Comments for next steps to commit the patch are welcomed. > > Quick look revealed that you haven't taken into account my comments exposed > here: http://lists.gnu.org/archive/html/grub-devel/2009-04/msg00181.html Right,

Warning free build achieved, coreboot documentation updated

2009-06-17 Thread Pavel Roskin
Hello! I have fixed the remaining warnings in the coreboot build, so now GRUB builds without warnings for all 7 supported platforms in the default configuration. Let's keep it this way. I was unable to compile coreboot-v3, but I succeeded at compiling coreboot-v2 for qemu. It's not trivial, so

Re: [PATCH] add support for dmraid devices

2009-06-17 Thread Pavel Roskin
On Wed, 2009-06-17 at 16:08 +0200, Felix Zielcke wrote: > add support for dmraid devices That's good. I have a system with a PDC RAID, and although I only have one drive connected, GRUB2 won't install on it. I'm looking forward to testing your patch on that hardware. Unfortunately, your patch d

Re: Warning free build achieved, coreboot documentation updated

2009-06-17 Thread Vladimir 'phcoder' Serbinenko
On Wed, Jun 17, 2009 at 11:47 PM, Pavel Roskin wrote: > Hello! > > I have fixed the remaining warnings in the coreboot build, so now GRUB > builds without warnings for all 7 supported platforms in the default > configuration. Let's keep it this way. > There are still warnings if you compile unde

Re: Warning free build achieved, coreboot documentation updated

2009-06-17 Thread Isaac Dupree
Vladimir 'phcoder' Serbinenko wrote: The remaining is util/hostdisk.c:1061: comparison between signed and unsigned The problem comes from the following declaration # define GRUB_LONG_MIN -2147483648UL As you see we declare a negative number with UL. This works correctly on i386 but what about oth