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

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