[U-Boot] [PATCH 047/126] spl: Allow SPL/TPL to use of-platdata without libfdt
Simon Glass
sjg at chromium.org
Wed Sep 25 14:56:31 UTC 2019
At present libfdt is included in SPL/TPL if SPL/TPL_OF_CONTROL is enabled.
But if of-platdata is in use this is not required. Update the condition to
avoid building this extra code. This ensures that if a libfdt function is
used it will produce a link error rather than silently increasing the
build size.
Signed-off-by: Simon Glass <sjg at chromium.org>
---
lib/Kconfig | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/lib/Kconfig b/lib/Kconfig
index 135f0b372b0..bab57eb3059 100644
--- a/lib/Kconfig
+++ b/lib/Kconfig
@@ -473,7 +473,7 @@ config OF_LIBFDT_OVERLAY
config SPL_OF_LIBFDT
bool "Enable the FDT library for SPL"
- default y if SPL_OF_CONTROL
+ default y if SPL_OF_CONTROL && !SPL_OF_PLATDATA
help
This enables the FDT library (libfdt). It provides functions for
accessing binary device tree images in memory, such as adding and
@@ -483,7 +483,7 @@ config SPL_OF_LIBFDT
config TPL_OF_LIBFDT
bool "Enable the FDT library for TPL"
- default y if TPL_OF_CONTROL
+ default y if TPL_OF_CONTROL && !TPL_OF_PLATDATA
help
This enables the FDT library (libfdt). It provides functions for
accessing binary device tree images in memory, such as adding and
--
2.23.0.444.g18eeb5a265-goog
More information about the U-Boot
mailing list