* gfxmenu not working in debian testing ( aka squeeze )
@ 2010-01-09 10:20 J. Bakshi
2010-01-09 10:35 ` Vladimir 'φ-coder/phcoder' Serbinenko
2010-01-09 10:38 ` Felix Zielcke
0 siblings, 2 replies; 5+ messages in thread
From: J. Bakshi @ 2010-01-09 10:20 UTC (permalink / raw)
To: grub-devel
Hello list,
I have already clarified ( and fell very sorry ) that grub 1.98 in not in lenny but in testing squeeze. I gave it a try to modifying grub2.cfg as
` ` `
set gfxmode=640x480
insmod biosdisk
insmod pc
insmod font
insmod vbe
insmod gfxterm
insmod videotest
insmod tga
insmod png
insmod gfxmenu
set menuviewer="gfxmenu"
set theme="/boot/grub/themes/winter/theme.txt"
### BEGIN /etc/grub.d/10_linux ###
menuentry "Debian GNU/Linux, with Linux 2.6.31.vesa" {
insmod reiserfs
set root=(hd0,3)
search --no-floppy --fs-uuid --set 291bf7b2-ae4a-4de9-8892-05caca7c0950
linux /boot/vmlinuz-2.6.31.vesa root=/dev/hda3 ro vga=792 quiet
}
menuentry "Debian GNU/Linux, with Linux 2.6.31.vesa (recovery mode)" {
insmod reiserfs
set root=(hd0,3)
search --no-floppy --fs-uuid --set 291bf7b2-ae4a-4de9-8892-05caca7c0950
linux /boot/vmlinuz-2.6.31.vesa root=/dev/hda3 ro single
}
` ` `
And finally did
cp -Rvf GRUBtheme/ themes/
After restarting the machine I get the same old grub, no menu :-(
Have I missed something in my config or the testing branch is still no ready to support it ?
Thanks
^ permalink raw reply [flat|nested] 5+ messages in thread* Re: gfxmenu not working in debian testing ( aka squeeze )
2010-01-09 10:20 gfxmenu not working in debian testing ( aka squeeze ) J. Bakshi
@ 2010-01-09 10:35 ` Vladimir 'φ-coder/phcoder' Serbinenko
2010-01-09 16:31 ` J. Bakshi
2010-01-09 10:38 ` Felix Zielcke
1 sibling, 1 reply; 5+ messages in thread
From: Vladimir 'φ-coder/phcoder' Serbinenko @ 2010-01-09 10:35 UTC (permalink / raw)
To: The development of GNU GRUB
[-- Attachment #1: Type: text/plain, Size: 1702 bytes --]
J. Bakshi wrote:
> Hello list,
>
> I have already clarified ( and fell very sorry ) that grub 1.98 in not in lenny but in testing squeeze. I gave it a try to modifying grub2.cfg as
>
> ` ` `
> set gfxmode=640x480
> insmod biosdisk
> insmod pc
> insmod font
> insmod vbe
> insmod gfxterm
> insmod videotest
> insmod tga
> insmod png
> insmod gfxmenu
>
> set menuviewer="gfxmenu"
> set theme="/boot/grub/themes/winter/theme.txt"
>
> ### BEGIN /etc/grub.d/10_linux ###
> menuentry "Debian GNU/Linux, with Linux 2.6.31.vesa" {
> insmod reiserfs
> set root=(hd0,3)
> search --no-floppy --fs-uuid --set 291bf7b2-ae4a-4de9-8892-05caca7c0950
> linux /boot/vmlinuz-2.6.31.vesa root=/dev/hda3 ro vga=792 quiet
> }
> menuentry "Debian GNU/Linux, with Linux 2.6.31.vesa (recovery mode)" {
> insmod reiserfs
> set root=(hd0,3)
> search --no-floppy --fs-uuid --set 291bf7b2-ae4a-4de9-8892-05caca7c0950
> linux /boot/vmlinuz-2.6.31.vesa root=/dev/hda3 ro single
> }
>
> ` ` `
>
> And finally did
>
> cp -Rvf GRUBtheme/ themes/
>
> After restarting the machine I get the same old grub, no menu :-(
>
> Have I missed something in my config
You missed loadfont and terminal_output gfxterm statements. I recommend
using TERMINAL_OUTPUT=gfxterm and GRUB_THEME=
/boot/grub/themes/winter/theme.txt
Be sure to use scalable theme (newer format)
> or the testing branch is still no ready to support it ?
>
> Thanks
>
>
> _______________________________________________
> Grub-devel mailing list
> Grub-devel@gnu.org
> http://lists.gnu.org/mailman/listinfo/grub-devel
>
>
--
Regards
Vladimir 'φ-coder/phcoder' Serbinenko
[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 293 bytes --]
^ permalink raw reply [flat|nested] 5+ messages in thread* Re: gfxmenu not working in debian testing ( aka squeeze )
2010-01-09 10:20 gfxmenu not working in debian testing ( aka squeeze ) J. Bakshi
2010-01-09 10:35 ` Vladimir 'φ-coder/phcoder' Serbinenko
@ 2010-01-09 10:38 ` Felix Zielcke
2010-01-09 16:29 ` J. Bakshi
1 sibling, 1 reply; 5+ messages in thread
From: Felix Zielcke @ 2010-01-09 10:38 UTC (permalink / raw)
To: The development of GNU GRUB
Am Samstag, den 09.01.2010, 15:50 +0530 schrieb J. Bakshi:
> Have I missed something in my config or the testing branch is still no
> ready to support it ?
>
Seems like you missed my reply to your initial mail about this:
Only Debian experimental (and my PPA for Ubuntu though) has Colin
Bennets theming code (gfxmenu).
--
Felix Zielcke
Proud Debian Maintainer and GNU GRUB developer
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: gfxmenu not working in debian testing ( aka squeeze )
2010-01-09 10:38 ` Felix Zielcke
@ 2010-01-09 16:29 ` J. Bakshi
0 siblings, 0 replies; 5+ messages in thread
From: J. Bakshi @ 2010-01-09 16:29 UTC (permalink / raw)
To: grub-devel
On Sat, 09 Jan 2010 11:38:01 +0100
Felix Zielcke <fzielcke@z-51.de> wrote:
> Am Samstag, den 09.01.2010, 15:50 +0530 schrieb J. Bakshi:
> > Have I missed something in my config or the testing branch is still
> > no ready to support it ?
> >
>
> Seems like you missed my reply to your initial mail about this:
>
> Only Debian experimental (and my PPA for Ubuntu though) has Colin
> Bennets theming code (gfxmenu).
>
OH ! I really missed that. So again waiting for that to be available in testing :-(
Thanks for your response.
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2010-01-09 16:39 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-01-09 10:20 gfxmenu not working in debian testing ( aka squeeze ) J. Bakshi
2010-01-09 10:35 ` Vladimir 'φ-coder/phcoder' Serbinenko
2010-01-09 16:31 ` J. Bakshi
2010-01-09 10:38 ` Felix Zielcke
2010-01-09 16:29 ` J. Bakshi
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.