Gentoo Forums
Gentoo Forums
Gentoo Forums
Quick Search: in
gensplash + livecd-2005.1 horror [solved]
View unanswered posts
View posts from last 24 hours

 
Reply to topic    Gentoo Forums Forum Index Other Things Gentoo
View previous topic :: View next topic  
Author Message
meranto
Tux's lil' helper
Tux's lil' helper


Joined: 23 Sep 2005
Posts: 129
Location: Ridderkerk, The Netherlands

PostPosted: Sat Dec 31, 2005 3:29 pm    Post subject: gensplash + livecd-2005.1 horror [solved] Reply with quote

I'm trying to make gensplash work for about 2 days now, needless to say that it's driving me crazy. I've tried about every possible combination of configs that I found on this forum and the rest of hte internet.

I'm using:

A Dell inspiron 1150 laptop, which has an Intel 852/855 graphics card (I know, it sucks big time)

gentoo-sources-2.6.14-r5
splashutils-1.1.9.8
grub-0.96-r2
splash-themes-livecd-2005.1


My relevant config files:

/usr/src/linux/.config
Code:
#
# Graphics support
#
CONFIG_FB=y
CONFIG_FB_CFB_FILLRECT=y
CONFIG_FB_CFB_COPYAREA=y
CONFIG_FB_CFB_IMAGEBLIT=y
CONFIG_FB_SOFT_CURSOR=y
CONFIG_FB_MODE_HELPERS=y
CONFIG_FB_VESA=y
CONFIG_FB_VESA_TNG=y
CONFIG_FB_VESA_DEFAULT_MODE="1024x768x60"
CONFIG_VIDEO_SELECT=y
CONFIG_FB_I810=y
CONFIG_FB_I810_GTF=y
CONFIG_FB_I810_I2C=y
CONFIG_FB_INTEL=y
CONFIG_FB_INTEL_DEBUG=y
#
# Console display driver support
#
CONFIG_VGA_CONSOLE=y
CONFIG_DUMMY_CONSOLE=y
CONFIG_FRAMEBUFFER_CONSOLE=y
CONFIG_FONT_8x8=y
CONFIG_FONT_8x16=y

#
# Logo configuration
#
CONFIG_FB_SPLASH=y


my basic menu.lst
Code:


timeout 5
default 0
splashimage=(hd0,1)/boot/grub/splash1.xpm.gz

  title Windows (works)
  rootnoverify (hd0,0)
  makeactive
  chainloader +1

  title Linux (works)
  root (hd0,1)
  kernel /boot/kernel-genkernel-x86-2.6.14-gentoo-r5.old init=/linuxrc real_root=/dev/hdc2 root=/dev/ram0 splash=silent
  initrd /boot/initrd-genkernel-x86-2.6.14-gentoo-r5.old
 
  title test (for gensplash tests)
  root (hd0,1)
  kernel /boot/kernel-genkernel-x86-2.6.14-gentoo-r5 root=/dev/ram0 init=/linuxrc real_root=/dev/hdc2 quiet splash=verbose,theme:livecd-2005.1 CONSOLE=/dev/tty1
  initrd /boot/initrd-genkernel-x86-2.6.14-gentoo-r5


This setup gives me a framebuffer at 1024x768, but it's just plain black, with the default gentoo-text running down while booting. When playing around with the vesafb-tng, intelfb or i810fb kernel-parameters nothing substantial changes.

Right after booting the kernel a message appears, containing:
Code:
no 8 bpp silent / verbose picture specified in the theme config


Am I making just a stupid mistake or is this one of those 1-thousand intel855 issues?
_________________
Linus Torvalds: "Really, I'm not out to destroy Microsoft. That will just be a completely unintentional side effect."


Last edited by meranto on Sun Jan 01, 2006 11:23 am; edited 1 time in total
Back to top
View user's profile Send private message
dgaffuri
Advocate
Advocate


Joined: 05 Jun 2005
Posts: 2078
Location: Italy

PostPosted: Sat Dec 31, 2005 3:42 pm    Post subject: Reply with quote

In kernel config you should have
Code:
CONFIG_FB_VESA_DEFAULT_MODE="1024x768@60"

instead of "x60". And you're not specfying a color depth on kernel command. Add something like
Code:
video=vesafb:ywrap,mtrr,1024x768-32@60

