[coreboot-gerrit] New patch to review for coreboot: c9639bb mips32: add dummy Kconfig files

guang li (liguangbz@gmail.com) gerrit at coreboot.org
Tue May 7 13:24:31 CEST 2013


guang li (liguangbz at gmail.com) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/3214

-gerrit

commit c9639bb9fc69174ee7d99f217d0b56fd49149577
Author: liguang <liguangbz at gmail.com>
Date:   Tue May 7 19:24:00 2013 +0800

    mips32: add dummy Kconfig files
    
    Change-Id: I593d628bc580958d118a5ca5746f6450c2060565
    Signed-off-by: liguang <liguangbz at gmail.com>
---
 src/Kconfig                         | 8 ++++++++
 src/arch/mips32/Kconfig             | 3 +++
 src/cpu/loongson/Kconfig            | 9 +++++++++
 src/cpu/loongson/loongson2e/Kconfig | 0
 4 files changed, 20 insertions(+)

diff --git a/src/Kconfig b/src/Kconfig
index ce7f400..c07b944 100644
--- a/src/Kconfig
+++ b/src/Kconfig
@@ -226,6 +226,10 @@ config ARCH_ARMV7
 	bool
 	default n
 
+config ARCH_MIPS32
+	bool
+	default n
+
 # Warning: The file is included whether or not the if is here.
 # but the if controls how the evaluation occurs.
 if ARCH_X86
@@ -236,6 +240,10 @@ if ARCH_ARMV7
 source src/arch/armv7/Kconfig
 endif
 
+if ARCH_MIPS32
+source src/arch/mips32/Kconfig
+endif
+
 menu "Chipset"
 
 comment "CPU"
diff --git a/src/arch/mips32/Kconfig b/src/arch/mips32/Kconfig
new file mode 100644
index 0000000..a0d3daa
--- /dev/null
+++ b/src/arch/mips32/Kconfig
@@ -0,0 +1,3 @@
+menu "Architecture (mips32)"
+
+endmenu
diff --git a/src/cpu/loongson/Kconfig b/src/cpu/loongson/Kconfig
new file mode 100644
index 0000000..a997ff6
--- /dev/null
+++ b/src/cpu/loongson/Kconfig
@@ -0,0 +1,9 @@
+config CPU_LOONGSON_2E
+	depends on ARCH_MIPS32
+	bool
+	default n
+
+if CPU_LOONGSON_2E
+source src/cpu/loongson/loongson2e/Kconfig
+endif
+
diff --git a/src/cpu/loongson/loongson2e/Kconfig b/src/cpu/loongson/loongson2e/Kconfig
new file mode 100644
index 0000000..e69de29



More information about the coreboot-gerrit mailing list