summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Petazzoni <thomas.petazzoni@free-electrons.com>2012-01-28 18:42:49 +0100
committerPeter Korsgaard <jacmet@sunsite.dk>2012-02-02 20:54:19 +0100
commitd06e802223b20a1ee3e365cbfbce4ae2ca7da1b6 (patch)
tree5d03eab60a214bafc2b350bfe967779baaf7b9dd
parentfaf266b460c339019aab446c454b358492887c45 (diff)
downloadbuildroot-novena-d06e802223b20a1ee3e365cbfbce4ae2ca7da1b6.tar.gz
buildroot-novena-d06e802223b20a1ee3e365cbfbce4ae2ca7da1b6.zip
Add basic config infrastructure for host utilities
Most of the host packages don't have to be exposed to the user as they are only used as build dependencies of target packages. However, some host utilities, such as flashing utilities, image creation programs, specific debuggers, might be useful and should be presented to the user. Therefore, we have a new global menu, which lists those host utilities. These utilities are described in package/*/Config.in.host files, which will be sourced by package/Config.in.host. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Acked-by: Luca Ceresoli <luca@lucaceresoli.net> Acked-by: Thomas De Schampheleire <thomas.de.schampheleire@gmail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
-rw-r--r--Config.in2
-rw-r--r--package/Config.in.host3
2 files changed, 5 insertions, 0 deletions
diff --git a/Config.in b/Config.in
index ab77ef348..8579a63b1 100644
--- a/Config.in
+++ b/Config.in
@@ -371,6 +371,8 @@ source "target/generic/Config.in"
source "package/Config.in"
+source "package/Config.in.host"
+
source "fs/Config.in"
source "boot/Config.in"
diff --git a/package/Config.in.host b/package/Config.in.host
new file mode 100644
index 000000000..54f6a5985
--- /dev/null
+++ b/package/Config.in.host
@@ -0,0 +1,3 @@
+menu "Host utilities"
+
+endmenu