wok-current annotate slitaz-boot-scripts/receipt @ rev 11620
Up slitaz-boot-scripts (4.6)
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Tue Jan 24 11:48:19 2012 +0100 (2012-01-24) |
parents | 5f09804913b2 |
children | 0521bd35c5db |
rev | line source |
---|---|
pankso@16 | 1 # SliTaz package receipt. |
pankso@16 | 2 |
pankso@16 | 3 PACKAGE="slitaz-boot-scripts" |
pascal@11620 | 4 VERSION="4.6" |
pankso@178 | 5 CATEGORY="base-system" |
pankso@16 | 6 SHORT_DESC="Provide all the initialisation scripts used at boot time." |
pankso@16 | 7 MAINTAINER="pankso@slitaz.org" |
gokhlayeh@8012 | 8 TARBALL="$PACKAGE-$VERSION.tar.gz" |
pankso@16 | 9 WEB_SITE="http://www.slitaz.org/" |
gokhlayeh@8012 | 10 WGET_URL="http://mirror.slitaz.org/sources/boot-scripts/$TARBALL" |
pascal@1269 | 11 CONFIG_FILES="/etc/inittab /etc/init.d/local.sh /etc/rcS.conf /etc/network.conf" |
pankso@16 | 12 |
pankso@16 | 13 # Rules to gen a SliTaz package suitable for Tazpkg. |
pankso@16 | 14 # |
pankso@16 | 15 # This package is all build by genpkg, it provide the boot scripts found |
pankso@16 | 16 # in /etc/init.d with the main config file : /etc/rcS.conf. It provide also |
pankso@16 | 17 # the default inittab and the network config file used with network.sh |
pankso@16 | 18 # |
pankso@16 | 19 genpkg_rules() |
pankso@16 | 20 { |
pankso@9874 | 21 mkdir -p $fs/usr/share $fs/etc/X11 |
pankso@16 | 22 cp -a $src/etc $fs |
pankso@9875 | 23 cp -a $src/bin $fs |
pascal@11620 | 24 cp -a $src/init $fs |
pankso@396 | 25 cp -a $src/applications $fs/usr/share |
pankso@806 | 26 |
pankso@16 | 27 # Perms |
pankso@2787 | 28 chown -R root.root $fs |
pankso@16 | 29 chmod 755 $fs/etc/init.d/*.sh |
pankso@16 | 30 chmod 755 $fs/etc/init.d/rc* |
pascal@11620 | 31 chmod 755 $fs/init |
pankso@16 | 32 } |
pankso@16 | 33 |
pankso@265 | 34 # Pre install commands. |
pankso@16 | 35 # |
pankso@16 | 36 pre_install() |
pankso@16 | 37 { |
pankso@16 | 38 local root |
pankso@16 | 39 root=$1 |
pankso@806 | 40 |
pankso@16 | 41 # Backup file to restore with post install |
pankso@52 | 42 echo "Creating backups of configs..." |
pankso@52 | 43 cp $root/etc/rcS.conf $root/etc/rcS.conf.bak 2>/dev/null |
pankso@52 | 44 cp $root/etc/network.conf $root/etc/network.conf.bak 2>/dev/null |
pankso@52 | 45 cp $root/etc/inittab $root/etc/inittab.bak 2>/dev/null |
pankso@52 | 46 cp $root/etc/init.d/local.sh $root/etc/init.d/local.sh.bak 2>/dev/null |
pankso@16 | 47 } |
pankso@16 | 48 |
pankso@16 | 49 post_install() |
pankso@16 | 50 { |
pankso@16 | 51 local root |
pankso@16 | 52 root=$1 |
pankso@52 | 53 echo "Restoring configs backups..." |
pankso@52 | 54 mv -f $root/etc/rcS.conf.bak $root/etc/rcS.conf 2>/dev/null |
pankso@52 | 55 mv -f $root/etc/network.conf.bak $root/etc/network.conf 2>/dev/null |
pankso@52 | 56 mv -f $root/etc/inittab.bak $root/etc/inittab 2>/dev/null |
pankso@52 | 57 mv -f $root/etc/init.d/local.sh.bak $root/etc/init.d/local.sh 2>/dev/null |
pankso@806 | 58 |
pankso@2787 | 59 # Fast boot X config from 3.0 |
pankso@2787 | 60 if ! grep -q ^FAST_BOOT_X $root/etc/rcS.conf; then |
pankso@2787 | 61 cat >> $root/etc/rcS.conf << "EOT" |
pankso@4018 | 62 # Fast boot into X by setting the system keymap-locale and starting |
pankso@2787 | 63 # the Slim login manager earlier at boot time. If fast X is enabled |
pankso@2787 | 64 # then dbus, hald and slim can be removed from RUN_DAEMONS. |
pankso@2787 | 65 FAST_BOOT_X="no" |
pankso@609 | 66 |
pankso@609 | 67 EOT |
pascal@2792 | 68 fi |
pankso@10717 | 69 # Fbsplash gui boot |
pankso@10717 | 70 if ! grep -q ^FBSPLASH $root/etc/rcS.conf; then |
pankso@10717 | 71 cat >> $root/etc/rcS.conf << "EOT" |
pankso@10717 | 72 # Graphical boot with fbsplash (To easily configure use: tazfbsplash) |
pankso@10717 | 73 FBSPLASH="no" |
pankso@10717 | 74 FBSPLASH_THEME="slitaz" |
pankso@10717 | 75 |
pankso@10717 | 76 EOT |
pankso@10717 | 77 fi |
pankso@10717 | 78 |
pankso@10717 | 79 # No more hwconf.sh and i18n.sh --> system.sh |
pankso@10717 | 80 sed -i s'/hwconf.sh/system.sh/' $root/etc/rcS.conf |
pankso@10717 | 81 sed -i s'/i18n.sh//' $root/etc/rcS.conf |
pankso@10717 | 82 |
pankso@2791 | 83 # Remove old desktop file |
pankso@2791 | 84 rm -f /usr/share/applications/boot-log.desktop |
pankso@16 | 85 } |