summaryrefslogtreecommitdiffstats
path: root/platforms/kernel-fit.in
blob: 8cbc1a85a9dd447b0b54fa98c2b10662a75f9b5e (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
## SECTION=image

menuconfig KERNEL_FIT
	tristate
	select KERNEL
	select HOST_DTC
	select HOST_U_BOOT_TOOLS
	select DTC
	select CODE_SIGNING	if KERNEL_FIT_SIGNED
	select IMAGE_ROOT_CPIO	if KERNEL_FIT_INITRAMFS
	prompt "Generate images/linuximage.fit"
	help
	  Generate a FIT image from the kernel image. This will contain
	  the Kernel image and all device trees in PTXCONF_DTC_OFTREE_DTS.
	  Configurations are provided for each device tree together witt
	  the Kernel image.

if KERNEL_FIT

config KERNEL_FIT_SIGNED
	bool
	prompt "sign FIT image"
	help
	  If enabled a signed FIT image will be generated.

config KERNEL_FIT_INITRAMFS
	bool
	depends on !KERNEL_FIT_INSTALL
	prompt "include root filesystem as initramfs"

config KERNEL_FIT_INSTALL
	bool
	prompt "install kernel into /boot"

endif