soc/intel/xeon_sp/util: Enhance lock_pam0123
[coreboot2.git] / payloads / external / U-Boot / Kconfig
blobc7c44e22313d0c09905118a1795332308ee295a1
1 ## SPDX-License-Identifier: GPL-2.0-only
3 if PAYLOAD_UBOOT
5 config PAYLOAD_SPECIFIC_OPTIONS
6         def_bool y
7         select PAYLOAD_IS_FLAT_BINARY
8         select WANT_LINEAR_FRAMEBUFFER
10 config UBOOT_STABLE_COMMIT_ID
11         string
12         default "v2023.07"
14 choice
15         prompt "U-Boot version"
16         default UBOOT_STABLE
18 config UBOOT_STABLE
19         bool "v2023.07"
20         help
21           Stable U-Boot version
23 config UBOOT_MASTER
24         bool "master"
25         help
26           Newest U-Boot version
28 endchoice
30 config PAYLOAD_CONFIGFILE
31         string "U-Boot config file"
32         default ""
33         help
34           This option allows a platform to set Kconfig options for a basic
35           U-Boot payload.  In general, if the option is used, the default
36           would be "$(top)/src/mainboard/$(MAINBOARDDIR)/config_uboot"
37           for a config stored in the coreboot mainboard directory, or
38           "$(project_dir)/configs/coreboot-x86_defconfig" to use a config
39           from the U-Boot config directory
41 config PAYLOAD_FILE
42         default "payloads/external/U-Boot/build/u-boot.bin"
44 config PAYLOAD_OPTIONS
45         default "-l 0x1110000 -e 0x1110000"
47 endif