summaryrefslogtreecommitdiffstats
path: root/rules/splashutils.in
blob: 30bbcd40e1d04ac2c0b889ce90583fe93e68b105 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
## SECTION=multimedia_framebuffer

menuconfig SPLASHUTILS
	tristate
	prompt "splashutils                   "
	select LIBC_M
	select LIBC_RT
	select LIBC_PTHREAD
	select LIBJPEG
	select BUSYBOX_PIDOF
	select BUSYBOX_MKFIFO
	select LIBPNG if SPLASHUTILS_PNG
	select LIBMNG if SPLASHUTILS_MNG
	select FREETYPE if SPLASHUTILS_TTF
	help
	  FIXME

if SPLASHUTILS

config SPLASHUTILS_THEME
	string
	prompt "theme name"
	default "default"
	help
	  Name of the theme to use.

config SPLASHUTILS_BOOTMSG
	string
	prompt "boot message"
	default "Booting the system (\$progress%)..."

config SPLASHUTILS_PNG
	bool
	prompt "PNG support"
	help
	  Support for images in PNG format.

config SPLASHUTILS_MNG
	bool
	prompt "MNG support"
	help
	  Support for animations in MNG format.

config SPLASHUTILS_TTF
	bool
	prompt "TrueType Font support"

endif