mirror of
https://github.com/u-boot/u-boot.git
synced 2025-04-21 04:14:34 +00:00
boot: CONFIG_CEDIT must depend on CONFIG_EXPO
Building sandbox_defconfig with
CONFIG_CMD_CEDIT=y
CONFIG_EXPO=n
fails with
cmd/cedit.c:258:(.text.do_cedit_run+0x4c):
undefined reference to `expo_apply_theme
Fix the dependencies.
Fixes: a0874dc4ac
("expo: Add a configuration editor")
Signed-off-by: Heinrich Schuchardt <heinrich.schuchardt@canonical.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
parent
6a8a23ccfb
commit
64c67b68d1
2 changed files with 2 additions and 2 deletions
|
@ -1687,7 +1687,7 @@ menu "Configuration editor"
|
||||||
|
|
||||||
config CEDIT
|
config CEDIT
|
||||||
bool "Configuration editor"
|
bool "Configuration editor"
|
||||||
depends on BOOTSTD
|
depends on EXPO
|
||||||
help
|
help
|
||||||
Provides a way to deal with board configuration and present it to
|
Provides a way to deal with board configuration and present it to
|
||||||
the user for adjustment.
|
the user for adjustment.
|
||||||
|
|
|
@ -33,11 +33,11 @@ obj-$(CONFIG_$(SPL_TPL_)BOOTMETH_EFILOADER) += bootmeth_efi.o
|
||||||
obj-$(CONFIG_$(SPL_TPL_)BOOTMETH_CROS) += bootm.o bootm_os.o bootmeth_cros.o
|
obj-$(CONFIG_$(SPL_TPL_)BOOTMETH_CROS) += bootm.o bootm_os.o bootmeth_cros.o
|
||||||
obj-$(CONFIG_$(SPL_TPL_)BOOTMETH_SANDBOX) += bootmeth_sandbox.o
|
obj-$(CONFIG_$(SPL_TPL_)BOOTMETH_SANDBOX) += bootmeth_sandbox.o
|
||||||
obj-$(CONFIG_$(SPL_TPL_)BOOTMETH_SCRIPT) += bootmeth_script.o
|
obj-$(CONFIG_$(SPL_TPL_)BOOTMETH_SCRIPT) += bootmeth_script.o
|
||||||
|
obj-$(CONFIG_$(SPL_TPL_)CEDIT) += cedit.o
|
||||||
ifdef CONFIG_$(SPL_TPL_)BOOTSTD_FULL
|
ifdef CONFIG_$(SPL_TPL_)BOOTSTD_FULL
|
||||||
obj-$(CONFIG_BOOTEFI_BOOTMGR) += bootmeth_efi_mgr.o
|
obj-$(CONFIG_BOOTEFI_BOOTMGR) += bootmeth_efi_mgr.o
|
||||||
obj-$(CONFIG_$(SPL_TPL_)EXPO) += bootflow_menu.o
|
obj-$(CONFIG_$(SPL_TPL_)EXPO) += bootflow_menu.o
|
||||||
obj-$(CONFIG_$(SPL_TPL_)BOOTSTD) += bootflow_menu.o
|
obj-$(CONFIG_$(SPL_TPL_)BOOTSTD) += bootflow_menu.o
|
||||||
obj-$(CONFIG_$(SPL_TPL_)CEDIT) += cedit.o
|
|
||||||
endif
|
endif
|
||||||
|
|
||||||
obj-$(CONFIG_$(SPL_TPL_)OF_LIBFDT) += fdt_support.o
|
obj-$(CONFIG_$(SPL_TPL_)OF_LIBFDT) += fdt_support.o
|
||||||
|
|
Loading…
Add table
Reference in a new issue