summaryrefslogtreecommitdiff
path: root/kconfig/eglibc.kconfig
diff options
context:
space:
mode:
authorAbdoulaye Walsimou Gaye <awg@embtoolkit.org>2014-03-18 23:51:32 +0100
committerAbdoulaye Walsimou Gaye <awg@embtoolkit.org>2014-03-18 23:51:32 +0100
commit60099890f36754d9fd4c1ec00d9679ba3de5d3b6 (patch)
tree5379b7f6694de0b0c954e9c5388612d8ba6c1a1d /kconfig/eglibc.kconfig
parentef94bcb8905c8c8fefc272dbcb2d5ee0c4efbe35 (diff)
downloadembtoolkit-60099890f36754d9fd4c1ec00d9679ba3de5d3b6.tar.gz
embtoolkit-60099890f36754d9fd4c1ec00d9679ba3de5d3b6.tar.bz2
embtoolkit-60099890f36754d9fd4c1ec00d9679ba3de5d3b6.tar.xz
Move kconfig/ to core/
Signed-off-by: Abdoulaye Walsimou Gaye <awg@embtoolkit.org>
Diffstat (limited to 'kconfig/eglibc.kconfig')
-rw-r--r--kconfig/eglibc.kconfig114
1 files changed, 0 insertions, 114 deletions
diff --git a/kconfig/eglibc.kconfig b/kconfig/eglibc.kconfig
deleted file mode 100644
index b5d05b2..0000000
--- a/kconfig/eglibc.kconfig
+++ /dev/null
@@ -1,114 +0,0 @@
-################################################################################
-# Embtoolkit
-# Copyright(C) 2009-2012 Abdoulaye Walsimou GAYE.
-#
-# This program is free software: you can redistribute it and/or modify
-# it under the terms of the GNU General Public License as published by
-# the Free Software Foundation, either version 2 of the License, or
-# (at your option) any later version.
-#
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-# GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with this program. If not, see <http://www.gnu.org/licenses/>.
-#
-################################################################################
-#
-# \file eglibc.kconfig
-# \brief eglibc.kconfig of Embtoolkit
-# \author Abdoulaye Walsimou GAYE <awg@embtoolkit.org>
-# \date May 2009
-################################################################################
-
-config EMBTK_EGLIBC_VERSION_SVN
- bool
- default y
-
-config EMBTK_EGLIBC_REFSPEC
- string
- default "toolchain"
-
-choice
- prompt "EGLIBC branch to checkout"
- help
- EGLIBC branch to use.
-
- config EMBTK_EGLIBC_VERSION_2_17
- bool "eglibc-2.17"
- config EMBTK_EGLIBC_VERSION_TRUNK
- bool "trunk (development version)"
-endchoice
-
-config EMBTK_EGLIBC_SVN_REVISION
- int "EGLIBC SVN revision to checkout (Please read the help below)"
- help
- EGLIBC svn revision to use.
- This revision is the latest at EmbToolkit release. If at the
- moment you build your toolchain new revision is available,
- you can increase this value.
-
- default 25090 if EMBTK_EGLIBC_VERSION_2_17
- default 25088 if EMBTK_EGLIBC_VERSION_TRUNK
-
-comment "At EmbToolkit release, valid eglibc svn revisions are:"
-comment "svn revision 25090 for eglibc-2.17"
-comment "svn revision 25088 for eglibc-trunk (development version)"
-comment ""
-
-config EMBTK_EGLIBC_SVN_BRANCH
- string
- default "branches/eglibc-2_17" if EMBTK_EGLIBC_VERSION_2_17
- default "trunk" if EMBTK_EGLIBC_VERSION_TRUNK
-
-config EMBTK_EGLIBC_VERSION_STRING
- string
- default "2.17" if EMBTK_EGLIBC_VERSION_2_17
- default "trunk" if EMBTK_EGLIBC_VERSION_TRUNK
-
-#Does we need patches?
-config EMBTK_EGLIBC_NEED_PATCH
- bool
- default y
-
-config EMBTK_EGLIBC_HEADERS_SVN_REVISION
- int
- default EMBTK_EGLIBC_SVN_REVISION
-config EMBTK_EGLIBC_HEADERS_SVN_BRANCH
- string
- default EMBTK_EGLIBC_SVN_BRANCH
-config EMBTK_EGLIBC_HEADEERS_VERSION_STRING
- string
- default EMBTK_EGLIBC_VERSION_STRING
-config EMBTK_EGLIBC_HEADERS_NEED_PATCH
- bool
- default EMBTK_EGLIBC_NEED_PATCH
-config EMBTK_EGLIBC_HEADERS_VERSION_SVN
- bool
- default EMBTK_EGLIBC_VERSION_SVN
-
-comment "------------------------------------"
-comment "----- EGLIBC options configuration"
-comment "------------------------------------"
-
-config EMBTK_EGLIBC_DISABLE_VERSIONING
- bool
- help
- EGLIBC supports building the library without compatibility code
- and symbol versioning.
- This feature allows reduction of EGLIBC's footprint by omitting
- functionality that implements older APIs.
- To build EGLIBC without compatibility code and symbol
- versioning, answer yes here.
-
-
-if EMBTK_EGLIBC_VERSION_2_17
-source "kconfig/eglibc-kconfigs/eglibc-2.17.kconfig"
-endif
-
-if EMBTK_EGLIBC_VERSION_TRUNK
-source "kconfig/eglibc-kconfigs/eglibc-trunk.kconfig"
-endif
-