From: Tom Rini Date: Tue, 8 May 2018 12:52:17 +0000 (-0400) Subject: lib/Kconfig: Mark OF_LIBFDT_OVERLAY as depending on OF_LIBFDT X-Git-Tag: v2018.07-rc1~194 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=6417572efa9107674ec106ae7e388178a92155fc;p=u-boot lib/Kconfig: Mark OF_LIBFDT_OVERLAY as depending on OF_LIBFDT The overlay code is only useful when OF_LIBFDT is set, so mark it as depending on that first. Signed-off-by: Tom Rini --- diff --git a/lib/Kconfig b/lib/Kconfig index 3fa1731a49..1590f7afa4 100644 --- a/lib/Kconfig +++ b/lib/Kconfig @@ -286,6 +286,7 @@ config OF_LIBFDT config OF_LIBFDT_OVERLAY bool "Enable the FDT library overlay support" + depends on OF_LIBFDT default y if ARCH_OMAP2PLUS || ARCH_KEYSTONE help This enables the FDT library (libfdt) overlay support.