mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-12-15 06:55:13 +08:00
6fd09c9afa
The top-level platform selection is mostly meaningless these days after almost everything is sorted below the CONFIG_ARCH_MULTIPLATFORM, with the only exception being the 20+ year old StrongARM based machines. Make this more consistent by removing the entire choice statement and moving the StrongARM specific options into regular platform specific Kconfig files. The three platforms (footbridge, rpc and sa1100) are still mutually exclusive and cannot coexist with other ARMv4/v5 machines, but since there are only three of them and we will not add more, this can be expressed using Kconfig 'depends on' statements. Signed-off-by: Arnd Bergmann <arnd@arndb.de>
14 lines
329 B
Plaintext
14 lines
329 B
Plaintext
# SPDX-License-Identifier: GPL-2.0-only
|
|
config ARCH_NSPIRE
|
|
bool "TI-NSPIRE based"
|
|
depends on ARCH_MULTI_V4T
|
|
depends on CPU_LITTLE_ENDIAN
|
|
select CPU_ARM926T
|
|
select GENERIC_IRQ_CHIP
|
|
select ARM_AMBA
|
|
select ARM_VIC
|
|
select ARM_TIMER_SP804
|
|
select NSPIRE_TIMER
|
|
help
|
|
This enables support for systems using the TI-NSPIRE CPU
|