From: Heinrich Schuchardt Date: Sat, 16 Dec 2023 15:46:31 +0000 (+0100) Subject: test: CONFIG_UT_BOOTSTD must depend on CONFIG_BOOTSTD X-Git-Url: http://git.dujemihanovic.xyz/img/sics.gif?a=commitdiff_plain;h=6e75ae1a39431fad9a14d7718582d86d90997545;p=u-boot.git test: CONFIG_UT_BOOTSTD must depend on CONFIG_BOOTSTD Building sandbox_defconfig with CONFIG_BOOTSTD=n CONFIG_UT_BOOTSTD=y leads to an error /usr/bin/ld: test/cmd_ut.o:(.data.rel.cmd_ut_sub+0xc0): undefined reference to `do_ut_bootstd' Add the missing dependency. Signed-off-by: Heinrich Schuchardt Reviewed-by: Simon Glass --- diff --git a/test/Kconfig b/test/Kconfig index e842c01308..e2ec0994a2 100644 --- a/test/Kconfig +++ b/test/Kconfig @@ -67,7 +67,7 @@ endif config UT_BOOTSTD bool "Unit tests for standard boot" - depends on UNIT_TEST && SANDBOX + depends on UNIT_TEST && BOOTSTD && SANDBOX default y config UT_COMPRESSION