1 # Config file for splashutils.
3 # Boot/reboot/shutdown message overrides.
4 # SPLASH_BOOT_MESSAGE="Booting the system (\$progress%)"
5 # SPLASH_REBOOT_MESSAGE="Rebooting the system (\$progress%)"
6 # SPLASH_SHUTDOWN_MESSAGE="Shutting the system down (\$progress%)"
8 # Should we drop to verbose mode on initscript errors? (yes/no)
9 SPLASH_VERBOSE_ON_ERRORS="yes"
11 # Which special effects should be used?
12 # This should be a comma separated list. Valid items: fadein, fadeout
13 SPLASH_EFFECTS="fadein,fadeout"
15 # In the silent mode, show the textbox by default if the theme supports it?
19 # If set to a positive value, fbsplash will automatically switch to verbose
20 # mode if there is no activity for the specified number of seconds.
21 SPLASH_AUTOVERBOSE="0"
23 # Name of the boot service starting X. Useful in cases when X is started
24 # by a custom initscript, other than the usual 'xdm'. If you are using a
25 # custom X initscript and do not set this variable correctly, do not be
26 # surprised if you end up at tty1 at the end of the boot process (instead of
28 # SPLASH_XSERVICE="xdm"
30 #########################################################################
31 # The options below affect settings which are normally specified on the
32 # kernel command line and are probably useful only in uncommon
33 # configurations. Note that the corresponding kernel command line
34 # settings will override any options set below.
35 #########################################################################
37 # Save splash profile information during boot? If set to 'yes', a record
38 # of the boot-up sequence will be kept in /lib/splash/cache/profile. The
39 # profile file is useful for debugging purposes and for replaying the
40 # boot sequence with `splash_manager -c replay`. It might slightly slow
41 # down the boot, so don't activate it if you don't plan to use it.
44 # Which console mode to use for the silent splash. Valid values are:
45 # text,graphics. If 'text' is selected, the splash tty will be treated
46 # just like any other tty by the kernel. With the 'graphics' option,
47 # the kernel will not touch the tty in any way. 'graphics' could be
48 # useful e.g. for preventing error messages from being displayed over
49 # the splash screen. Normally, this shouldn't be necessary. Use only
51 # SPLASH_KDMODE="text"
53 # Which theme to use, probably best left commented out (the theme
54 # specified on the kernel command line is used).
55 # SPLASH_THEME="gentoo"
57 # Which tty to use for the silent splash. If you change it, make sure
58 # the tty isn't used by something else (interactive console, X, etc).
59 # It's safest to leave it commented and let fbsplashd use the default
63 # Which splash mode should be activated? Valid values are:
64 # - silent: silent and verbose modes
65 # - silentonly: silent mode only
66 # - verbose: verbose mode only
67 # If commented out, the mode requested on the command line will be
69 # SPLASH_MODE_REQ="silent"