diff options
author | Ralf Baechle <ralf@linux-mips.org> | 2005-10-07 12:06:12 +0100 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2005-10-29 19:32:37 +0100 |
commit | f92c1759a40a85f52b835c21b0ef6ce556b340c5 (patch) | |
tree | 55e76df02c6fb6382d86f3314b23f11a3bb728dc /arch/mips | |
parent | 101b3531a693ad890f33f2f04323592cd376616a (diff) | |
download | op-kernel-dev-f92c1759a40a85f52b835c21b0ef6ce556b340c5.zip op-kernel-dev-f92c1759a40a85f52b835c21b0ef6ce556b340c5.tar.gz |
Document the meaning of the CPU_MIPS32, CPU_MIPS64, CPU_MIPSR1 and
CPU_MIPSR2.
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch/mips')
-rw-r--r-- | arch/mips/Kconfig | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/arch/mips/Kconfig b/arch/mips/Kconfig index b11ed7f..7f826da 100644 --- a/arch/mips/Kconfig +++ b/arch/mips/Kconfig @@ -13,6 +13,9 @@ mainmenu "Linux/MIPS Kernel Configuration" source "init/Kconfig" +# +# These two indicate any levelof the MIPS32 and MIPS64 architecture +# config CPU_MIPS32 bool default y if CPU_MIPS32_R1 || CPU_MIPS32_R2 @@ -21,6 +24,9 @@ config CPU_MIPS64 bool default y if CPU_MIPS64_R1 || CPU_MIPS64_R2 +# +# These two indicate the revision of the architecture, either 32 bot 64 bit. +# config CPU_MIPSR1 bool default y if CPU_MIPS32_R1 || CPU_MIPS64_R1 |