Re: Can't get splash scr working - arg

2003-07-14 Thread Supote Leelasupphakorn
 --- Kevin Berrien [EMAIL PROTECTED] wrote:  4.8 has the following
 
 /boot/loader.conf
 /boot/defaults/loader.conf
 
 I edited both, and configured both individually.. with no success.
 
 :::sample from /boot/loader.conf
 
 userconfig_script_load=YES
 splash_bmp_load=YES
 bitmap_load=YES
 bitmap_name=splash.bmp
 
 :::sample from /boot/defaults/loader.conf
 
 loader_conf_files=/boot/device.hints /boot/loader.conf 
 /boot/loader.conf.local /boot/nextboot.conf
 
 verbose_loading=NO# Set to YES for verbose loader output
 
 
 ##
 ###  Splash screen configuration  
 ##
 
 splash_bmp_load=YES# Set this to YES for bmp splash screen!
 splash_pcx_load=NO# Set this to YES for pcx splash screen!
 vesa_load=NO# Set this to YES to load the vesa module
 bitmap_load=YES# Set this to YES if you want splash
 bitmap_name=/boot/splash.bmp# Set this to the name of the bmp or pcx
 file
 bitmap_type=splash_image_data
 
 Like I said, tried every combination, the stuff off that well know 
 splash website (refers to 3.2) and some of the oddities with 5.0 
 (placement of bitmap file).
 
 Anyone have any suggestion?  Install is stock 4.8-Stable except for a 
 slimmed down kernel I compiled.  I'm not aware of any kernel option 
 related to the slash.  Also, is there a way I can get a verbose logging 
 of the boot process so I can track this down.  Not that it's a big deal, 
 but when I dig into a new OS like this, if I can't do it - I make my 
 self succeed in order to learn the os better, or toss it aside as 
 non-mature.
 

  According to the comment in file /boot/defaults/loader.conf, the file 
/boot/defaults/loader.conf must be untouched but edit whatever you want in
/boot/loader.conf instead.

  I recommend you should restore the original version of
