Enable `CMD_BOOTEFI_SELFTEST` in `corstone1000_defconfig` so the later runtime-variable selftest patch in this series can be exercised on Corstone-1000.
Keep `CMD_BOOTEFI_HELLO` and `CMD_POWEROFF` explicitly disabled. Enabling `CMD_BOOTEFI_SELFTEST` would otherwise make `CMD_BOOTEFI_HELLO` default to `y` and pull in `CMD_POWEROFF` on this PSCI-based defconfig. The intent here is to enable the selftest command without broadening the rest of the board command set. Signed-off-by: Harsimran Singh Tungal <[email protected]> --- Changelog: =============== v2: Simon: - Reword the commit message around `CMD_BOOTEFI_SELFTEST` and explain why the selftest enable is needed on Corstone-1000 - Clarify in commit message that `is not set` lines are intentional configs/corstone1000_defconfig | 3 +++ 1 file changed, 3 insertions(+) diff --git a/configs/corstone1000_defconfig b/configs/corstone1000_defconfig index 527a679b785..b5fb4868e0f 100644 --- a/configs/corstone1000_defconfig +++ b/configs/corstone1000_defconfig @@ -32,6 +32,8 @@ CONFIG_SYS_PROMPT="corstone1000# " # CONFIG_CMD_CONSOLE is not set CONFIG_CMD_FWU_METADATA=y CONFIG_CMD_BOOTZ=y +# CONFIG_CMD_BOOTEFI_HELLO is not set +CONFIG_CMD_BOOTEFI_SELFTEST=y # CONFIG_CMD_XIMG is not set CONFIG_CMD_GPT=y CONFIG_CMD_LOADM=y @@ -63,6 +65,7 @@ CONFIG_SYSRESET=y CONFIG_SYSRESET_PSCI=y CONFIG_TEE=y CONFIG_OPTEE=y +# CONFIG_CMD_POWEROFF is not set CONFIG_USB=y CONFIG_USB_ISP1760=y # CONFIG_RANDOM_UUID is not set -- 2.34.1

