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

Improve and tidy scripts, start tazhw from rcS and start network.sh earlier
author Christophe Lincoln <pankso@slitaz.org>
date Tue Apr 21 01:46:21 2009 +0200 (2009-04-21)
parents 26a4000b82dd
children 3ff9c5179331
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,
pankso@153 28 # bootopts.sh (boot options) must start first, hwconf after network (tazx
pankso@153 29 # need an active connexion to install Xorg) then you are free to choose.
MikeDSmith25@107 30 # Note that the local.sh script exists to let you quickly add some local startup
pankso@3 31 # commands.
pankso@153 32 RUN_SCRIPTS="bootopts.sh i18n.sh network.sh hwconf.sh local.sh"
pankso@3 33
MikeDSmith25@107 34 # Daemons to start at boot time. SliTaz only provides a few daemons: firewall,
pankso@3 35 # Web server (lighttpd), SSH server (dropbear) and rsyncd, so boot order is
paul@146 36 # not really important, but dbus/hald should be started before slim.
pankso@129 37 RUN_DAEMONS="dbus hald firewall lighttpd slim"
pankso@3 38
pankso@3 39 # Pre login bold message.
pankso@3 40 MESSAGE="Welcome to your box."
pankso@3 41