summaryrefslogtreecommitdiffstats
path: root/platforms/image_kernel.in
blob: 1f325766dc7d1b3fb406c9e2698ee1b161526aa4 (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
## 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"
	help
	  In order to boot into the initrd use these kernel parameters:
	  "root=/dev/ram0 rdinit=/sbin/init"

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".

config IMAGE_KERNEL_LZOP
	bool
	select KERNEL_LZOP
	prompt "Generate a lzop compressed kernel image"

config IMAGE_KERNEL_LZOP_EXTRA_ARGS
	depends on IMAGE_KERNEL_LZOP
	string
	prompt "extra arguments passed to the lzop command"

endif