summaryrefslogtreecommitdiffstats
path: root/rules/libc.in
diff options
context:
space:
mode:
authorMarc Kleine-Budde <mkl@pengutronix.de>2009-01-25 11:31:34 +0000
committerMarc Kleine-Budde <mkl@pengutronix.de>2009-01-25 11:31:34 +0000
commit85c4ca86780209067ae4ab1e7d088d65024b8383 (patch)
treed1799f7de9dc4a62174bd66110aa93332df343a7 /rules/libc.in
parent8ef9bc8e50429a4333b75e6ce2f611f07f8bd6ca (diff)
downloadptxdist-85c4ca86780209067ae4ab1e7d088d65024b8383.tar.gz
ptxdist-85c4ca86780209067ae4ab1e7d088d65024b8383.tar.xz
* libc.in:
added option to switch of the libc. might be usefull for bare metal systems git-svn-id: https://svn.pengutronix.de/svn/ptxdist/trunks/ptxdist-trunk@9624 33e552b5-05e3-0310-8538-816dae2090ed
Diffstat (limited to 'rules/libc.in')
-rw-r--r--rules/libc.in10
1 files changed, 8 insertions, 2 deletions
diff --git a/rules/libc.in b/rules/libc.in
index 8d15d63de..8ad5ef95e 100644
--- a/rules/libc.in
+++ b/rules/libc.in
@@ -1,9 +1,15 @@
## SECTION=core
-menu "c library "
+menuconfig LIBC
+ tristate
+ prompt "c library "
+ default y
+
+if LIBC
choice
prompt "c library "
+ default GLIBC
config GLIBC
bool
@@ -102,4 +108,4 @@ config LIBC_NSL
select GLIBC_NSL if GLIBC
select UCLIBC_NSL if UCLIBC
-endmenu
+endif