Re: [PATCH,HURD] Fix GNU/Hurd menu entry generation

2009-11-03 Thread Felix Zielcke
Am Dienstag, den 03.11.2009, 15:01 +0100 schrieb Samuel Thibault: > Yves Blusseau, le Tue 03 Nov 2009 14:36:09 +0100, a écrit : > > is it normal that hurd entry match ANY OS because you left the wildcard > > in the hurd case: > > Ugh, no, I was misguided by the hurd tag indeed, here is a patch. >

Re: [PATCH,HURD] Fix GNU/Hurd menu entry generation

2009-11-03 Thread Samuel Thibault
Yves Blusseau, le Tue 03 Nov 2009 14:36:09 +0100, a écrit : > is it normal that hurd entry match ANY OS because you left the wildcard > in the hurd case: Ugh, no, I was misguided by the hurd tag indeed, here is a patch. Samuel 2009-11-03 Samuel Thibault * util/grub.d/30_os-prober.in:

Re: [PATCH,HURD] Fix GNU/Hurd menu entry generation

2009-11-03 Thread Yves Blusseau
Robert Millan a écrit : On Mon, Nov 02, 2009 at 08:36:05PM +0100, Samuel Thibault wrote: Hello, The patch below fixes menu entry generation for GNU/Hurd. Committed. Btw, next time please use text/plain attachments. Hi, is it normal that hurd entry match ANY OS because you left t

Re: [PATCH,HURD] Fix GNU/Hurd menu entry generation

2009-11-02 Thread Robert Millan
On Mon, Nov 02, 2009 at 08:36:05PM +0100, Samuel Thibault wrote: > Hello, > > The patch below fixes menu entry generation for GNU/Hurd. Committed. Btw, next time please use text/plain attachments. -- Robert Millan The DRM opt-in fallacy: "Your data belongs to us. We will decide when (and

[PATCH,HURD] Fix GNU/Hurd menu entry generation

2009-11-02 Thread Samuel Thibault
Hello, The patch below fixes menu entry generation for GNU/Hurd. Samuel 2009-20-26 Samuel Thibault * util/grub.d/30_os-prober.in: Add GNU/Hurd support Index: util/grub.d/30_os-prober.in === --- util/grub.d/30_os-prober.

Re: [PATCH,HURD] Fix GNU/Hurd menu entry generation

2009-10-26 Thread Samuel Thibault
Robert Millan, le Mon 26 Oct 2009 13:36:13 +0100, a écrit : > On Mon, Oct 26, 2009 at 03:01:16AM +0100, Samuel Thibault wrote: > > > Did you observe wrong entry generation in grub-mkconfig? > > > > I didn't try that part of my patch as there are other things that > > prevent grub2 from working fro

Re: [PATCH,HURD] Fix GNU/Hurd menu entry generation

2009-10-26 Thread Robert Millan
On Mon, Oct 26, 2009 at 03:01:16AM +0100, Samuel Thibault wrote: > > Did you observe wrong entry generation in grub-mkconfig? > > I didn't try that part of my patch as there are other things that > prevent grub2 from working from inside GNU/Hurd itself. Which are these? It's unfortunate that nob

Re: [PATCH,HURD] Fix GNU/Hurd menu entry generation

2009-10-25 Thread Samuel Thibault
Robert Millan, le Mon 26 Oct 2009 02:48:48 +0100, a écrit : > > @@ -73,7 +74,7 @@ > > EOF > > prepare_grub_to_access_device ${GRUB_DEVICE} | sed -e "s/^/\t/" > > cat << EOF > > - multiboot ${kernel} root=device:${GRUB_DEVICE} > > + multiboot ${kernel} root=device:${mach_device} > > I think

Re: [PATCH,HURD] Fix GNU/Hurd menu entry generation

2009-10-25 Thread Robert Millan
On Mon, Oct 26, 2009 at 02:40:01AM +0100, Samuel Thibault wrote: > + mach_device="`echo "${GRUB_DEVICE}" | tr -d '()' | tr , s`" > [...] > +mach_device="`echo "${GRUB_DEVICE}" | tr -d '()' | tr , s`" > > for i in /hurd/${hurd_fs}.static /hurd/exec ; do >if test -e "$i" ; then > @@ -73,7

[PATCH,HURD] Fix GNU/Hurd menu entry generation

2009-10-25 Thread Samuel Thibault
Hello, The patch below fixes menu entry generation for GNU/Hurd. Samuel 2009-20-26 Samuel Thibault * util/grub.d/30_os-prober.in: Add GNU/Hurd support * util/grub.d/10_hurd.in: Translate grub device name into mach device name. Index: util/grub.d/30_os-prober.in =