diff options
author | Angel Pons <th3fanbus@gmail.com> | 2021-07-23 11:34:07 +0200 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2021-07-26 14:02:43 +0000 |
commit | ac44f87465dcc8a490723f46bf91dd1417fbc7c1 (patch) | |
tree | cfbb19ea71ad5b45b0bc875a889aebca4dd2b0b4 /src/mainboard | |
parent | 5b44e7dce3c2fc1d89b6cbcde206c0415a434425 (diff) |
mb/intel/galileo: Clean up `FMDFILE` Kconfig handling
Remove redundant type, prompt and help text, and replace `depends on`
clause with conditional default to allow specifying a FMAP when vboot
is not selected.
Change-Id: I37ddab3a27e304e810ea55f13821d755bb70cb4b
Signed-off-by: Angel Pons <th3fanbus@gmail.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/56551
Reviewed-by: Arthur Heymans <arthur@aheymans.xyz>
Reviewed-by: Patrick Georgi <pgeorgi@google.com>
Reviewed-by: Felix Singer <felixsinger@posteo.net>
Reviewed-by: Michael Niewöhner <foss@mniewoehner.de>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/mainboard')
-rw-r--r-- | src/mainboard/intel/galileo/Kconfig | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/src/mainboard/intel/galileo/Kconfig b/src/mainboard/intel/galileo/Kconfig index cf6df6fa1b..37db0c66f2 100644 --- a/src/mainboard/intel/galileo/Kconfig +++ b/src/mainboard/intel/galileo/Kconfig @@ -105,15 +105,7 @@ config DRIVER_TPM_I2C_ADDR I2C address of the TPM chip on the Crypto Shield board. config FMDFILE - string "FMAP description file in fmd format" - depends on VBOOT - default "src/mainboard/\$(CONFIG_MAINBOARD_DIR)/vboot.fmd" - help - The build system creates a default FMAP from ROM_SIZE and CBFS_SIZE, - but in some cases more complex setups are required. - - When an FMD descriptionn file is specified, the build system uses it - instead of creating a default FMAP file. + default "src/mainboard/\$(CONFIG_MAINBOARD_DIR)/vboot.fmd" if VBOOT config ENABLE_SD_TESTING bool "Enable SD card testing" |