mirror of
https://github.com/coolsnowwolf/lede.git
synced 2025-04-16 04:13:31 +00:00
23 lines
789 B
Diff
23 lines
789 B
Diff
diff --git a/lib/Kconfig b/lib/Kconfig
|
|
index b8a8509d72..1cae2d5cc8 100644
|
|
--- a/lib/Kconfig
|
|
+++ b/lib/Kconfig
|
|
@@ -496,7 +496,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
|
|
@@ -517,7 +517,7 @@ config SPL_OF_LIBFDT_ASSUME_MASK
|
|
|
|
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
|