diff options
author | Daniel Schwierzeck <daniel.schwierzeck@gmail.com> | 2014-10-26 14:14:07 +0100 |
---|---|---|
committer | Daniel Schwierzeck <daniel.schwierzeck@gmail.com> | 2014-11-01 18:18:04 +0100 |
commit | b9863b6de22b48dd863d4385f5a5656ba84138a3 (patch) | |
tree | 25d0e799c7c3c74deb7f9e9a91971a05c35a3b16 | |
parent | 02611cbb7ca56d5dc405cf616ea570ae7bce43fa (diff) |
MIPS: kconfig: globally define CONFIG_SYS_CPU for MIPS
Now the user can select the CPU type for each target. Thus
CONFIG_SYS_CPU could be set globally.
Signed-off-by: Daniel Schwierzeck <daniel.schwierzeck@gmail.com>
-rw-r--r-- | arch/mips/Kconfig | 4 | ||||
-rw-r--r-- | board/dbau1x00/Kconfig | 3 | ||||
-rw-r--r-- | board/imgtec/malta/Kconfig | 3 | ||||
-rw-r--r-- | board/micronas/vct/Kconfig | 3 | ||||
-rw-r--r-- | board/pb1x00/Kconfig | 3 | ||||
-rw-r--r-- | board/qemu-mips/Kconfig | 3 |
6 files changed, 4 insertions, 15 deletions
diff --git a/arch/mips/Kconfig b/arch/mips/Kconfig index 623ec66a849..b974e8ff07e 100644 --- a/arch/mips/Kconfig +++ b/arch/mips/Kconfig @@ -4,6 +4,10 @@ menu "MIPS architecture" config SYS_ARCH default "mips" +config SYS_CPU + default "mips32" if CPU_MIPS32_R1 || CPU_MIPS32_R2 + default "mips64" if CPU_MIPS64_R1 || CPU_MIPS64_R2 + config USE_PRIVATE_LIBGCC default y diff --git a/board/dbau1x00/Kconfig b/board/dbau1x00/Kconfig index 1a8946d06ca..3e3cb773522 100644 --- a/board/dbau1x00/Kconfig +++ b/board/dbau1x00/Kconfig @@ -1,8 +1,5 @@ if TARGET_DBAU1X00 -config SYS_CPU - default "mips32" - config SYS_BOARD default "dbau1x00" diff --git a/board/imgtec/malta/Kconfig b/board/imgtec/malta/Kconfig index 401962c4bdd..4c06d0c0d80 100644 --- a/board/imgtec/malta/Kconfig +++ b/board/imgtec/malta/Kconfig @@ -1,8 +1,5 @@ if TARGET_MALTA -config SYS_CPU - default "mips32" - config SYS_BOARD default "malta" diff --git a/board/micronas/vct/Kconfig b/board/micronas/vct/Kconfig index 75046fe7ab8..7c69453d1bc 100644 --- a/board/micronas/vct/Kconfig +++ b/board/micronas/vct/Kconfig @@ -1,8 +1,5 @@ if TARGET_VCT -config SYS_CPU - default "mips32" - config SYS_BOARD default "vct" diff --git a/board/pb1x00/Kconfig b/board/pb1x00/Kconfig index ef2844a4974..251db6ab637 100644 --- a/board/pb1x00/Kconfig +++ b/board/pb1x00/Kconfig @@ -1,8 +1,5 @@ if TARGET_PB1X00 -config SYS_CPU - default "mips32" - config SYS_BOARD default "pb1x00" diff --git a/board/qemu-mips/Kconfig b/board/qemu-mips/Kconfig index e4d9663c2de..394534fcc55 100644 --- a/board/qemu-mips/Kconfig +++ b/board/qemu-mips/Kconfig @@ -1,8 +1,5 @@ if TARGET_QEMU_MIPS -config SYS_CPU - default "mips32" - config SYS_BOARD default "qemu-mips" |