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 #########################################################################
24 # The options below affect settings which are normally specified on the
25 # kernel command line and are probably useful only in uncommon
26 # configurations. Note that the corresponding kernel command line
27 # settings will override any options set below.
28 #########################################################################
30 # Save splash profile information during boot? If set to 'yes', a record
31 # of the boot-up sequence will be kept in /lib/splash/cache/profile. The
32 # profile file is useful for debugging purposes and for replaying the
33 # boot sequence with `splash_manager -c replay`. It might slightly slow
34 # down the boot, so don't activate it if you don't plan to use it.
37 # Which console mode to use for the silent splash. Valid values are:
38 # text,graphics. If 'text' is selected, the splash tty will be treated
39 # just like any other tty by the kernel. With the 'graphics' option,
40 # the kernel will not touch the tty in any way. 'graphics' could be
41 # useful e.g. for preventing error messages from being displayed over
42 # the splash screen. Normally, this shouldn't be necessary. Use only
44 # SPLASH_KDMODE="text"
46 # Which theme to use, probably best left commented out (the theme
47 # specified on the kernel command line is used).
48 # SPLASH_THEME="gentoo"
50 # Which tty to use for the silent splash. If you change it, make sure
51 # the tty isn't used by something else (interactive console, X, etc).
52 # It's safest to leave it commented and let fbsplashd use the default
56 # Which splash mode should be activated? Valid values are:
57 # - silent: silent and verbose modes
58 # - silentonly: silent mode only
59 # - verbose: verbose mode only
60 # If commented out, the mode requested on the command line will be
62 # SPLASH_MODE_REQ="silent"