summaryrefslogtreecommitdiffstats
path: root/platforms/u-boot.in
blob: 38684a03a376ea40081d5e38a0899e4cfb897373 (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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
## SECTION=bootloader

menuconfig U_BOOT
	select BOOTLOADER
	prompt "U-Boot                        "
	bool

if U_BOOT

config U_BOOT_VERSION
	string
	default 1.2.0
	prompt "U-Boot version"
	help
	  Enter the Uboot version you want to build. Usally something like "1.2.0"

config U_BOOT_MD5
	string
	prompt "U-Boot source md5"

config U_BOOT_SERIES
	prompt "patch series file"
	string
	default "series"
	help
	  This entry specifies a patch series file which has to live in
	  the u-boot patches directory. This way you can set a different
	  series file than the default.

config U_BOOT_CONFIG
	string
	prompt "U-Boot config target"
	help
	  The U-Boot make config target. Usually something like
	  "yourbox_config". See Uboot's main Makefile for possible
	  configuration targets.

comment "target install"

config U_BOOT_INSTALL_SREC
	prompt "install u-boot.srec"
	bool
	help
	  Installing the U-Boot srec hexfile into platform image directory.

config U_BOOT_INSTALL_ELF
	prompt "install u-boot.elf"
	bool
	help
	  Installing the U-Boot ELF binary into platform image directory.

config U_BOOT_INSTALL_MLO
	prompt "install MLO"
	bool
	depends on !X_LOAD
	help
	  Installing the U-Boot SPL ("MLO") binary needed for OMAP CPUs into platform
	  image directory.

if U_BOOT_INSTALL_MLO

config U_BOOT_INSTALL_U_BOOT_IMG
	prompt "install u-boot.img"
	bool
	help
	  Installing the u-boot image with header ("u-boot.img") which is executed
	  by u-boot SPL ("MLO") into platform image directory.

endif

config U_BOOT_INSTALL_U_BOOT_IMX
	prompt "install u-boot.imx"
	bool
	help
	  Installing the U-Boot image with imx header (u-boot.imx) into platform 
	  image directory. Say yes if you are building for freescale i.MX SOC

endif