Re: Grub is the bootloader used on Win7?

2009-12-25 Thread richardvo...@gmail.com
On Fri, Dec 25, 2009 at 3:21 PM, Felix Zielcke wrote: > Am Freitag, den 25.12.2009, 19:15 -0200 schrieb Renato S.Yamane: >> Hi, >> >> I´m a GNU/Linux user, but I have a computer with Windows too (fresh >> install, with NO Linux installed) >> >> Recently, my RAID5 failed, sometimes I get a corrupet

[PATCH] While and until loops support to GRUB script

2009-12-25 Thread BVK Chaitanya
Hi, Attached patch adds while and until commands support to GRUB script. It is also available in people/bvk/while-loop-support branch. This doesn't have any unit tests yet -- i am still thinking of how to break out of the loop, after few iterations. Also, i am not sure how to handle Ctrl-C to

regression fix

2009-12-25 Thread Carles Pina i Estany
Hi, Commit 1949 introduced a bug using TAB due a miss-understanding that I had with the code. Find an attached patch that fix it. Brief ok from someone? -- Carles Pina i Estany http://pinux.info === modified file 'ChangeLog' --- ChangeLog 2009-12-25 23:50:59 + +++ ChangeLog 2009-1

Re: Grub is the bootloader used on Win7?

2009-12-25 Thread Felix Zielcke
Am Freitag, den 25.12.2009, 19:15 -0200 schrieb Renato S.Yamane: > ​Hi, > > I´m a GNU/Linux user, but I have a computer with Windows too (fresh > install, with NO Linux installed) > > Recently, my RAID5 failed, sometimes I get a corrupetd system and I > see Windows loading GRUB! > > Anyone now i

Grub is the bootloader used on Win7?

2009-12-25 Thread Renato S . Yamane
​Hi, I´m a GNU/Linux user, but I have a computer with Windows too (fresh install, with NO Linux installed) Recently, my RAID5 failed, sometimes I get a corrupetd system and I see Windows loading GRUB! Anyone now if Windows7 is using Grub as default bootloader (because I don´t believe that Gr

[PATCH] Bug fix in GRUB script word expansion

2009-12-25 Thread BVK Chaitanya
Hi, This patch fixes a GRUB script bug in expanding (and splitting into parameters) words like, aaa${foo}bbb, aaa"bbb ${foo} ccc"ddd, etc. forms. thanks, -- bvk.chaitanya === modified file 'ChangeLog.scripting' --- ChangeLog.scripting 2009-12-25 18:16:20 + +++ ChangeLog.scripting 2009-12-

Re: Fix for grub_assert_fail undefined on NetBSD and other platforms

2009-12-25 Thread Felix Zielcke
Am Donnerstag, den 24.12.2009, 22:55 +0100 schrieb Robert Millan: > On Tue, Dec 22, 2009 at 09:39:07PM +0530, BVK Chaitanya wrote: > > Hi > > > > > > Attached is the patch, which removes use of undefined > grub_assert_fail > > function for catching bad-type-cast errors, with a better version > >

Re: execution of update-grub in chroots might fail

2009-12-25 Thread Felix Zielcke
Am Donnerstag, den 24.12.2009, 22:28 +0100 schrieb Robert Millan: > On Mon, Dec 14, 2009 at 11:56:21AM +, Colin Watson wrote: > > The simplest fix is to add '&& [ -e /boot/grub/grub.cfg ]' to the > test > > in memtest86+; > > Uhm should we make this check part of update-grub? Or even part of

Re: [RFC] Dynamic device.map

2009-12-25 Thread Felix Zielcke
Am Donnerstag, den 24.12.2009, 22:17 +0100 schrieb Robert Millan: > On Thu, Dec 10, 2009 at 11:12:58AM +0100, Felix Zielcke wrote: > > Am Donnerstag, den 10.12.2009, 01:55 +0100 schrieb Robert Millan: > > > But first we'd need to figure out what we do with the "set > root=xxx" > > > backward compat

Re: gettext: help commands

2009-12-25 Thread Carles Pina i Estany
Hi, On Dec/25/2009, Vladimir '??-coder/phcoder' Serbinenko wrote: > Now 'desclen' is out of sync with message (arf, rushing for Christmas lunch :-) ) Now all cmd->summary and cmd->description in commands/help.c are gettextizzed. I've reviewed lib/arg.c and was fine. Thanks Vladimir, -- Ca

gettext: lib/arg.c

2009-12-25 Thread Carles Pina i Estany
Hi, My previous patch touches lib/arg.c, and I would commit that patch but we should fix something that will happen there. lib/arg.c does: const char *doc = _(opt->doc); for (;;) { while (spacing-- > 0) grub_putchar (' ');

Re: gettext: help commands

2009-12-25 Thread Vladimir 'φ-coder/phcoder' Serbinenko
Carles Pina i Estany wrote: > Hi, > > On Dec/25/2009, Vladimir '??-coder/phcoder' Serbinenko wrote: > > >>> === modified file 'commands/help.c' >>> --- commands/help.c 2009-06-10 21:04:23 + >>> +++ commands/help.c 2009-12-25 11:34:16 + >>> grub_cmd_help (grub_extcmd_t ext __attribute__ (

Re: gettext: help commands

2009-12-25 Thread Carles Pina i Estany
Hi, On Dec/25/2009, Vladimir '??-coder/phcoder' Serbinenko wrote: > >=== modified file 'commands/help.c' > >--- commands/help.c 2009-06-10 21:04:23 + > >+++ commands/help.c 2009-12-25 11:34:16 + > > grub_cmd_help (grub_extcmd_t ext __attribute__ ((unused)), int argc, > >@@ -48,7 +49,7

Re: gettext: help commands

2009-12-25 Thread Carles Pina i Estany
Hi, On Dec/25/2009, Carles Pina i Estany wrote: > Find attached a patch that gettextizze the output of: The patch that I wanted to send is the attached one. It's the same one but without normal/menu_text.c changed as is not needed (will maybe be in the future). -- Carles Pina i Estany

Re: gettext: help commands

2009-12-25 Thread Vladimir 'φ-coder/phcoder' Serbinenko
Carles Pina i Estany wrote: > Hello, > > Find attached a patch that gettextizze the output of: > help play > help search > search --help > > So, implements gettext in commands/help.c, lib/arg.c, I also did in > normal/dyncmd.c (for the module not found). > > This is only the basic implementation, w

gettext: help commands

2009-12-25 Thread Carles Pina i Estany
Hello, Find attached a patch that gettextizze the output of: help play help search search --help So, implements gettext in commands/help.c, lib/arg.c, I also did in normal/dyncmd.c (for the module not found). This is only the basic implementation, when this is agreed I will prepare another patc