summaryrefslogtreecommitdiffstats
path: root/platforms/image_kernel.in
blob: e2fee8ca7a4be394bab3b41b6079af0e4c1ffad7 (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
## SECTION=image

menuconfig IMAGE_KERNEL
	bool
	prompt "Generate images/linuximage    "
	depends on KERNEL
	help
	  Install the kernel to "platform-FOO/images/linuximage"

if IMAGE_KERNEL

comment "'rootfs in kernel image' is incompatible with 'install kernel into /boot'"
	depends on KERNEL_INSTALL

config IMAGE_KERNEL_INITRAMFS
	bool
	select IMAGE_CPIO
	depends on !KERNEL_INSTALL
	select IMAGE_KERNEL_INSTALL_LATE
	prompt "include root filesystem as initramfs in kernel image"

config IMAGE_KERNEL_INSTALL_EARLY
	bool
	default !IMAGE_KERNEL_INSTALL_LATE
	help
	  If activated the kernel is installed during the kernel's
	  "targetinstall" stage.

config IMAGE_KERNEL_INSTALL_LATE
	bool
	help
	  Install kernel image during "images".

endif