From 60099890f36754d9fd4c1ec00d9679ba3de5d3b6 Mon Sep 17 00:00:00 2001 From: Abdoulaye Walsimou Gaye Date: Tue, 18 Mar 2014 23:51:32 +0100 Subject: Move kconfig/ to core/ Signed-off-by: Abdoulaye Walsimou Gaye --- core/kconfig/musl.kconfig | 68 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 68 insertions(+) create mode 100644 core/kconfig/musl.kconfig (limited to 'core/kconfig/musl.kconfig') diff --git a/core/kconfig/musl.kconfig b/core/kconfig/musl.kconfig new file mode 100644 index 0000000..0c4488f --- /dev/null +++ b/core/kconfig/musl.kconfig @@ -0,0 +1,68 @@ +################################################################################ +# Embtoolkit +# Copyright(C) 2012-2013 GAYE Abdoulaye Walsimou. +# +# 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 . +# +################################################################################ +# +# \file musl.kconfig +# \brief musl.kconfig of Embtoolkit +# \author Abdoulaye Walsimou GAYE +# \date October 2012 +################################################################################ + + +comment "----------------------------------------------------------------------" +comment "----- musl C library configuration" +comment "----------------------------------------------------------------------" + +choice + prompt "musl version to use" + help + Which musl version to use. + + config EMBTK_MUSL_VERSION_0_9_15 + bool "musl-0.9.15" + select EMBTK_MUSL_NEED_PATCH + config EMBTK_MUSL_VERSION_GIT + bool "Use a branch of musl git repository" + help + see http://git.musl-libc.org/cgit/musl +endchoice + +config EMBTK_MUSL_VERSION_STRING + string + default "0.9.15" if EMBTK_MUSL_VERSION_0_9_15 + default "git" if EMBTK_MUSL_VERSION_GIT + +config EMBTK_MUSL_REFSPEC + string + default "toolchain" + +config EMBTK_MUSL_GIT_BRANCH + string "Branch to use" + default "master" + depends on EMBTK_MUSL_VERSION_GIT + help + The branch of the git repository to use, the default is master. + +config EMBTK_MUSL_GIT_REVISION + string "Checkout a specific revision instead of the latest" + depends on EMBTK_MUSL_VERSION_GIT + help + Chechout a specific revision instead of the latest. + +config EMBTK_MUSL_NEED_PATCH + bool -- cgit v1.2.3