2016-02-05 03:52:27 +01:00
|
|
|
menu "Payload"
|
|
|
|
|
2017-05-20 21:04:15 +02:00
|
|
|
config NO_DEFAULT_PAYLOAD
|
|
|
|
bool
|
|
|
|
|
2016-02-05 03:52:27 +01:00
|
|
|
choice
|
|
|
|
prompt "Add a payload"
|
2017-05-20 21:04:15 +02:00
|
|
|
default PAYLOAD_NONE if NO_DEFAULT_PAYLOAD || !ARCH_X86
|
2016-02-05 03:52:27 +01:00
|
|
|
default PAYLOAD_SEABIOS if ARCH_X86
|
|
|
|
|
|
|
|
config PAYLOAD_NONE
|
|
|
|
bool "None"
|
|
|
|
help
|
|
|
|
Select this option if you want to create an "empty" coreboot
|
|
|
|
ROM image for a certain mainboard, i.e. a coreboot ROM image
|
|
|
|
which does not yet contain a payload.
|
|
|
|
|
|
|
|
For such an image to be useful, you have to use 'cbfstool'
|
|
|
|
to add a payload to the ROM image later.
|
|
|
|
|
|
|
|
config PAYLOAD_ELF
|
|
|
|
bool "An ELF executable payload"
|
|
|
|
help
|
|
|
|
Select this option if you have a payload image (an ELF file)
|
|
|
|
which coreboot should run as soon as the basic hardware
|
|
|
|
initialization is completed.
|
|
|
|
|
|
|
|
You will be able to specify the location and file name of the
|
|
|
|
payload image later.
|
|
|
|
|
2018-07-09 10:42:41 +02:00
|
|
|
config PAYLOAD_FIT
|
|
|
|
bool "A FIT payload"
|
2018-12-12 01:08:24 +01:00
|
|
|
depends on ARCH_ARM64 || ARCH_RISCV
|
2018-07-09 10:42:41 +02:00
|
|
|
select PAYLOAD_FIT_SUPPORT
|
|
|
|
help
|
|
|
|
Select this option if you have a payload image (a FIT file) which
|
|
|
|
coreboot should run as soon as the basic hardware initialization
|
|
|
|
is completed.
|
|
|
|
|
|
|
|
You will be able to specify the location and file name of the
|
|
|
|
payload image later.
|
|
|
|
|
2016-02-05 03:52:27 +01:00
|
|
|
source "payloads/external/*/Kconfig.name"
|
|
|
|
|
|
|
|
endchoice
|
|
|
|
|
|
|
|
source "payloads/external/*/Kconfig"
|
|
|
|
|
|
|
|
config PAYLOAD_FILE
|
|
|
|
string "Payload path and filename"
|
2018-04-19 14:39:07 +02:00
|
|
|
depends on PAYLOAD_ELF || PAYLOAD_FIT
|
|
|
|
default "payload.elf" if PAYLOAD_ELF
|
|
|
|
default "uImage" if PAYLOAD_FIT
|
2016-02-05 03:52:27 +01:00
|
|
|
help
|
|
|
|
The path and filename of the ELF executable file to use as payload.
|
|
|
|
|
2016-07-23 17:11:44 +02:00
|
|
|
choice
|
|
|
|
prompt "Payload compression algorithm"
|
2018-01-20 12:21:03 +01:00
|
|
|
default COMPRESSED_PAYLOAD_LZMA
|
2018-09-25 15:22:01 +02:00
|
|
|
depends on !PAYLOAD_NONE && !PAYLOAD_LINUX && !PAYLOAD_LINUXBOOT && !PAYLOAD_FIT
|
2016-07-23 17:11:44 +02:00
|
|
|
help
|
|
|
|
Choose the compression algorithm for the chosen payloads.
|
|
|
|
You can choose between LZMA and LZ4.
|
|
|
|
|
2016-02-05 03:52:27 +01:00
|
|
|
config COMPRESSED_PAYLOAD_LZMA
|
|
|
|
bool "Use LZMA compression for payloads"
|
|
|
|
help
|
|
|
|
In order to reduce the size payloads take up in the ROM chip
|
|
|
|
coreboot can compress them using the LZMA algorithm.
|
|
|
|
|
2016-07-23 17:11:44 +02:00
|
|
|
config COMPRESSED_PAYLOAD_LZ4
|
|
|
|
bool "Use LZ4 compression for payloads"
|
|
|
|
help
|
|
|
|
In order to reduce the size payloads take up in the ROM chip
|
|
|
|
coreboot can compress them using the LZ4 algorithm.
|
|
|
|
endchoice
|
|
|
|
|
2015-12-11 20:24:33 +01:00
|
|
|
config PAYLOAD_OPTIONS
|
|
|
|
string
|
|
|
|
default ""
|
|
|
|
help
|
|
|
|
Additional cbfstool options for the payload
|
|
|
|
|
|
|
|
config PAYLOAD_IS_FLAT_BINARY
|
|
|
|
def_bool n
|
|
|
|
help
|
|
|
|
Add the payload to cbfs as a flat binary type instead of as an
|
|
|
|
elf payload
|
|
|
|
|
2018-04-19 14:39:07 +02:00
|
|
|
config PAYLOAD_FIT_SUPPORT
|
|
|
|
bool "FIT support"
|
|
|
|
default n
|
2018-12-12 01:08:24 +01:00
|
|
|
default y if PAYLOAD_LINUX && (ARCH_ARM || ARCH_ARM64 || ARCH_RISCV)
|
|
|
|
depends on ARCH_ARM64 || ARCH_RISCV
|
2018-04-19 14:39:07 +02:00
|
|
|
select FLATTENED_DEVICE_TREE
|
|
|
|
help
|
|
|
|
Select this option if your payload is of type FIT.
|
|
|
|
Enables FIT parser and devicetree patching. The FIT is non
|
2018-07-02 08:37:09 +02:00
|
|
|
self-extracting and needs to have a compatible compression format.
|
2018-04-19 14:39:07 +02:00
|
|
|
|
2018-02-07 13:01:43 +01:00
|
|
|
config COMPRESS_SECONDARY_PAYLOAD
|
|
|
|
bool "Use LZMA compression for secondary payloads"
|
|
|
|
default y
|
|
|
|
help
|
|
|
|
In order to reduce the size secondary payloads take up in the
|
|
|
|
ROM chip they can be compressed using the LZMA algorithm.
|
|
|
|
|
2016-03-08 03:21:45 +01:00
|
|
|
menu "Secondary Payloads"
|
|
|
|
|
2016-02-17 03:40:47 +01:00
|
|
|
config COREINFO_SECONDARY_PAYLOAD
|
|
|
|
bool "Load coreinfo as a secondary payload"
|
|
|
|
default n
|
|
|
|
depends on ARCH_X86
|
|
|
|
help
|
|
|
|
coreinfo can be loaded as a secondary payload under SeaBIOS, GRUB,
|
|
|
|
or any other payload that can load additional payloads.
|
2016-02-05 03:52:27 +01:00
|
|
|
|
2016-02-29 00:56:27 +01:00
|
|
|
config MEMTEST_SECONDARY_PAYLOAD
|
|
|
|
bool "Load Memtest86+ as a secondary payload"
|
|
|
|
default n
|
2016-03-08 03:21:45 +01:00
|
|
|
depends on ARCH_X86
|
2016-02-29 00:56:27 +01:00
|
|
|
help
|
|
|
|
Memtest86+ can be loaded as a secondary payload under SeaBIOS, GRUB,
|
|
|
|
or any other payload that can load additional payloads.
|
|
|
|
|
2016-04-15 09:48:14 +02:00
|
|
|
config NVRAMCUI_SECONDARY_PAYLOAD
|
|
|
|
bool "Load nvramcui as a secondary payload"
|
|
|
|
default n
|
|
|
|
depends on ARCH_X86
|
|
|
|
help
|
|
|
|
nvramcui can be loaded as a secondary payload under SeaBIOS, GRUB,
|
|
|
|
or any other payload that can load additional payloads.
|
|
|
|
|
2016-05-27 23:44:47 +02:00
|
|
|
config TINT_SECONDARY_PAYLOAD
|
|
|
|
bool "Load tint as a secondary payload"
|
|
|
|
default n
|
|
|
|
depends on ARCH_X86
|
|
|
|
help
|
|
|
|
tint can be loaded as a secondary payload under SeaBIOS, GRUB,
|
|
|
|
or any other payload that can load additional payloads.
|
|
|
|
|
2018-08-19 17:48:53 +02:00
|
|
|
source "payloads/external/*/Kconfig.secondary"
|
|
|
|
|
2016-03-08 03:21:45 +01:00
|
|
|
endmenu # "Secondary Payloads"
|
2016-02-17 03:40:47 +01:00
|
|
|
endmenu
|