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

Improve, fixes, big changes, 2 scripts less, one new system.sh, GUI config in live tha work with latest cookutils packages, well tested on Qemu, frugal, first HD install boot
author Christophe Lincoln <pankso@slitaz.org>
date Mon May 16 00:32:16 2011 +0200 (2011-05-16)
parents 49f03c9f0fd8
children 175315b7699d
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
pankso@262 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.
pankso@262 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:
pankso@262 41 # bootopts.sh (boot options) must start first, system.sh after network.sh
pankso@262 42 # (tazx needs an active connection to install Xorg), then you are free
pankso@262 43 # to choose. Note that the local.sh script exists to let you quickly add
pankso@262 44 # some local startup commands.
pankso@262 45 RUN_SCRIPTS="bootopts.sh network.sh system.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@262 50 RUN_DAEMONS="dbus hald slim firewall httpd"
pankso@3 51
pankso@3 52 # Pre login bold message.
pankso@3 53 MESSAGE="Welcome to your box."