summaryrefslogtreecommitdiffstats
path: root/pbl/Kconfig
blob: fbf0b1b4d05ac36c0ef81ed64ded6297d277567a (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
config HAVE_PBL_IMAGE
	bool

config HAVE_IMAGE_COMPRESSION
	bool

config PBL_IMAGE
	bool "Pre-Bootloader image"
	depends on HAVE_PBL_IMAGE

config PBL_FORCE_PIGGYDATA_COPY
	bool
	help
	  In some case we need to copy the PIGGYDATA as the link address
	  as example we run from SRAM and shutdown the SDRAM/DDR for
	  reconfiguration but most of the time we just need to copy the
	  executable code.

if PBL_IMAGE

config IMAGE_COMPRESSION
	bool
	depends on HAVE_IMAGE_COMPRESSION
	default y

if IMAGE_COMPRESSION

choice
	prompt "Compression"

config IMAGE_COMPRESSION_LZO
	bool "lzo"

config IMAGE_COMPRESSION_GZIP
	bool "gzip"

endchoice

endif

endif