This should override the error in kernel config too (it it's not a typo).

Hope it may help.
_________________
Adopt an unanswered post
If you feel that your problem has been solved please edit the top post and add [solved] to the subject
Back to top
View user's profile Send private message
meranto
Tux's lil' helper
Tux's lil' helper


Joined: 23 Sep 2005
Posts: 129
Location: Ridderkerk, The Netherlands

PostPosted: Sat Dec 31, 2005 5:07 pm    Post subject: Reply with quote

dgaffuri wrote:
In kernel config you should have
Code:
CONFIG_FB_VESA_DEFAULT_MODE="1024x768@60"

instead of "x60". And you're not specfying a color depth on kernel command. Add something like
Code:
video=vesafb:ywrap,mtrr,1024x768-32@60

This should override the error in kernel config too (it it's not a typo).

Hope it may help.


With this exact setup I get:

Code:
no 8 bpp verbose picture specified in the theme config
failed to get verbose splash image
intelfb: Cannot reserve FB region


and after that: The standard black gentoo boot process @1024x768
_________________
Linus Torvalds: "Really, I'm not out to destroy Microsoft. That will just be a completely unintentional side effect."
Back to top
View user's profile Send private message
dgaffuri
Advocate
Advocate


Joined: 05 Jun 2005
Posts: 2078
Location: Italy

PostPosted: Sat Dec 31, 2005 6:02 pm    Post subject: Reply with quote

You're using intelfb, not vesa. Try to disable both the Intel FB options in kernel config (i810 is not needed anyway), and leave only VESA around, or set
Code:
video=intelfb:1024x768-32@60

in kernel command line.

I suppose you've already looked here.
_________________
Adopt an unanswered post
If you feel that your problem has been solved please edit the top post and add [solved] to the subject
Back to top
View user's profile Send private message
/carlito
Guru
Guru


Joined: 31 Dec 2004
Posts: 451
Location: Belgium

PostPosted: Sun Jan 01, 2006 3:27 am    Post subject: Reply with quote

dgaffuri wrote:
I suppose you've already looked here.


Tnx for the link! Finally i can use the 2005.1 live cd theme on my box!
_________________

.O.
..O
OOO
Back to top
View user's profile Send private message
meranto
Tux's lil' helper
Tux's lil' helper


Joined: 23 Sep 2005
Posts: 129
Location: Ridderkerk, The Netherlands

PostPosted: Sun Jan 01, 2006 11:22 am    Post subject: Reply with quote

dgaffuri wrote:
You're using intelfb, not vesa. Try to disable both the Intel FB options in kernel config (i810 is not needed anyway), and leave only VESA around, or set
Code:
video=intelfb:1024x768-32@60

in kernel command line.

I suppose you've already looked here.


I indeed looked there, I rebuilt my kernel with only vesafb and with
Code:
video=intelfb:1024x768-32@60
in kernel command line, but still I get the 8 bpp error message.

What I did:

Give up on the livecd-2005.1 theme and switched to the emergence theme, did a
Code:
genkernel --gensplash=emergence --gensplash-res=1024x768 all


and now it works, so the problem must be in the livecd-2005.1 theme, strangely :?

Well, thanks for the input
_________________
Linus Torvalds: "Really, I'm not out to destroy Microsoft. That will just be a completely unintentional side effect."
Back to top
View user's profile Send private message
/carlito
Guru
Guru


Joined: 31 Dec 2004
Posts: 451
Location: Belgium

PostPosted: Sun Jan 01, 2006 11:49 am    Post subject: Reply with quote

You should build your kernel with
Code:
vesafb_tng 1024x768-32@60

Next you should configure grub.conf as followed
Code:
 root (hd0,4)
kernel /kernel-2.6.14-r2 ro root=/dev/hda7 video=vesafb:1280x1024-32@75 quiet splash=silent,fadein,theme:livecd-2005.1 CONSOLE=/dev/tty1
initrd /boot/fbsplash-livecd-1280x1024


That should do the trick, but make sure you set the in-kernel option right! I also had troubles with the live-cd theme untill i added the color depth in the kernel.

Regards
_________________

.O.
..O
OOO
Back to top
View user's profile Send private message
meranto
Tux's lil' helper
Tux's lil' helper


Joined: 23 Sep 2005
Posts: 129
Location: Ridderkerk, The Netherlands

PostPosted: Mon Jan 02, 2006 9:42 am    Post subject: Reply with quote

/carlito wrote:
You should build your kernel with
Code:
vesafb_tng 1024x768-32@60

Next you should configure grub.conf as followed
Code:
 root (hd0,4)
kernel /kernel-2.6.14-r2 ro root=/dev/hda7 video=vesafb:1280x1024-32@75 quiet splash=silent,fadein,theme:livecd-2005.1 CONSOLE=/dev/tty1
initrd /boot/fbsplash-livecd-1280x1024


That should do the trick, but make sure you set the in-kernel option right! I also had troubles with the live-cd theme untill i added the color depth in the kernel.

Regards


I tried all of that exactly, but it didn't work and I don't understand why. That's why I switched to the emergence theme, which works without a hitch with the exact same settings and parameters.
_________________
Linus Torvalds: "Really, I'm not out to destroy Microsoft. That will just be a completely unintentional side effect."
Back to top
View user's profile Send private message
meranto
Tux's lil' helper
Tux's lil' helper


Joined: 23 Sep 2005
Posts: 129
Location: Ridderkerk, The Netherlands

PostPosted: Fri Jan 13, 2006 8:58 am    Post subject: Reply with quote

I found the cause of the problem, I posted it in another topic with other people having the same problems on the same laptop + graphics:

https://forums.gentoo.org/viewtopic-p-3027497.html#3027497
_________________
Linus Torvalds: "Really, I'm not out to destroy Microsoft. That will just be a completely unintentional side effect."
Back to top
View user's profile Send private message
Display posts from previous:   
Reply to topic    Gentoo Forums Forum Index Other Things Gentoo All times are GMT
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum