On 11/05/21 17:53, Philippe Mathieu-Daudé wrote:
The CONFIG_FDT symbol depends on the availability of the
fdt library on the host. To be able to have other symbols
depends on it, declare it symbol in Kconfig.host.
Signed-off-by: Philippe Mathieu-Daudé <[email protected]>
---
Kconfig.host | 3 +++
1 file changed, 3 insertions(+)
diff --git a/Kconfig.host b/Kconfig.host
index 24255ef4419..0a512696865 100644
--- a/Kconfig.host
+++ b/Kconfig.host
@@ -41,3 +41,6 @@ config PVRDMA
config MULTIPROCESS_ALLOWED
bool
imply MULTIPROCESS
+
+config FDT
+ bool
You need to add it to host_kconfig as well, don't you?
Paolo