mirror of
https://github.com/AsahiLinux/u-boot
synced 2025-03-04 07:17:17 +00:00
This board is still a non-generic board. Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com> Cc: Rune Torgersen <runet@innovsys.com>
53 lines
885 B
Text
53 lines
885 B
Text
menu "mpc8260 CPU"
|
|
depends on MPC8260
|
|
|
|
config SYS_CPU
|
|
default "mpc8260"
|
|
|
|
choice
|
|
prompt "Target select"
|
|
|
|
config TARGET_ATC
|
|
bool "Support atc"
|
|
|
|
config TARGET_CPU86
|
|
bool "Support CPU86"
|
|
|
|
config TARGET_CPU87
|
|
bool "Support CPU87"
|
|
|
|
config TARGET_EP82XXM
|
|
bool "Support ep82xxm"
|
|
|
|
config TARGET_GW8260
|
|
bool "Support gw8260"
|
|
|
|
config TARGET_IPHASE4539
|
|
bool "Support IPHASE4539"
|
|
|
|
config TARGET_MUAS3001
|
|
bool "Support muas3001"
|
|
|
|
config TARGET_PM826
|
|
bool "Support PM826"
|
|
|
|
config TARGET_PM828
|
|
bool "Support PM828"
|
|
|
|
config TARGET_KM82XX
|
|
bool "Support km82xx"
|
|
|
|
endchoice
|
|
|
|
source "board/atc/Kconfig"
|
|
source "board/cpu86/Kconfig"
|
|
source "board/cpu87/Kconfig"
|
|
source "board/ep82xxm/Kconfig"
|
|
source "board/gw8260/Kconfig"
|
|
source "board/iphase4539/Kconfig"
|
|
source "board/keymile/km82xx/Kconfig"
|
|
source "board/muas3001/Kconfig"
|
|
source "board/pm826/Kconfig"
|
|
source "board/pm828/Kconfig"
|
|
|
|
endmenu
|