slitaz-boot-scripts view etc/rcS.conf @ rev 130

rcS.conf: fix typo
author Christophe Lincoln <pankso@slitaz.org>
date Sun Feb 01 17:55:10 2009 +0100 (2009-02-01)
parents ce66cb8ab894
children 5d620cd96aee
line source
1 # /etc/rcS.conf - Initial boot script configuration for SliTaz GNU/Linux.
2 # Config file used by /etc/init.d/rcS
3 #
5 # Start Kernel log daemons (syslogd and klogd).
6 KERNEL_LOG_DAEMONS="yes"
7 SYSLOGD_ROTATED_SIZE="60"
9 # Use udev to populate /dev and handles hotplug events.
10 UDEV="yes"
12 # Clean up the system removing all tmp and pid files.
13 CLEAN_UP_SYSTEM="yes"
15 # Filesystems to check integrity of at boot time. You should check the
16 # rootfs (where SliTaz is installed) and all partitions listed in
17 # /etc/fstab. Example : CHECK_FS="/dev/hda5 /dev/hdb1"
18 CHECK_FS=""
20 # Kernel modules to automatically load at boot time. You can use 'modprobe -l'
21 # to get a list of all kernel modules available.
22 #
23 # For Intel and some Nvidia sound cards : snd_intel8x0 snd_intel8x0m snd_hda_intel
24 #
25 LOAD_MODULES="vfat nls_utf8 ohci_hcd"
27 # Kernel modules that we never want to load.
28 BLACKLIST_MODULES=""
30 # Initialization scripts to run at boot time. Boot order is important,
31 # bootopts.sh (boot options) must start first, then you are free to choose.
32 # Note that the local.sh script exists to let you quickly add some local startup
33 # commands.
34 RUN_SCRIPTS="bootopts.sh network.sh i18n.sh hwconf.sh local.sh"
36 # Daemons to start at boot time. SliTaz only provides a few daemons: firewall,
37 # Web server (lighttpd), SSH server (dropbear) and rsyncd, so boot order is
38 # not realy important but dbus/hald should be starte before slim.
39 RUN_DAEMONS="dbus hald firewall lighttpd slim"
41 # Pre login bold message.
42 MESSAGE="Welcome to your box."