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

Move bootlog script to bin/
author Christophe Lincoln <pankso@slitaz.org>
date Wed Apr 06 05:00:51 2011 +0200 (2011-04-06)
parents 68435a9c0843
children 1ebe324e953a
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@234 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
pankso@252 29 # Kernel modules to automatically load at boot time if not automaticaly
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
pankso@252 34 # Automaticaly recharge packages list on each boot and in background.
pankso@252 35 # If new packages or upgrade are avalaible they will be notified with
pankso@252 36 # tazpkg-notify. Here we just recharge list, we dont install anything
pankso@252 37 # since root user should check visualy 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@157 45 RUN_SCRIPTS="bootopts.sh network.sh i18n.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@157 50 RUN_DAEMONS="dbus hald firewall slim"
pankso@3 51
pankso@3 52 # Pre login bold message.
pankso@3 53 MESSAGE="Welcome to your box."