summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAbdoulaye Walsimou Gaye <awg@embtoolkit.org>2013-12-29 15:02:27 +0100
committerAbdoulaye Walsimou Gaye <awg@embtoolkit.org>2013-12-29 15:02:27 +0100
commitd7a3128c1df9bf307d9404a20aaf5cb91e6de5e3 (patch)
tree024778cc2352d67f6f399162bff3f939173fc11e
parent04a380254de9b2f1b52bcfbfa8953bf95259baa7 (diff)
downloadembtoolkit-d7a3128c1df9bf307d9404a20aaf5cb91e6de5e3.tar.gz
embtoolkit-d7a3128c1df9bf307d9404a20aaf5cb91e6de5e3.tar.bz2
embtoolkit-d7a3128c1df9bf307d9404a20aaf5cb91e6de5e3.tar.xz
Rootfs: move kconfig entries to kconfig/rootfs/
Signed-off-by: Abdoulaye Walsimou Gaye <awg@embtoolkit.org>
-rw-r--r--Kconfig11
-rw-r--r--kconfig/rootfs/fs.kconfig (renamed from kconfig/fs.kconfig)0
-rw-r--r--kconfig/rootfs/rootfs.kconfig29
3 files changed, 33 insertions, 7 deletions
diff --git a/Kconfig b/Kconfig
index 4937561..954ab81 100644
--- a/Kconfig
+++ b/Kconfig
@@ -67,11 +67,11 @@ source "kconfig/strace.kconfig"
endmenu
menu "Target build options"
-source kconfig/targetbuildopts.kconfig
+source "kconfig/targetbuildopts.kconfig"
endmenu
menu "Embtoolkit build options and host tools"
-source kconfig/hosttools-buildopts.kconfig
+source "kconfig/hosttools-buildopts.kconfig"
endmenu
if EMBTK_OS_LINUX
@@ -79,7 +79,7 @@ config EMBTK_BUILD_LINUX_KERNEL
bool "Build linux kernel image"
if EMBTK_BUILD_LINUX_KERNEL
-source kconfig/linux-kernel-build.kconfig
+source "kconfig/linux-kernel-build.kconfig"
endif
endif
@@ -94,8 +94,5 @@ config EMBTK_HAVE_ROOTFS
Select packages in "Packages to include in your root filesystem".
if EMBTK_HAVE_ROOTFS
-source kconfig/fs.kconfig
-source kconfig/mtdutils.kconfig
-source kconfig/squashfs.kconfig
-source kconfig/packages.kconfig
+source "kconfig/rootfs/rootfs.kconfig"
endif
diff --git a/kconfig/fs.kconfig b/kconfig/rootfs/fs.kconfig
index 53b00a6..53b00a6 100644
--- a/kconfig/fs.kconfig
+++ b/kconfig/rootfs/fs.kconfig
diff --git a/kconfig/rootfs/rootfs.kconfig b/kconfig/rootfs/rootfs.kconfig
new file mode 100644
index 0000000..07b88a9
--- /dev/null
+++ b/kconfig/rootfs/rootfs.kconfig
@@ -0,0 +1,29 @@
+################################################################################
+# Embtoolkit
+# Copyright(C) 2013 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 rootfs.kconfig
+# \brief rootfs.kconfig of Embtoolkit
+# \author Abdoulaye Walsimou GAYE <awg@embtoolkit.org>
+# \date December 2013
+################################################################################
+
+source "kconfig/rootfs/fs.kconfig"
+source "kconfig/mtdutils.kconfig"
+source "kconfig/squashfs.kconfig"
+source "kconfig/packages.kconfig"