mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-11 23:47:24 +00:00
23cf6344c0
This converts the following to Kconfig: CONFIG_AT91SAM9G20EK CONFIG_AT91SAM9260EK CONFIG_AT91SAM9G20EK_2MMC Cc: Eugen Hristev <eugen.hristev@microchip.com> Signed-off-by: Tom Rini <trini@konsulko.com>
27 lines
402 B
Text
27 lines
402 B
Text
if TARGET_AT91SAM9260EK
|
|
|
|
config SYS_BOARD
|
|
default "at91sam9260ek"
|
|
|
|
config SYS_VENDOR
|
|
default "atmel"
|
|
|
|
config SYS_CONFIG_NAME
|
|
default "at91sam9260ek"
|
|
|
|
choice
|
|
prompt "Evaluation board"
|
|
|
|
config AT91SAM9G20EK
|
|
bool "Atmel AT91SAM9G20 EK"
|
|
|
|
config AT91SAM9260EK
|
|
bool "Atmel AT91SAM9260 EK"
|
|
|
|
endchoice
|
|
|
|
config AT91SAM9G20EK_2MMC
|
|
bool "Atmel AT91SAM9G20 EK 2MMC variant"
|
|
depends on AT91SAM9260EK
|
|
|
|
endif
|