[Buildroot] [PATCH] package/uboot-tols: fix dependency of comment about FIT support

Yann E. MORIN yann.morin.1998 at free.fr
Thu Aug 25 18:45:51 UTC 2016


When commit 031130a4 added the dependency on sharedlibs for FIT support
in uboot-tools, the dependency of the comment was added exactly as the
dependency of the symbol.

That means the comment is shown when FIT support is possible, and hidden
when it is not, while we want it the other way around...

Fix the dependency.

Signed-off-by: "Yann E. MORIN" <yann.morin.1998 at free.fr>
Cc: Thomas Petazzoni <thomas.petazzoni at free-electrons.com>
---
 package/uboot-tools/Config.in | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/package/uboot-tools/Config.in b/package/uboot-tools/Config.in
index df61fda..f55614b 100644
--- a/package/uboot-tools/Config.in
+++ b/package/uboot-tools/Config.in
@@ -22,7 +22,7 @@ config BR2_PACKAGE_UBOOT_TOOLS_FIT_SUPPORT
 	  pass the address of the blob to the "bootm" command.
 
 comment "u-boot tools FIT support needs a toolchain w/ dynamic library"
-	depends on !BR2_STATIC_LIBS
+	depends on BR2_STATIC_LIBS
 
 if BR2_PACKAGE_UBOOT_TOOLS_FIT_SUPPORT
 
-- 
2.7.4



More information about the buildroot mailing list