Page 1 of 1

[SOLVED] No Splash with Grub2

PostPosted: Dec 14th, '13, 09:21
by vecciora
There is only a simple progress bar with black background and "Mageia 3" text in the right-bottom corner when booting.

This is my /etc/default/grub:
Code: Select all
GRUB_CMDLINE_LINUX_DEFAULT=" splash quiet nokmsboot resume=UUID=efcb6a9e-05c3-4cb5-b10f-77a365e768ee"
GRUB_DISABLE_OS_PROBER=false
GRUB_DISABLE_RECOVERY=true
GRUB_TERMINAL_OUTPUT=gfxterm
GRUB_DISTRIBUTOR=Mageia
GRUB_GFXMODE=1024x768x32
GRUB_GFXPAYLOAD_LINUX=text
GRUB_TIMEOUT=10
GRUB_THEME=/boot/grub2/themes/maggy/theme.txt
GRUB_DEFAULT="saved"


I'm using Radeon HD 6310. In every distro if I use the proprietary driver and adding 'nokmsboot' parameter the splash usually display at lower resolution except in Mageia that the splash is gone.

Not a big problem, but it makes Mageia didn't look as nice as other distros on my laptop.

Re: No Splash with Grub2

PostPosted: Dec 14th, '13, 11:31
by gohlip
add "vga=788" to your GRUB_CMDLINE_LINUX_DEFAULT line.

Re: No Splash with Grub2

PostPosted: Dec 16th, '13, 13:55
by vecciora
Still no splash.

I've added "vga=788" and ran grub2-mkconfig&& grub2-install /dev/sda. But, there is still no splash.

Re: No Splash with Grub2

PostPosted: Dec 16th, '13, 15:14
by gohlip
Change
GRUB_GFXPAYLOAD_LINUX=text
to
GRUB_GFXPAYLOAD_LINUX=1024x768x32

ps: should be grub2-mkconfig -o /boot/grub2/grub.cfg
or just update-grub2
and better after grub2-install (which is not necessary)

Re: No Splash with Grub2

PostPosted: Dec 16th, '13, 18:04
by doktor5000
Why not GRUB_GFXPAYLOAD_LINUX=keep ?
And make sure that GRUB_TERMINAL_OUTPUT is commented out or not set to console.

Re: No Splash with Grub2

PostPosted: Dec 16th, '13, 20:08
by gohlip
doktor5000 wrote:Why not GRUB_GFXPAYLOAD_LINUX=keep ?
And make sure that GRUB_TERMINAL_OUTPUT is commented out or not set to console.



Code: Select all
GRUB_GFXPAYLOAD_LINUX=1280x1024x32
GRUB_GFXMODE=1280x1024x32
works for me

Code: Select all
GRUB_GFXPAYLOAD_LINUX=keep
GRUB_GFXMODE=1280x1024x32
did not. Tried it in M3.

Also mentioned somewhere with this I can remove vga=xxx and nokmsboot

see
http://www.gnu.org/software/grub/manual ... gfxpayload

Re: No Splash with Grub2

PostPosted: Dec 16th, '13, 22:06
by gohlip
gohlip wrote:
Code: Select all
GRUB_GFXPAYLOAD_LINUX=1280x1024x32
GRUB_GFXMODE=1280x1024x32
works for me

Code: Select all
GRUB_GFXPAYLOAD_LINUX=keep
GRUB_GFXMODE=1280x1024x32
did not. Tried it in M3.


Just tested again in M4. Confirm "GRUB_GFXPAYLOAD_LINUX=keep" did not work.
Just a black screen instead of splash, but boots okay.
ps: Reconfirm GRUB_GFXPAYLOAD_LINUX=1280x1024x32 works.

Re: No Splash with Grub2

PostPosted: Dec 17th, '13, 05:23
by vecciora
gohlip wrote:Change
GRUB_GFXPAYLOAD_LINUX=text
to
GRUB_GFXPAYLOAD_LINUX=1024x768x32

ps: should be grub2-mkconfig -o /boot/grub2/grub.cfg
or just update-grub2
and better after grub2-install (which is not necessary)


Oh, yeah. I forgot about -o option.

Now I have removed the "vga=788", but changed "GRUB_GFXPAYLOAD_LINUX=text" to "GRUB_GFXPAYLOAD_LINUX=1024x768x32".

Will reboot now and see.

Re: No Splash with Grub2

PostPosted: Dec 17th, '13, 06:29
by vecciora
It worked! Thanks!

Re: [SOLVED] No Splash with Grub2

PostPosted: Dec 17th, '13, 09:14
by gohlip
Welcome. And remove "nokmsboot" if it is there, though nothing bad wll happen if you leave it there.
Same goes for other junk if they don't make sense. Grub will just ignore these.