Pārlūkot izejas kodu

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>
Thomas Petazzoni 13 gadi atpakaļ
vecāks
revīzija
d06e802223
2 mainītis faili ar 5 papildinājumiem un 0 dzēšanām
  1. 2 0
      Config.in
  2. 3 0
      package/Config.in.host

+ 2 - 0
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"

+ 3 - 0
package/Config.in.host

@@ -0,0 +1,3 @@
+menu "Host utilities"
+
+endmenu