slitaz-modular annotate core/overlay/etc/rcS.conf @ rev 177

mkiso.sh: more filenames support
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed Mar 30 09:46:37 2016 +0200 (2016-03-30)
parents dafc02eccc51
children
rev   line source
slaxemulator@27 1 # /etc/rcS.conf - Initial boot script configuration for SliTaz GNU/Linux.
slaxemulator@27 2 # Config file used by /etc/init.d/rcS
slaxemulator@27 3 #
slaxemulator@27 4
slaxemulator@27 5 # Use udev to populate /dev and handle hotplug events.
slaxemulator@27 6 UDEV="yes"
slaxemulator@27 7
slaxemulator@27 8 # Clean up the system removing all tmp and pid files.
slaxemulator@27 9 CLEAN_UP_SYSTEM="yes"
slaxemulator@27 10
slaxemulator@27 11 # Filesystems to check integrity of at boot time. You should check the
slaxemulator@27 12 # rootfs (where SliTaz is installed) and all partitions listed in
slaxemulator@27 13 # /etc/fstab. Example: CHECK_FS="/dev/hda5 /dev/hdb1"
slaxemulator@27 14 CHECK_FS=""
slaxemulator@27 15
slaxemulator@27 16 # Fast boot into X by setting the system keymap-locale and starting
slaxemulator@27 17 # the Slim login manager earlier at boot time. If fast X is enabled
slaxemulator@27 18 # then dbus, hald and slim can be removed from RUN_DAEMONS.
slaxemulator@27 19 FAST_BOOT_X="no"
slaxemulator@27 20
slaxemulator@106 21 # Graphical boot with fbsplash (To easily configure use: tazfbsplash)
slaxemulator@106 22 FBSPLASH="no"
slaxemulator@106 23 FBSPLASH_THEME="slitaz"
slaxemulator@106 24
slaxemulator@27 25 # Start Kernel log daemons (syslogd and klogd).
slaxemulator@27 26 KERNEL_LOG_DAEMONS="yes"
slaxemulator@27 27 SYSLOGD_ROTATED_SIZE="60"
slaxemulator@27 28
slaxemulator@27 29 # Kernel modules to automatically load at boot time. You can use 'modprobe -l'
slaxemulator@27 30 # to get a list of all kernel modules available.
slaxemulator@27 31 #
slaxemulator@27 32 # For Intel and some Nvidia sound cards : snd_intel8x0 snd_intel8x0m snd_hda_intel
slaxemulator@27 33 #
slaxemulator@27 34 LOAD_MODULES=""
slaxemulator@27 35
slaxemulator@106 36 # Automaticaly recharge packages list on each boot and in background.
slaxemulator@106 37 # If new packages or upgrade are avalaible they will be notified with
slaxemulator@106 38 # tazpkg-notify. Here we just recharge list, we dont install anything
slaxemulator@106 39 # since root user should check visualy packages that will be upgraded.
slaxemulator@106 40 RECHARGE_PACKAGES_LIST="no"
slaxemulator@106 41
slaxemulator@27 42 # Initialization scripts to run at boot time. Boot order is important:
slaxemulator@27 43 # bootopts.sh (boot options) must start first, hwconf.sh after network.sh (tazx
slaxemulator@27 44 # needs an active connection to install Xorg), then you are free to choose.
slaxemulator@27 45 # Note that the local.sh script exists to let you quickly add some local startup
slaxemulator@27 46 # commands.
slaxemulator@106 47 RUN_SCRIPTS="bootopts.sh network.sh system.sh local.sh"
slaxemulator@27 48
slaxemulator@27 49 # Daemons to start at boot time. SliTaz only provides a few daemons: firewall,
slaxemulator@27 50 # Web server (httpd), SSH server (dropbear) and rsyncd, so boot order is
slaxemulator@27 51 # not really important, but dbus/hald should be started before slim.
slaxemulator@106 52 RUN_DAEMONS="dbus hald slim tazpanel"
slaxemulator@27 53
slaxemulator@27 54 # Pre login bold message.
slaxemulator@27 55 MESSAGE="Welcome to your box."