summaryrefslogtreecommitdiffstats
path: root/nuttx/arch/sh
diff options
context:
space:
mode:
authorpatacongo <patacongo@7fd9a85b-ad96-42d3-883c-3090e2eb8679>2012-04-17 22:54:31 +0000
committerpatacongo <patacongo@7fd9a85b-ad96-42d3-883c-3090e2eb8679>2012-04-17 22:54:31 +0000
commit940b78049802fcea4e56fc2fe5895e12229bc92e (patch)
treeae1daa0b0ac8f63a4dae65062513a740b210dee8 /nuttx/arch/sh
parent0fdb9512945b7d83b8bfaffcf8454d570a5efd49 (diff)
More Kconfig stuff
git-svn-id: https://nuttx.svn.sourceforge.net/svnroot/nuttx/trunk@4628 7fd9a85b-ad96-42d3-883c-3090e2eb8679
Diffstat (limited to 'nuttx/arch/sh')
-rw-r--r--nuttx/arch/sh/Kconfig4
-rw-r--r--nuttx/arch/sh/src/common/Kconfig7
-rw-r--r--nuttx/arch/sh/src/m16c/Kconfig7
-rw-r--r--nuttx/arch/sh/src/sh1/Kconfig7
4 files changed, 25 insertions, 0 deletions
diff --git a/nuttx/arch/sh/Kconfig b/nuttx/arch/sh/Kconfig
index 8735dc2387..bfb1f5973a 100644
--- a/nuttx/arch/sh/Kconfig
+++ b/nuttx/arch/sh/Kconfig
@@ -33,4 +33,8 @@ config ARCH_CHIP
default "sh1" if ARCH_SH1
default "m16c" if ARCH_M16C
+source arch/sh/src/common/Kconfig
+source arch/sh/src/m16c/Kconfig
+source arch/sh/src/sh1/Kconfig
+
endif
diff --git a/nuttx/arch/sh/src/common/Kconfig b/nuttx/arch/sh/src/common/Kconfig
new file mode 100644
index 0000000000..c2e65d2ac1
--- /dev/null
+++ b/nuttx/arch/sh/src/common/Kconfig
@@ -0,0 +1,7 @@
+#
+# For a description of the syntax of this configuration file,
+# see misc/tools/kconfig-language.txt.
+#
+
+if ARCH_SH
+endif
diff --git a/nuttx/arch/sh/src/m16c/Kconfig b/nuttx/arch/sh/src/m16c/Kconfig
new file mode 100644
index 0000000000..9d510e0371
--- /dev/null
+++ b/nuttx/arch/sh/src/m16c/Kconfig
@@ -0,0 +1,7 @@
+#
+# For a description of the syntax of this configuration file,
+# see misc/tools/kconfig-language.txt.
+#
+
+if ARCH_M16C
+endif
diff --git a/nuttx/arch/sh/src/sh1/Kconfig b/nuttx/arch/sh/src/sh1/Kconfig
new file mode 100644
index 0000000000..b0405f2f52
--- /dev/null
+++ b/nuttx/arch/sh/src/sh1/Kconfig
@@ -0,0 +1,7 @@
+#
+# For a description of the syntax of this configuration file,
+# see misc/tools/kconfig-language.txt.
+#
+
+if ARCH_SH1
+endif