summaryrefslogtreecommitdiffstats
path: root/platforms/image_uimage.in
blob: 77591102fb7f8978b02a43aef09de7355a407ea9 (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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
## SECTION=image

menuconfig IMAGE_UIMAGE
	bool
	prompt "Generate images/uRamdisk      "
	select HOST_U_BOOT_TOOLS
	help
	  The file images/uRamdisk can be loaded separatly by the bootloader U-Boot

if IMAGE_UIMAGE

choice
	prompt "Type of uRamdisk"
	default IMAGE_UIMAGE_RAMDISK
	help
	  specify the type of the uRamdisk that is used.

config IMAGE_UIMAGE_RAMDISK
	bool
	prompt "ramdisk"
	select IMAGE_EXT2
	select IMAGE_EXT2_GZIP
	help
	  Use a gzip-compressed ext2 ramdisk image.

config IMAGE_UIMAGE_INITRAMFS
	bool
	prompt "initramfs"
	select IMAGE_CPIO
	select IMAGE_CPIO_GZ
	help
	  Use a gzip-compressed initramfs (cpio).

endchoice

config IMAGE_UIMAGE_NAME
	string
	default "Application Ramdisk"
	prompt "name of the ramdisk image"
	help
	  FIXME: This item needs to be documented

config IMAGE_UIMAGE_EXTRA_ARGS
	string
	default ""
	prompt "extra arguments passed to mkimage"
	help
	  If needed you can add extra arguments for mkimage here
	  (e.g. -a 0xaa00000 -e 0xaa00000 )

# TODO: See comment in rules/post/images.make for this topic
#config IMAGE_UIMAGE_MULTI
#	bool
#	prompt "Generate a multi image images/muimage"
#	select HOST_U_BOOT_TOOLS
#	select KERNEL
#	select IMAGE_CPIO
#	help
#	  This generates a multi content image to be loaded by
#	  the bootloader U-Boot. It contains the kernel and the
#	  RAM disk in one image.

endif