summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Olbrich <m.olbrich@pengutronix.de>2019-07-12 12:58:28 +0200
committerMichael Olbrich <m.olbrich@pengutronix.de>2019-09-02 16:06:19 +0200
commit202c7c170f6b4ac10a0a218b321aa3ab196fa0a7 (patch)
tree4dc3d10a0863c88b7fa4746d8aa3424c50bc08b5
parent119a2cb59757116f302f762655b7ea4ede8055d4 (diff)
downloadOSELAS.Toolchain-202c7c170f6b4ac10a0a218b321aa3ab196fa0a7.tar.gz
OSELAS.Toolchain-202c7c170f6b4ac10a0a218b321aa3ab196fa0a7.tar.xz
Kconfig: use generated section for host tools
This way we don't need to add the needed includes manually. Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
-rw-r--r--Kconfig22
-rw-r--r--rules/host-cloog.in2
-rw-r--r--rules/host-expat.in2
-rw-r--r--rules/host-fake-makeinfo.in2
-rw-r--r--rules/host-gmp.in2
-rw-r--r--rules/host-gobject-introspection.in3
-rw-r--r--rules/host-isl.in2
-rw-r--r--rules/host-libelf.in2
-rw-r--r--rules/host-mpc.in2
-rw-r--r--rules/host-mpfr.in2
-rw-r--r--rules/host-xz.in2
-rw-r--r--rules/host-zlib.in2
12 files changed, 28 insertions, 17 deletions
diff --git a/Kconfig b/Kconfig
index 5dcff3d..35189c2 100644
--- a/Kconfig
+++ b/Kconfig
@@ -19,6 +19,8 @@ config NO_PLATFORM
bool
default y
+config VIRTUAL
+ bool
config PROJECT
string
@@ -68,23 +70,9 @@ source "workspace/rules/cross-clang.in"
source "workspace/rules/cross-gdb.in"
source "workspace/rules/cross-toolchain.in"
source "workspace/rules/host-fake-makeinfo.in"
-source "workspace/rules/host-cloog.in"
-source "workspace/rules/host-expat.in"
-source "workspace/rules/host-gmp.in"
-source "workspace/rules/host-isl.in"
-source "workspace/rules/host-mpc.in"
-source "workspace/rules/host-mpfr.in"
-source "workspace/rules/host-xz.in"
-source "workspace/rules/host-zlib.in"
-source "workspace/rules/host-libelf.in"
-source "rules/host-autotools-autoconf.in"
-source "rules/host-autotools-automake.in"
-source "rules/host-cmake.in"
-source "rules/host-chrpath.in"
-source "rules/host-m4.in"
-source "rules/host-ninja.in"
-source "rules/host-system-perl.in"
-source "rules/host-system-python3.in"
+
+source "generated/hosttools_noprompt.in"
+source "generated/hosttools_noprompt_ptx.in"
comment "----------------------------------"
diff --git a/rules/host-cloog.in b/rules/host-cloog.in
index f7b03f6..22993cc 100644
--- a/rules/host-cloog.in
+++ b/rules/host-cloog.in
@@ -1,3 +1,5 @@
+## SECTION=hosttools_noprompt
+
config HOST_CLOOG
select HOST_ISL
bool
diff --git a/rules/host-expat.in b/rules/host-expat.in
index c8d4305..9f4bf0a 100644
--- a/rules/host-expat.in
+++ b/rules/host-expat.in
@@ -1,2 +1,4 @@
+## SECTION=hosttools_noprompt
+
config HOST_EXPAT
bool
diff --git a/rules/host-fake-makeinfo.in b/rules/host-fake-makeinfo.in
index 55c4d8f..f5b78c6 100644
--- a/rules/host-fake-makeinfo.in
+++ b/rules/host-fake-makeinfo.in
@@ -1,2 +1,4 @@
+## SECTION=hosttools_noprompt
+
config HOST_FAKE_MAKEINFO
bool
diff --git a/rules/host-gmp.in b/rules/host-gmp.in
index d81ff47..73c0aae 100644
--- a/rules/host-gmp.in
+++ b/rules/host-gmp.in
@@ -1,2 +1,4 @@
+## SECTION=hosttools_noprompt
+
config HOST_GMP
bool
diff --git a/rules/host-gobject-introspection.in b/rules/host-gobject-introspection.in
new file mode 100644
index 0000000..ea0a0c6
--- /dev/null
+++ b/rules/host-gobject-introspection.in
@@ -0,0 +1,3 @@
+## SECTION=hosttools_noprompt_ptx
+
+# this file is left intentionally blank
diff --git a/rules/host-isl.in b/rules/host-isl.in
index 0c25e63..b0572a1 100644
--- a/rules/host-isl.in
+++ b/rules/host-isl.in
@@ -1,3 +1,5 @@
+## SECTION=hosttools_noprompt
+
config HOST_ISL
bool
select HOST_GMP
diff --git a/rules/host-libelf.in b/rules/host-libelf.in
index a6bc8ee..eab1ae9 100644
--- a/rules/host-libelf.in
+++ b/rules/host-libelf.in
@@ -1,3 +1,5 @@
+## SECTION=hosttools_noprompt
+
config HOST_LIBELF
bool
select HOST_ZLIB
diff --git a/rules/host-mpc.in b/rules/host-mpc.in
index 75bd349..2564d09 100644
--- a/rules/host-mpc.in
+++ b/rules/host-mpc.in
@@ -1,3 +1,5 @@
+## SECTION=hosttools_noprompt
+
config HOST_MPC
bool
select HOST_GMP
diff --git a/rules/host-mpfr.in b/rules/host-mpfr.in
index a27707d..4887ba4 100644
--- a/rules/host-mpfr.in
+++ b/rules/host-mpfr.in
@@ -1,3 +1,5 @@
+## SECTION=hosttools_noprompt
+
config HOST_MPFR
select HOST_GMP
bool
diff --git a/rules/host-xz.in b/rules/host-xz.in
index b067b6b..d643811 100644
--- a/rules/host-xz.in
+++ b/rules/host-xz.in
@@ -1,2 +1,4 @@
+## SECTION=hosttools_noprompt
+
config HOST_XZ
bool
diff --git a/rules/host-zlib.in b/rules/host-zlib.in
index c203900..4b85138 100644
--- a/rules/host-zlib.in
+++ b/rules/host-zlib.in
@@ -1,2 +1,4 @@
+## SECTION=hosttools_noprompt
+
config HOST_ZLIB
bool