* Gfxmenu does not work for me
@ 2011-09-11 19:22 Bernard Kolobara
2011-09-11 19:33 ` Vladimir 'φ-coder/phcoder' Serbinenko
0 siblings, 1 reply; 3+ messages in thread
From: Bernard Kolobara @ 2011-09-11 19:22 UTC (permalink / raw)
To: grub-devel
Hello,
I downloaded the latest GRUB source from the Bazaar today and compiled
it for the i686-pc platform.
I installed grub on a NTFS formatted USB flash drive with:
grub-install --no-floppy --boot-directory=/media/USB /dev/sdb
(this takes 100x more time than installing to a fat32 USB)
After that I got grub to boot without grub.cfg
I tried Colin Bennett's grub.cfg file from here:
http://grub.gibibit.com/files/overlay_2009-07-19.tar.gz
with all the themes/fonts.
But after booting grub complains about not having the pc.mod file and
boots into the standard UI.
Here is the grub.cfg:
insmod pc
insmod biosdisk
insmod font
insmod vbe
insmod gfxterm
insmod videotest
insmod tga
insmod png
insmod gfxmenu
menuviewer="gfxmenu"
gfxmode="640x480"
theme="/grub/themes/ubuntu1/theme.txt"
gfxterm_font="Fixed Regular 12"
timeout=8
default="3"
fallback="2 1"
menuentry "OpenSUSE" --cl
.....
.....
loadfont /grub/fonts/10x20.pf2
loadfont /grub/fonts/4x6.pf2
.....
What am I doing wrong?
Regards, Bernard.
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: Gfxmenu does not work for me
2011-09-11 19:22 Gfxmenu does not work for me Bernard Kolobara
@ 2011-09-11 19:33 ` Vladimir 'φ-coder/phcoder' Serbinenko
2011-09-11 21:06 ` Bernard Kolobara
0 siblings, 1 reply; 3+ messages in thread
From: Vladimir 'φ-coder/phcoder' Serbinenko @ 2011-09-11 19:33 UTC (permalink / raw)
To: grub-devel
[-- Attachment #1: Type: text/plain, Size: 1594 bytes --]
On 11.09.2011 21:22, Bernard Kolobara wrote:
> Hello,
>
> I downloaded the latest GRUB source from the Bazaar today and compiled
> it for the i686-pc platform.
> I installed grub on a NTFS formatted USB flash drive with:
>
> grub-install --no-floppy --boot-directory=/media/USB /dev/sdb
> (this takes 100x more time than installing to a fat32 USB)
>
> After that I got grub to boot without grub.cfg
>
> I tried Colin Bennett's grub.cfg file from here:
>
> http://grub.gibibit.com/files/overlay_2009-07-19.tar.gz
>
Format for old version. New ones are under
http://download.savannah.nongnu.org/releases/grub-extras/
> with all the themes/fonts.
>
> But after booting grub complains about not having the pc.mod file and
> boots into the standard UI.
>
> Here is the grub.cfg:
>
> insmod pc
> insmod biosdisk
both of above useless
> insmod font
> insmod vbe
> insmod gfxterm
> insmod videotest
> insmod tga
> insmod png
> insmod gfxmenu
>
> menuviewer="gfxmenu"
useless
> gfxmode="640x480"
>
> theme="/grub/themes/ubuntu1/theme.txt"
>
> gfxterm_font="Fixed Regular 12"
>
missing "terminal_output gfxterm"
> timeout=8
> default="3"
> fallback="2 1"
>
> menuentry "OpenSUSE" --cl
> .....
> .....
>
> loadfont /grub/fonts/10x20.pf2
> loadfont /grub/fonts/4x6.pf2
> .....
>
> What am I doing wrong?
> Regards, Bernard.
>
> _______________________________________________
> Grub-devel mailing list
> Grub-devel@gnu.org
> https://lists.gnu.org/mailman/listinfo/grub-devel
>
--
Regards
Vladimir 'φ-coder/phcoder' Serbinenko
[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 294 bytes --]
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: Gfxmenu does not work for me
2011-09-11 19:33 ` Vladimir 'φ-coder/phcoder' Serbinenko
@ 2011-09-11 21:06 ` Bernard Kolobara
0 siblings, 0 replies; 3+ messages in thread
From: Bernard Kolobara @ 2011-09-11 21:06 UTC (permalink / raw)
To: The development of GNU GRUB
Thank you.
"terminal_output gfxterm" did it.
I could nowhere find up to date documentation for the grub.cfg file.
Can you recommend some resources? Also for the theming file?
2011/9/11 Vladimir 'φ-coder/phcoder' Serbinenko <phcoder@gmail.com>:
> On 11.09.2011 21:22, Bernard Kolobara wrote:
>> Hello,
>>
>> I downloaded the latest GRUB source from the Bazaar today and compiled
>> it for the i686-pc platform.
>> I installed grub on a NTFS formatted USB flash drive with:
>>
>> grub-install --no-floppy --boot-directory=/media/USB /dev/sdb
>> (this takes 100x more time than installing to a fat32 USB)
>>
>> After that I got grub to boot without grub.cfg
>>
>> I tried Colin Bennett's grub.cfg file from here:
>>
>> http://grub.gibibit.com/files/overlay_2009-07-19.tar.gz
>>
> Format for old version. New ones are under
> http://download.savannah.nongnu.org/releases/grub-extras/
>> with all the themes/fonts.
>>
>> But after booting grub complains about not having the pc.mod file and
>> boots into the standard UI.
>>
>> Here is the grub.cfg:
>>
>> insmod pc
>> insmod biosdisk
> both of above useless
>> insmod font
>> insmod vbe
>> insmod gfxterm
>> insmod videotest
>> insmod tga
>> insmod png
>> insmod gfxmenu
>>
>> menuviewer="gfxmenu"
> useless
>> gfxmode="640x480"
>>
>> theme="/grub/themes/ubuntu1/theme.txt"
>>
>> gfxterm_font="Fixed Regular 12"
>>
> missing "terminal_output gfxterm"
>> timeout=8
>> default="3"
>> fallback="2 1"
>>
>> menuentry "OpenSUSE" --cl
>> .....
>> .....
>>
>> loadfont /grub/fonts/10x20.pf2
>> loadfont /grub/fonts/4x6.pf2
>> .....
>>
>> What am I doing wrong?
>
>> Regards, Bernard.
>>
>> _______________________________________________
>> Grub-devel mailing list
>> Grub-devel@gnu.org
>> https://lists.gnu.org/mailman/listinfo/grub-devel
>>
>
>
> --
> Regards
> Vladimir 'φ-coder/phcoder' Serbinenko
>
>
>
> _______________________________________________
> Grub-devel mailing list
> Grub-devel@gnu.org
> https://lists.gnu.org/mailman/listinfo/grub-devel
>
>
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2011-09-11 21:06 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-09-11 19:22 Gfxmenu does not work for me Bernard Kolobara
2011-09-11 19:33 ` Vladimir 'φ-coder/phcoder' Serbinenko
2011-09-11 21:06 ` Bernard Kolobara
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.