blob: 2afe1cd5e1138c3ad39b56c977f972f40dd60fb8 [file] [log] [blame]
Martin Rothdbae4d02015-12-11 12:24:33 -07001if PAYLOAD_UBOOT
2
3config PAYLOAD_SPECIFIC_OPTIONS # dummy
4 def_bool y
5 select PAYLOAD_IS_FLAT_BINARY
6
7choice
8 prompt "U-Boot version"
9 default UBOOT_STABLE
10
11config UBOOT_STABLE
12 bool "v2016.1"
13 help
14 Stable U-Boot version
15
16config UBOOT_MASTER
17 bool "master"
18 help
19 Newest U-Boot version
20
21endchoice
22
23config PAYLOAD_CONFIGFILE
24 string "U-Boot config file"
25 default ""
26 help
27 This option allows a platform to set Kconfig options for a basic
28 U-Boot payload. In general, if the option is used, the default
29 would be "$(top)/src/mainboard/$(MAINBOARDDIR)/config_uboot"
30 for a config stored in the coreboot mainboard directory, or
31 "$(project_dir)/configs/coreboot-x86_defconfig" to use a config
32 from the U-Boot config directory
33
34config PAYLOAD_FILE
35 default "payloads/external/U-Boot/u-boot/u-boot-dtb.bin"
36
37config PAYLOAD_OPTIONS
38 default "-l 0x1110000 -e 0x1110015"
39
40endif