Re: [PATCH] Implement grub_sleep() and grub_ticksleep()

2007-10-21 Thread Marco Gerards
Robert Millan <[EMAIL PROTECTED]> writes: Hi, [...] > Fixed, I think. Yes, I think it is :-) > Attached new patch. > diff -Nurp grub2/include/grub/misc.h grub2.time/include/grub/misc.h > --- grub2/include/grub/misc.h 2007-07-22 01:32:22.0 +0200 > +++ grub2.time/include/grub/misc.h

Re: [PATCH] TODO

2007-10-21 Thread Marco Gerards
Robert Millan <[EMAIL PROTECTED]> writes: > It seems the TODO is horribly outdated, so I gave it a review. I think these > are already fixed. Is it correct? You are right, this file is outdated. Many things have been implemented already. Now we use the TODO on the wiki, which is also outdated

Re: status of VGA terminal

2007-10-21 Thread Marco Gerards
Robert Millan <[EMAIL PROTECTED]> writes: [...] > Ok, when I have some time I'll try making it a video driver then. > > In the meantime, should we remove it from CVS ? It will have to be removed > anyway since video drivers don't belong in term/. Please do not remove it before the video driver

Re: [PATCH] Implement grub_sleep() and grub_ticksleep()

2007-10-21 Thread Robert Millan
Hi Marco, On Sun, Oct 21, 2007 at 12:21:02PM +0200, Marco Gerards wrote: > > diff -Nurp grub2/include/grub/misc.h grub2.time/include/grub/misc.h > > --- grub2/include/grub/misc.h 2007-07-22 01:32:22.0 +0200 > > +++ grub2.time/include/grub/misc.h 2007-10-19 14:19:53.0 +0200

Re: [PATCH] TODO

2007-10-21 Thread Robert Millan
On Sun, Oct 21, 2007 at 12:24:36PM +0200, Marco Gerards wrote: > Robert Millan <[EMAIL PROTECTED]> writes: > > > It seems the TODO is horribly outdated, so I gave it a review. I think > > these > > are already fixed. Is it correct? > > You are right, this file is outdated. Many things have be

Re: [PATCH] TODO

2007-10-21 Thread Vesa Jääskeläinen
Robert Millan wrote: > On Sun, Oct 21, 2007 at 12:24:36PM +0200, Marco Gerards wrote: >> Robert Millan <[EMAIL PROTECTED]> writes: >> >>> It seems the TODO is horribly outdated, so I gave it a review. I think >>> these >>> are already fixed. Is it correct? >> You are right, this file is outdated

Re: [PATCH] Implement grub_sleep() and grub_ticksleep()

