Re: Fwd: [PATCH] gfxpayload

2009-05-30 Thread Robert Millan
On Sat, May 30, 2009 at 05:23:18PM +0200, Vladimir 'phcoder' Serbinenko wrote: > On Sun, May 17, 2009 at 10:36 PM, Robert Millan wrote: > > > > Hi, > > > > On Sun, May 17, 2009 at 04:34:16PM +0200, Vladimir 'phcoder' Serbinenko > > wrote: > >>  #ifndef GRUB_ASSUME_LINUX_HAS_FB_SUPPORT > >> -#defi

Re: [PATCH] gfxpayload

2009-05-18 Thread Colin D Bennett
Robert Millan wrote on Sunday 17 May 2009: > Hi, > > On Sun, May 17, 2009 at 04:34:16PM +0200, Vladimir 'phcoder' Serbinenko wrote: > > --- a/term/gfxterm.c > > +++ b/term/gfxterm.c > > @@ -27,10 +27,7 @@ > > #include > > #include > > > > -#define DEFAULT_VIDEO_WIDTH640 > > -#define DE

Re: Fwd: [PATCH] gfxpayload

2009-05-17 Thread Robert Millan
Hi, On Sun, May 17, 2009 at 04:34:16PM +0200, Vladimir 'phcoder' Serbinenko wrote: > #ifndef GRUB_ASSUME_LINUX_HAS_FB_SUPPORT > -#define GRUB_ASSUME_LINUX_HAS_FB_SUPPORT 0 > +#define DEFAULT_VIDEO_MODE "text" > +#else > +#define DEFAULT_VIDEO_MODE "keep" > #endif As discussed on IRC, this "kee

Re: [PATCH] gfxpayload

2009-05-17 Thread Vladimir 'phcoder' Serbinenko
> Just tried it in VMware. > With set gfxmode=1024x768x24 and set gfxpayload=1024x768x24 and no vga= > option I just get the normal text mode > with set gfxpayload=keep it works > and also vga=0x317 works too. As we figured out on IRC the problem was that vmware has no 16-bit. New patch with fixed

Re: [PATCH] gfxpayload

2009-05-16 Thread Felix Zielcke
Am Samstag, den 16.05.2009, 20:01 +0200 schrieb Vladimir 'phcoder' Serbinenko: > Hello. Here is a long-discussed gfxpayload patch. To start linux in > 1024x768 mode do: > insmod vbe > gfxmode=1024x768 > linux ... > ... > boot > Multiple modes can be separated by either comma or semicolon. First > m

[PATCH] gfxpayload

2009-05-16 Thread Vladimir 'phcoder' Serbinenko
Hello. Here is a long-discussed gfxpayload patch. To start linux in 1024x768 mode do: insmod vbe gfxmode=1024x768 linux ... ... boot Multiple modes can be separated by either comma or semicolon. First mode can be "keep" which will make the system keep the current mode if accepted by kernel. Another