slitaz-boot-scripts diff etc/rcS.conf @ rev 3

Add rcS.conf and /etc/init.d/README
author Christophe Lincoln <pankso@slitaz.org>
date Fri Nov 30 12:27:08 2007 +0100 (2007-11-30)
parents
children a5e2677812ab
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/etc/rcS.conf	Fri Nov 30 12:27:08 2007 +0100
     1.3 @@ -0,0 +1,40 @@
     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 +# Start Kernel log daemons (syslogd and klogd).
     1.9 +KERNEL_LOG_DAEMONS="yes"
    1.10 +SYSLOGD_ROTATED_SIZE="60"
    1.11 +
    1.12 +# Use udev to populate /dev and handles hotplug events.
    1.13 +UDEV="yes"
    1.14 +
    1.15 +# Clean up the system removing all tmp and pid files.
    1.16 +CLEAN_UP_SYSTEM="yes"
    1.17 +
    1.18 +# Filesystems to check integrity on boot time. You should check the 
    1.19 +# rootfs (where SliTaz is installed) and all partitions listed in 
    1.20 +# /etc/fstab. Exemple : CHECK_FS="/dev/hda5 /dev/hdb1"
    1.21 +CHECK_FS=""
    1.22 +
    1.23 +# Kernel modules to automaticly load at boot time. You can use 'modprobe -l'
    1.24 +# to get a list of all kernel modules avalaible.
    1.25 +#
    1.26 +# Fot Intel and some Nvidia sound cards : snd_intel8x0 snd_intel8x0m snd_hda_intel
    1.27 +#
    1.28 +LOAD_MODULES="vfat nls_utf8 ohci_hcd snd"
    1.29 +
    1.30 +# Initialisation scripts to run at boot time. Boot order is important,
    1.31 +# bootopts.sh (boot options) must start first, then you free to choose. Note
    1.32 +# that the local.sh script exist to let you quick add some local startup
    1.33 +# commands.
    1.34 +RUN_SCRIPTS="bootopts.sh network.sh i18n.sh local.sh"
    1.35 +
    1.36 +# Daemons to start at boot time. SliTaz provide only a few daemons, firewall,
    1.37 +# Web server (lighttpd), SSH server (dropbear) and rsyncd, so boot order is
    1.38 +# not realy important.
    1.39 +RUN_DAEMONS="firewall lighttpd"
    1.40 +
    1.41 +# Pre login bold message.
    1.42 +MESSAGE="Welcome to your box."
    1.43 +