forked from Minki/linux
28794d34ec
CONFIG_PPC_MULTIPLATFORM is a remain of the pre-powerpc days and isn't really meaningful anymore. It was basically equivalent to PPC64 || 6xx. This removes it along with the following changes: - 32-bit platforms that relied on PPC32 && PPC_MULTIPLATFORM now rely on 6xx which is what they want anyway. - A new symbol, PPC_BOOK3S, is defined that represent compliance with the "Server" variant of the architecture. This is set when either 6xx or PPC64 is set and open the door for future BOOK3E 64-bit. - 64-bit platforms that relied on PPC64 && PPC_MULTIPLATFORM now use PPC64 && PPC_BOOK3S - A separate and selectable CONFIG_PPC_OF_BOOT_TRAMPOLINE option is now used to control the use of prom_init.c Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
19 lines
475 B
Plaintext
19 lines
475 B
Plaintext
config AMIGAONE
|
|
bool "Eyetech AmigaOne/MAI Teron"
|
|
depends on 6xx && BROKEN_ON_SMP
|
|
select PPC_I8259
|
|
select PPC_INDIRECT_PCI
|
|
select PPC_UDBG_16550
|
|
select PCI
|
|
select NOT_COHERENT_CACHE
|
|
select CHECK_CACHE_COHERENCY
|
|
select DEFAULT_UIMAGE
|
|
select PCSPKR_PLATFORM
|
|
help
|
|
Select AmigaOne for the following machines:
|
|
- AmigaOne SE/Teron CX (G3 only)
|
|
- AmigaOne XE/Teron PX
|
|
- uA1/Teron mini
|
|
More information is available at:
|
|
<http://amigaone-linux.sourceforge.net/>.
|