# HG changeset patch # User Christophe Lincoln # Date 1306617793 -7200 # Node ID 18381cd16c4764da97fecb9abea3cdd61b952cff # Parent c2ca4949f52ff73d90ac9aa7d9c53baf5180a9a3 Up: slitaz-boot-scripts (4.4) - WARNING: no more hwconf.sh and i18n.sh so we sed in rcS.conf to change that or next boot boot get lots of problem diff -r c2ca4949f52f -r 18381cd16c47 slitaz-boot-scripts/receipt --- a/slitaz-boot-scripts/receipt Sat May 28 21:32:41 2011 +0200 +++ b/slitaz-boot-scripts/receipt Sat May 28 23:23:13 2011 +0200 @@ -1,7 +1,7 @@ # SliTaz package receipt. PACKAGE="slitaz-boot-scripts" -VERSION="4.3" +VERSION="4.4" CATEGORY="base-system" SHORT_DESC="Provide all the initialisation scripts used at boot time." MAINTAINER="pankso@slitaz.org" @@ -64,6 +64,20 @@ EOT fi + # Fbsplash gui boot + if ! grep -q ^FBSPLASH $root/etc/rcS.conf; then + cat >> $root/etc/rcS.conf << "EOT" +# Graphical boot with fbsplash (To easily configure use: tazfbsplash) +FBSPLASH="no" +FBSPLASH_THEME="slitaz" + +EOT + fi + + # No more hwconf.sh and i18n.sh --> system.sh + sed -i s'/hwconf.sh/system.sh/' $root/etc/rcS.conf + sed -i s'/i18n.sh//' $root/etc/rcS.conf + # Remove old desktop file rm -f /usr/share/applications/boot-log.desktop }