* Correct splash screen generation for sarge and etch, making sure the
correct background colour (black) is selected.
This commit is contained in:
parent
94fe3e1b4d
commit
758e9dc0bb
|
@ -119,6 +119,8 @@ debian-cd (2.2.25) UNRELEASED; urgency=low
|
|||
[ Petter Reinholdtsen ]
|
||||
* Add more features to get_diskusage.pl, making it easier to track
|
||||
dependencies and rejected packages.
|
||||
* Correct splash screen generation for sarge and etch, making sure the
|
||||
correct background colour (black) is selected.
|
||||
|
||||
[ Steve McIntyre ]
|
||||
* Try to fix the "unofficial development version" bug on official CDs.
|
||||
|
|
|
@ -181,11 +181,11 @@ if [ "$NN" = "1" ]; then
|
|||
rm -f boot$N/isolinux/isolinux.cfg.with* 2>/dev/null || true
|
||||
|
||||
if [ "$SPLASHPNG" ] ; then
|
||||
# Insert our own splash screen. Color index 15 is
|
||||
# Insert our own splash screen. Color index 0 is
|
||||
# background, and index 7 is foreground. Set to black and
|
||||
# white respecively
|
||||
pngtopnm < $SPLASHPNG | ppmquant 16 | \
|
||||
ppmtolss16 "#ffffff=7" "#000000=15" > boot$N/isolinux/splash.rle
|
||||
ppmtolss16 "#ffffff=7" "#000000=0" > boot$N/isolinux/splash.rle
|
||||
fi
|
||||
|
||||
if [ -n "$KERNEL_PARAMS" ]; then
|
||||
|
|
|
@ -215,11 +215,11 @@ if [ "$NN" = "1" ]; then
|
|||
fi
|
||||
|
||||
if [ "$SPLASHPNG" ] ; then
|
||||
# Insert our own splash screen. Color index 15 is
|
||||
# Insert our own splash screen. Color index 0 is
|
||||
# background, and index 7 is foreground. Set to black and
|
||||
# white respecively
|
||||
pngtopnm < $SPLASHPNG | ppmquant 16 | \
|
||||
ppmtolss16 "#ffffff=7" "#000000=15" > boot$N/isolinux/splash.rle
|
||||
ppmtolss16 "#ffffff=7" "#000000=0" > boot$N/isolinux/splash.rle
|
||||
fi
|
||||
fi
|
||||
|
||||
|
|
Loading…
Reference in New Issue