mirror of
https://github.com/AsahiLinux/u-boot
synced 2025-02-17 14:38:58 +00:00
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 <heinrich.schuchardt@canonical.com> Reviewed-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
parent
64c67b68d1
commit
6e75ae1a39
1 changed files with 1 additions and 1 deletions
|
@ -67,7 +67,7 @@ endif
|
||||||
|
|
||||||
config UT_BOOTSTD
|
config UT_BOOTSTD
|
||||||
bool "Unit tests for standard boot"
|
bool "Unit tests for standard boot"
|
||||||
depends on UNIT_TEST && SANDBOX
|
depends on UNIT_TEST && BOOTSTD && SANDBOX
|
||||||
default y
|
default y
|
||||||
|
|
||||||
config UT_COMPRESSION
|
config UT_COMPRESSION
|
||||||
|
|
Loading…
Add table
Reference in a new issue