summaryrefslogtreecommitdiffstats
path: root/platforms/image_xlblob.in
blob: 570ce0bee8094b8fa9b29596a909225872e57812 (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_XLBLOB
	bool
	select HOST_XL_TOOLS
	depends on ARCH_MICROBLAZE
	prompt "Generate XLBLOB Images        "
	help
	  Generate a PIC executable blob tagged for XL-Boot that copies
	  a image from FLASH to its linked address in RAM and executes it.

if IMAGE_XLBLOB

config IMAGE_XLBLOB_U_BOOT
	bool
	depends on U_BOOT
	prompt "Generate images/u-boot-xl"
	default y
	help
	  Generate a PIC executable blob tagged for XL-Boot that copies
	  the U-Boot image from FLASH to its linked address in RAM and
	  executes it.

config IMAGE_XLBLOB_KERNEL
	bool
	depends on KERNEL
	prompt "Generate images/linuximage-xl"
	default y
	help
	  Generate a PIC executable blob tagged for XL-Boot that copies
	  the Linux kernel image from FLASH to its linked address in RAM
	  and executes it.

endif