/boot/defaults/loader.conf first, append vesa_load=YES line in 
your /boot/loader.conf and use only 320*200 size of images (according to 'man 
splash') such as

-- /boot/loader.conf

userconfig_script_load=YES
vesa_load=YES
splash_bmp_load=YES
bitmap_load=YES
bitmap_name=your_splash_file_with_full_path

After done, it must be work for you.
Cheer,
  




Want to chat instantly with your online friends?  Get the FREE Yahoo!
Messenger http://uk.messenger.yahoo.com/
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Can't get splash scr working - arg

2003-07-14 Thread Kevin Berrien
Excellent,

Either the defaults file or adding the vesa_load did the trick.  Trouble 
is, kernel boots so fast I get like 3 seconds on the screen ha!.  Was 
more a desire to get working what I could not, than anything else.  Thanks!

Supote Leelasupphakorn wrote:

 According to the comment in file /boot/defaults/loader.conf, the file 
/boot/defaults/loader.conf must be untouched but edit whatever you want in
/boot/loader.conf instead.

 I recommend you should restore the original version of
/boot/defaults/loader.conf first, append vesa_load=YES line in 
your /boot/loader.conf and use only 320*200 size of images (according to 'man 
splash') such as

-- /boot/loader.conf

userconfig_script_load=YES
vesa_load=YES
splash_bmp_load=YES
bitmap_load=YES
bitmap_name=your_splash_file_with_full_path
After done, it must be work for you.
Cheer,
 

___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Can't get splash scr working - arg

2003-07-13 Thread Kevin Berrien
4.8 has the following

/boot/loader.conf
/boot/defaults/loader.conf
I edited both, and configured both individually.. with no success.

:::sample from /boot/loader.conf

userconfig_script_load=YES
splash_bmp_load=YES
bitmap_load=YES
bitmap_name=splash.bmp
:::sample from /boot/defaults/loader.conf

loader_conf_files=/boot/device.hints /boot/loader.conf 
/boot/loader.conf.local /boot/nextboot.conf

verbose_loading=NO# Set to YES for verbose loader output

##
###  Splash screen configuration  
##
splash_bmp_load=YES# Set this to YES for bmp splash screen!
splash_pcx_load=NO# Set this to YES for pcx splash screen!
vesa_load=NO# Set this to YES to load the vesa module
bitmap_load=YES# Set this to YES if you want splash
bitmap_name=/boot/splash.bmp# Set this to the name of the bmp or pcx
file
bitmap_type=splash_image_data
Like I said, tried every combination, the stuff off that well know 
splash website (refers to 3.2) and some of the oddities with 5.0 
(placement of bitmap file).

Anyone have any suggestion?  Install is stock 4.8-Stable except for a 
slimmed down kernel I compiled.  I'm not aware of any kernel option 
related to the slash.  Also, is there a way I can get a verbose logging 
of the boot process so I can track this down.  Not that it's a big deal, 
but when I dig into a new OS like this, if I can't do it - I make my 
self succeed in order to learn the os better, or toss it aside as 
non-mature.



Supote Leelasupphakorn wrote:

Hi,

  Have you edited /boot/loader.conf (see loader.conf(5))
and include the following lines:
  splash_bmp_load=YES
  bitmap_load=YES
  bitmap_name=mysplash.bmp
for more information refer to 'man splash'

GoodLuck,
 



___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Can't get splash scr working - arg

2003-07-10 Thread Supote Leelasupphakorn
In-Reply-To: [EMAIL PROTECTED]
References:  [EMAIL PROTECTED]

Hi,

   Have you edited /boot/loader.conf (see loader.conf(5))
and include the following lines:

   splash_bmp_load=YES
   bitmap_load=YES
   bitmap_name=mysplash.bmp

for more information refer to 'man splash'

GoodLuck, 



Want to chat instantly with your online friends?  Get the FREE Yahoo!
Messenger http://uk.messenger.yahoo.com/
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Can't get splash scr working - arg

2003-07-09 Thread Kevin Berrien
As I've been playing with FreeBSD 4.8 stable on a test box, I came 
across the splash screen feature after building my own kernel.  Figured 
I'd give it a try for the heck of it.

Anyways, I've had no success!  I've followed the various (not always 
identical) tutorials on www.baldwin.cx/splash/, free-bsd.org  the 
manual page.  Other than my kernel my install is stock 4.8.  I'm I 
missing something obvious?  Anyone know if a better tutorial?

Thanks!

___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Can't get splash scr working - arg

2003-07-09 Thread Siegbert Baude
Hi Kevin,

As I've been playing with FreeBSD 4.8 stable on a test box, I came 
across the splash screen feature after building my own kernel.  Figured 
I'd give it a try for the heck of it.

Anyways, I've had no success!  I've followed the various (not always 
identical) tutorials on www.baldwin.cx/splash/, free-bsd.org  the 
manual page.  Other than my kernel my install is stock 4.8.  I'm I 
missing something obvious?  Anyone know if a better tutorial?
I just fiddled myself with the splash screen, but in CURRENT, so I don't 
know, if what I say is correct for STABLE, too.

First, what is the resolution and color depth of your image? Just type

file your_image.bmp

to get this info. If it is more than 320 pixels broad you need the 
VESA-mode preloaded into the kernel to make it work. Thus your graphics 
card must support this VESA modes in its BIOS, without the use of any 
DOS TSR programs, as this was the case for many older cards. Check the 
documentation for your card.

The problem in CURRENT is, that the image is looked for in the path for 
the kernel modules, i.e. /boot/kernel;/boot/modules. If the image is 
located outside these directories you have to use absolute paths.

Check http://www.freebsd.org/cgi/query-pr.cgi?pr=docs/54009 for this.

If this doesn't work, please send as the output of the relevant dmesg 
lines, i.e. the beginning, where the kernel modules are preloaded and 
some message about the splash module should appear.

Ciao
Siegbert
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Can't get splash scr working - arg

2003-07-09 Thread Kevin Berrien
No luck with the link, or placing the splash file in the other dirs. I 
did find my splash was a bit off on the res, but using a 320x200x8 
replacement, and playing around a bit didn't help. I get no flicker or 
anything that would indicate it's even suggesting of trying a graphics mode.

As for dmesg, I get no messages regarding the splash modules or 
anything. This is using dmesg , or w/ -a as I'm familiar with it.

If this doesn't work, please send as the output of the relevant dmesg 
lines, i.e. the beginning, where the kernel modules are preloaded and 
some message about the splash module should appear.

Ciao
Siegbert


___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]