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

Added tag 2.8.2 for changeset 26a4000b82dd
author Christophe Lincoln <pankso@slitaz.org>
date Thu Apr 16 17:35:23 2009 +0200 (2009-04-16)
parents 47f8dc9dff6e
children ae0a8f86229a
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
pankso@3 5 # Start Kernel log daemons (syslogd and klogd).
pankso@3 6 KERNEL_LOG_DAEMONS="yes"
pankso@3 7 SYSLOGD_ROTATED_SIZE="60"
pankso@3 8
pankso@3 9 # Use udev to populate /dev and handles hotplug events.
pankso@3 10 UDEV="yes"
pankso@3 11
pankso@3 12 # Clean up the system removing all tmp and pid files.
pankso@3 13 CLEAN_UP_SYSTEM="yes"
pankso@3 14
MikeDSmith25@107 15 # Filesystems to check integrity of at boot time. You should check the
pankso@83 16 # rootfs (where SliTaz is installed) and all partitions listed in
MikeDSmith25@107 17 # /etc/fstab. Example : CHECK_FS="/dev/hda5 /dev/hdb1"
pankso@3 18 CHECK_FS=""
pankso@3 19
MikeDSmith25@107 20 # Kernel modules to automatically load at boot time. You can use 'modprobe -l'
MikeDSmith25@107 21 # to get a list of all kernel modules available.
pankso@3 22 #
MikeDSmith25@107 23 # For Intel and some Nvidia sound cards : snd_intel8x0 snd_intel8x0m snd_hda_intel
pankso@3 24 #
pankso@11 25 LOAD_MODULES="vfat nls_utf8 ohci_hcd"
pankso@3 26
MikeDSmith25@107 27 # Initialization scripts to run at boot time. Boot order is important,
MikeDSmith25@107 28 # bootopts.sh (boot options) must start first, then you are free to choose.
MikeDSmith25@107 29 # Note that the local.sh script exists to let you quickly add some local startup
pankso@3 30 # commands.
pankso@151 31 RUN_SCRIPTS="bootopts.sh i18n.sh hwconf.sh network.sh local.sh"
pankso@3 32
MikeDSmith25@107 33 # Daemons to start at boot time. SliTaz only provides a few daemons: firewall,
pankso@3 34 # Web server (lighttpd), SSH server (dropbear) and rsyncd, so boot order is
paul@146 35 # not really important, but dbus/hald should be started before slim.
pankso@129 36 RUN_DAEMONS="dbus hald firewall lighttpd slim"
pankso@3 37
pankso@3 38 # Pre login bold message.
pankso@3 39 MESSAGE="Welcome to your box."
pankso@3 40