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

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

if IMAGE_UIMAGE

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 umkimage"
	help
	  If needed you can add extra arguments for umkimage 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_UMKIMAGE
#	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