flavors-stable diff 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
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/devel/rootfs/etc/rcS.conf	Thu Feb 23 08:01:02 2012 +0100
     1.3 @@ -0,0 +1,53 @@
     1.4 +# /etc/rcS.conf - Initial boot script configuration for SliTaz GNU/Linux.
     1.5 +# Config file used by /etc/init.d/rcS
     1.6 +#
     1.7 +
     1.8 +# Use udev to populate /dev and handle hotplug events.
     1.9 +UDEV="yes"
    1.10 +
    1.11 +# Clean up the system removing all tmp and pid files.
    1.12 +CLEAN_UP_SYSTEM="yes"
    1.13 +
    1.14 +# Filesystems to check integrity of at boot time. You should check the
    1.15 +# rootfs (where SliTaz is installed) and all partitions listed in
    1.16 +# /etc/fstab. Example: CHECK_FS="/dev/hda5 /dev/hdb1"
    1.17 +CHECK_FS=""
    1.18 +
    1.19 +# Fast boot into X by setting the system keymap-locale and starting
    1.20 +# the Slim login manager earlier at boot time. If fast X is enabled
    1.21 +# then dbus, hald and slim can be removed from RUN_DAEMONS.
    1.22 +FAST_BOOT_X="no"
    1.23 +
    1.24 +# Graphical boot with fbsplash (To easily configure use: tazfbsplash)
    1.25 +FBSPLASH="no"
    1.26 +FBSPLASH_THEME="slitaz"
    1.27 +
    1.28 +# Start Kernel log daemons (syslogd and klogd).
    1.29 +KERNEL_LOG_DAEMONS="yes"
    1.30 +SYSLOGD_ROTATED_SIZE="60"
    1.31 +
    1.32 +# Kernel modules to automatically load at boot time if not automatically
    1.33 +# detected. You can use 'modprobe -l' to get a list of all kernel modules
    1.34 +# available.
    1.35 +LOAD_MODULES=""
    1.36 +
    1.37 +# Automatically recharge packages list on each boot and in background.
    1.38 +# If new packages or upgrades are available they will be notified with
    1.39 +# tazpkg-notify. Here we just recharge list, we don't install anything
    1.40 +# since root user should visually check packages that will be upgraded.
    1.41 +RECHARGE_PACKAGES_LIST="no"
    1.42 +
    1.43 +# Initialization scripts to run at boot time. Boot order is important:
    1.44 +# bootopts.sh (boot options) must start first, system.sh after network.sh
    1.45 +# (tazx needs an active connection to install Xorg), then you are free 
    1.46 +# to choose. Note that the local.sh script exists to let you quickly add
    1.47 +# some local startup commands.
    1.48 +RUN_SCRIPTS="bootopts.sh network.sh system.sh local.sh"
    1.49 +
    1.50 +# Daemons to start at boot time. SliTaz only provides a few daemons: firewall,
    1.51 +# Web server (httpd), SSH server (dropbear) and rsyncd, so boot order is
    1.52 +# not really important, but dbus/hald should be started before slim.
    1.53 +RUN_DAEMONS="dbus hald slim firewall lighttpd"
    1.54 +
    1.55 +# Pre login bold message.
    1.56 +MESSAGE="Welcome to your box."