slitaz-boot-scripts annotate etc/rcS.conf @ rev 257

rcS: small fix to have tazbox on the correct display
author Christophe Lincoln <pankso@slitaz.org>
date Fri Apr 29 18:24:31 2011 +0200 (2011-04-29)
parents a14abff6be90
children a0f7424e5486
rev   line source
pankso@3 1 # /etc/rcS.conf - Initial boot script configuration for SliTaz GNU/Linux.
pankso@3 2 # Config file used by /etc/init.d/rcS
pankso@3 3 #
pankso@3 4
paul@181 5 # Use udev to populate /dev and handle hotplug events.
pankso@3 6 UDEV="yes"
pankso@3 7
pankso@3 8 # Clean up the system removing all tmp and pid files.
pankso@3 9 CLEAN_UP_SYSTEM="yes"
pankso@3 10
MikeDSmith25@107 11 # Filesystems to check integrity of at boot time. You should check the
pankso@83 12 # rootfs (where SliTaz is installed) and all partitions listed in
paul@218 13 # /etc/fstab. Example: CHECK_FS="/dev/hda5 /dev/hdb1"
pankso@3 14 CHECK_FS=""
pankso@3 15
gokhlayeh@241 16 # Fast boot into X by setting the system keymap-locale and starting
pankso@157 17 # the Slim login manager earlier at boot time. If fast X is enabled
pankso@157 18 # then dbus, hald and slim can be removed from RUN_DAEMONS.
pankso@157 19 FAST_BOOT_X="no"
pankso@157 20
paul@253 21 # Graphical boot with fbsplash (To easily configure use: tazfbsplash).
pankso@234 22 FBSPLASH="no"
pankso@234 23 FBSPLASH_THEME="slitaz"
pankso@234 24
pankso@157 25 # Start Kernel log daemons (syslogd and klogd).
pankso@157 26 KERNEL_LOG_DAEMONS="yes"
pankso@157 27 SYSLOGD_ROTATED_SIZE="60"
pankso@157 28
paul@253 29 # Kernel modules to automatically load at boot time if not automatically
pankso@252 30 # detected. You can use 'modprobe -l' to get a list of all kernel modules
pankso@252 31 # available.
jozee@175 32 LOAD_MODULES=" "
pankso@3 33
paul@253 34 # Automatically recharge packages list on each boot and in background.
paul@253 35 # If new packages or upgrades are available they will be notified with
paul@253 36 # tazpkg-notify. Here we just recharge list, we don't install anything
paul@253 37 # since root user should visually check packages that will be upgraded.
pankso@252 38 RECHARGE_PACKAGES_LIST="no"
pankso@252 39
paul@218 40 # Initialization scripts to run at boot time. Boot order is important:
paul@218 41 # bootopts.sh (boot options) must start first, hwconf.sh after network.sh (tazx
paul@181 42 # needs an active connection to install Xorg), then you are free to choose.
MikeDSmith25@107 43 # Note that the local.sh script exists to let you quickly add some local startup
pankso@3 44 # commands.
pankso@255 45 RUN_SCRIPTS="bootopts.sh network.sh hwconf.sh local.sh"
pankso@3 46
MikeDSmith25@107 47 # Daemons to start at boot time. SliTaz only provides a few daemons: firewall,
pankso@3 48 # Web server (lighttpd), SSH server (dropbear) and rsyncd, so boot order is
paul@146 49 # not really important, but dbus/hald should be started before slim.
pankso@255 50 RUN_DAEMONS="firewall tazpanel"
pankso@3 51
pankso@3 52 # Pre login bold message.
pankso@3 53 MESSAGE="Welcome to your box."