summaryrefslogtreecommitdiff
path: root/package/ti-gfx
diff options
context:
space:
mode:
authorThomas De Schampheleire <patrickdepinguin@gmail.com>2013-10-31 13:02:39 +0100
committerThomas Petazzoni <thomas.petazzoni@free-electrons.com>2013-11-01 15:32:25 +0100
commitd6a44b2f0a2f9cedf08a44703054d3993ae1843d (patch)
tree561054ea066035af05d87bb176991f1e81fbe489 /package/ti-gfx
parent90af4f16c5ce6c8c9584981bfbcbfcd3cef2cded (diff)
Config.in files: add/update comments on (e)glibc dependencies
This patch adds missing comments about (e)glibc dependencies and updates the text of existing comments. Additionally, it splits dependency expressions for the touched packages from depends on BR2_BASE_DEP && !BR2_TOOLCHAIN_USES_GLIBC to depends on BR2_BASE_DEP depends on !BR2_TOOLCHAIN_USES_GLIBC so that (positive) base dependencies are separate from the (negative) toolchain dependencies. This strategy makes it easier to write such comments (because one can simply copy the base dependency from the actual package config option), but also avoids complex and long boolean expressions. Signed-off-by: Thomas De Schampheleire <thomas.de.schampheleire@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package/ti-gfx')
-rw-r--r--package/ti-gfx/Config.in5
1 files changed, 3 insertions, 2 deletions
diff --git a/package/ti-gfx/Config.in b/package/ti-gfx/Config.in
index f336c52aa..9387b576f 100644
--- a/package/ti-gfx/Config.in
+++ b/package/ti-gfx/Config.in
@@ -60,5 +60,6 @@ endchoice
endif
-comment "ti-gfx requires an eglibc/glibc based toolchain and the linux kernel"
- depends on !(BR2_LINUX_KERNEL && BR2_TOOLCHAIN_USES_GLIBC) && BR2_arm
+comment "ti-gfx needs an (e)glibc toolchain and the linux kernel"
+ depends on BR2_arm
+ depends on !(BR2_LINUX_KERNEL && BR2_TOOLCHAIN_USES_GLIBC)