2007-10-21 Thread Robert Millan
I noticed that one also needs to update time.h headers in conf/*.rmk to make the build system happy about symbol dependencies. See new patch. -- Robert Millan I know my rights; I want my phone call! What use is a phone call, if you are unable to speak? (as seen on /.) 2007-10-21 Robert Mill

Re: [PATCH] grub2 for Cygwin

2007-10-21 Thread Christian Franke
Robert Millan wrote: On Tue, Oct 16, 2007 at 02:03:35PM +0200, Christian Franke wrote: A patch vs. current CVS (cvs co -D "2007-10-16 UTC" ...) is available here: http://franke.dvrdns.org/cygwin/grub/grub2-20071016-cygwin.patch A proposed changelog entry is located in the patch itself (Change

Re: [PATCH] grub2 for Cygwin

2007-10-21 Thread Vesa Jääskeläinen
Christian Franke wrote: > Robert Millan wrote: >> On Tue, Oct 16, 2007 at 02:03:35PM +0200, Christian Franke wrote: >> Could you send it as an attachment? This way it's easier to comment on >> it contextualy. > I didn't want to send a ~45KB attachment in my first mail to this list ;-) > Patch is

Re: grup2 i386

2007-10-21 Thread Vesa Jääskeläinen
willem wrote: > vesa i did see your proposef html and css files. > looks very nice. > over what kind of engine are you thinking of ? Component layouting engine... eg. it places components to the screen. Probably will bake my own. But I'll design it after feature set is frozen (eg. I get some comme

Re: [PATCH] TODO

2007-10-21 Thread Jordi Mallach
On Sun, Oct 21, 2007 at 03:40:03PM +0300, Vesa Jääskeläinen wrote: > > Should the TODO in CVS be updated with my patch, or removed altogether? > Perhaps add reference to Wiki page. And update Wiki ;) That makes you have a network connection to have a look at it. I personally would like to be able

Re: [PATCH] TODO

2007-10-21 Thread Vesa Jääskeläinen
Jordi Mallach wrote: > On Sun, Oct 21, 2007 at 03:40:03PM +0300, Vesa Jääskeläinen wrote: >>> Should the TODO in CVS be updated with my patch, or removed altogether? >> Perhaps add reference to Wiki page. And update Wiki ;) > > That makes you have a network connection to have a look at it. I > per

Re: [PATCH] grub2 for Cygwin

2007-10-21 Thread Christian Franke
Vesa Jääskeläinen wrote: Christian Franke wrote: Robert Millan wrote: On Tue, Oct 16, 2007 at 02:03:35PM +0200, Christian Franke wrote: Could you send it as an attachment? This way it's easier to comment on it contextualy. I didn't want to send a ~45KB attachment in my fir

Re: [PATCH] TODO

2007-10-21 Thread Robert Millan
On Sun, Oct 21, 2007 at 03:21:26PM +0200, Jordi Mallach wrote: > On Sun, Oct 21, 2007 at 03:40:03PM +0300, Vesa Jääskeläinen wrote: > > > Should the TODO in CVS be updated with my patch, or removed altogether? > > Perhaps add reference to Wiki page. And update Wiki ;) > > That makes you have a net

Re: [PATCH] grub2 for Cygwin

2007-10-21 Thread Robert Millan
On Sun, Oct 21, 2007 at 03:51:34PM +0200, Christian Franke wrote: > Agree. > > Busy with other projects, I decided to "release early" in one large patch. > If desired, I can send smaller patches in 2-3 weeks or so. > > Meantime, comments on the large patch are appreciated. Please be patient when

[PATCH] startup.S does not find includes

2007-10-21 Thread Christian Franke
Hi, some recent checkin appearently introduces the following regression: Compilation fails if configure'd outside of $(srcdir). #include "kern/i386/realmode.S" and "kern/i386/loader.S" fail in startup.S. Patch is attached. Christian --- grub2.orig/Makefile.in 2007-06-11 08:26:17.0 +02

Re: [PATCH] startup.S does not find includes

2007-10-21 Thread Robert Millan
On Sun, Oct 21, 2007 at 06:56:21PM +0200, Christian Franke wrote: > Hi, > > some recent checkin appearently introduces the following regression: > > Compilation fails if configure'd outside of $(srcdir). > #include "kern/i386/realmode.S" and "kern/i386/loader.S" fail in startup.S. Uhm I just not

Re: GRUB on two mbrs

2007-10-21 Thread steve platt
On Tue, 2007-10-16 at 21:30 -0500, John Pierce wrote: > title Mandriva 2008 > rootnoverify (hd1,0) > makeactive > chainloader +1 > ... I have tried with root (hd1,0). Have you tried "root (hd1)" yet? I think that's the way to refer to the "MBR" of a drive ... Steve __

Re: [PATCH] startup.S does not find includes

2007-10-21 Thread Christian Franke
Robert Millan wrote: On Sun, Oct 21, 2007 at 06:56:21PM +0200, Christian Franke wrote: Hi, some recent checkin appearently introduces the following regression: Compilation fails if configure'd outside of $(srcdir). #include "kern/i386/realmode.S" and "kern/i386/loader.S" fail in startup.S.

Grub2 wiki

2007-10-21 Thread steve platt
Some time ago I tried to use Grub2, having found that Grub1 (Legacy) didn't work on my system ( yes, I know my logic was poor! ). While trying to find how to use it, I came across the following page :- http://grub.enbug.org/TestingOnX86 In that page there is a section about installing Grub2 on

Re: Grub2 wiki

2007-10-21 Thread Robert Millan
On Sun, Oct 21, 2007 at 09:15:40PM +0100, steve platt wrote: > > grub-install --grub-setup=/boot/grub/grub.cfg /dev/hda > I think the error is to quote the path to the config file as an argument > where the path to the grub-setup program is expected. Fixed, thanks. -- Robert Millan I know m

Grub2 wiki

2007-10-21 Thread willem
In the grub2 wiki the page how to install on x86 systems references /dev/hda . but in the newer kernel the device is changed in /dev/sda. The wiki should mention that too. regards. ___ Grub-devel mailing list Grub-devel@gnu.org http://lists.gnu.or