flavors-stable annotate devel/rootfs/etc/rcS.conf @ rev 135

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