summaryrefslogtreecommitdiff
path: root/Kconfig
diff options
context:
space:
mode:
authorAbdoulaye Walsimou Gaye <walsimou@walsimou.com>2009-05-12 02:46:17 +0200
committerAbdoulaye Walsimou Gaye <walsimou@walsimou.com>2009-05-12 02:46:17 +0200
commit8c0ea1194bc0905926fb9e211c3356f2348c7ca7 (patch)
treeba98e07ed70e19ef2b60b5ae3206bcd2ad5f3b51 /Kconfig
downloadembtoolkit-8c0ea1194bc0905926fb9e211c3356f2348c7ca7.tar.gz
embtoolkit-8c0ea1194bc0905926fb9e211c3356f2348c7ca7.tar.bz2
embtoolkit-8c0ea1194bc0905926fb9e211c3356f2348c7ca7.tar.xz
Embtoolkit: Fisrt commit
This is the first commit in the embedded system toolkit git repository, formaly embtoolkit. This porject aims to design a tool which helps on building an embedded linux system. The goal of this porject is to use EGLIBC as C Library for linux systems generated. This initial commit is manely just a backup in order to save work done. Signed-off-by: Abdoulaye Walsimou Gaye <walsimou@walsimou.com>
Diffstat (limited to 'Kconfig')
-rw-r--r--Kconfig67
1 files changed, 67 insertions, 0 deletions
diff --git a/Kconfig b/Kconfig
new file mode 100644
index 0000000..6c9a58b
--- /dev/null
+++ b/Kconfig
@@ -0,0 +1,67 @@
+#########################################################################################
+# GAYE Abdoulaye Walsimou, <walsimou@walsimou.com>
+# Copyright(C) 2009 GAYE Abdoulaye Walsimou. All rights reserved.
+# For Copyrright from linux kernel's build/configure system, see their source code
+#
+# This program is free software; you can distribute it and/or modify it
+# under the terms of the GNU General Public License
+# (Version 2 or later) published by the Free Software Foundation.
+#
+# This program is distributed in the hope 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, write to the Free Software Foundation, Inc.,
+# 59 Temple Place - Suite 330, Boston MA 02111-1307, USA.
+#########################################################################################
+#
+# \file Kconfig
+# \brief Kconfig of Embtoolkit
+# \author GAYE Abdoulaye Walsimou, <walsimou@walsimou.com>
+# \date May 2009
+#########################################################################################
+mainmenu "Embedded toolkit configuration"
+
+config EMBTK_DOTCONFIG
+ bool
+ default y
+
+menu "Architecture Selection"
+source "kconfig/arch.kconfig"
+endmenu
+
+menu "Architecture Variant"
+source "kconfig/arch_variant.kconfig"
+endmenu
+
+menu "Toolchain configuration"
+menu "EGLIBC C library"
+source "kconfig/eglibc.kconfig"
+
+endmenu
+
+menu "GCC compiler"
+source "kconfig/gcc.kconfig"
+endmenu
+
+menu "Binutils"
+source "kconfig/binutils.kconfig"
+endmenu
+
+menu "MPFR"
+source "kconfig/mpfrhost.kconfig"
+endmenu
+
+menu "Linux kernel headers"
+source "kconfig/linux.kconfig"
+endmenu
+
+endmenu
+
+menu "Root filesystem build"
+menu "Packages selection"
+source "kconfig/packages.kconfig"
+endmenu
+endmenu