From: Masahiro Yamada Date: Fri, 20 Jul 2018 02:04:09 +0000 (+0900) Subject: fdt_support: make FDT_FIXUP_PARTITIONS depend on CMD_MTDPARTS X-Git-Tag: v2018.09-rc1~24^2 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=ab948cd21d25ba2f54832fc98a59eea90e680eba;p=oweals%2Fu-boot.git fdt_support: make FDT_FIXUP_PARTITIONS depend on CMD_MTDPARTS fdt_fixup_mtdparts() calls mtdparts_init() and device_find(), which are defined in cmd/mtdparts.c The combination of FDT_FIXUP_PARTITIONS=y and CMD_MTDPARTS=n emits the following link error: common/fdt_support.c:903: undefined reference to `mtdparts_init' common/fdt_support.c:914: undefined reference to `device_find' Signed-off-by: Masahiro Yamada Reviewed-by: Simon Glass --- diff --git a/lib/Kconfig b/lib/Kconfig index a77bf1c688..622f3c26c3 100644 --- a/lib/Kconfig +++ b/lib/Kconfig @@ -334,7 +334,7 @@ config SPL_OF_LIBFDT config FDT_FIXUP_PARTITIONS bool "overwrite MTD partitions in DTS through defined in 'mtdparts'" depends on OF_LIBFDT - default n + depends on CMD_MTDPARTS help Allow overwriting defined partitions in the device tree blob using partition info defined in the 'mtdparts' environment