summaryrefslogtreecommitdiff
path: root/core/kconfig/packages.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 /core/kconfig/packages.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 'core/kconfig/packages.kconfig')
-rw-r--r--core/kconfig/packages.kconfig91
1 files changed, 91 insertions, 0 deletions
diff --git a/core/kconfig/packages.kconfig b/core/kconfig/packages.kconfig
new file mode 100644
index 0000000..1103d62
--- /dev/null
+++ b/core/kconfig/packages.kconfig
@@ -0,0 +1,91 @@
+################################################################################
+# Embtoolkit
+# Copyright(C) 2009-2011 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 packages.kconfig
+# \brief packages.kconfig of Embtoolkit
+# \author Abdoulaye Walsimou GAYE <awg@embtoolkit.org>
+# \date May 2009
+################################################################################
+
+#Busybox
+config EMBTK_HAVE_BB
+ bool "Have Busybox in your root filesystem"
+ default y
+
+if EMBTK_HAVE_BB
+menu "Busybox configuration"
+source packages/busybox/busybox.kconfig
+endmenu
+endif
+
+menu "Packages to include in your root filesystem"
+
+menu "Flash manipulation tools"
+source packages/system/mtdutils/mtdutils.kconfig
+endmenu
+
+menu "Compression packages"
+source packages/compression/compression.kconfig
+endmenu
+
+menu "Database libraries/packages"
+source packages/database/database.kconfig
+endmenu
+
+menu "Development libraries/packages"
+source packages/development/development.kconfig
+endmenu
+
+menu "Graphics packages"
+source packages/graphics/graphics.kconfig
+endmenu
+
+menu "Networking packages"
+source packages/net/net.kconfig
+endmenu
+
+menu "Scripting languages"
+source packages/scripting-languages/scripting-languages.kconfig
+endmenu
+
+menu "Security packages"
+source packages/security/security.kconfig
+endmenu
+
+menu "System packages"
+source packages/system/system.kconfig
+endmenu
+
+menu "Miscellaneous packages"
+source packages/misc/misc.kconfig
+endmenu
+
+menu "X window system"
+source packages/x11/x11.kconfig
+endmenu
+
+endmenu
+
+menu "Support native languages in root filesystem"
+source core/kconfig/nls.kconfig
+endmenu
+
+menu "Support timezone in root filesystem"
+source core/kconfig/timez.kconfig
+endmenu