mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-06 05:04:26 +00:00
904c47fc7d
vme8349.h contains two separate boards: The vme8349 itself, and the caddy2 board. The caddy2 board is chosen by setting certain config variables. Create a proper config file for the caddy2 board to make Kconfig migration easier. Furthermore, simplify the vme8349 and caddy2 configs by keeping only the options necessary for each board. Signed-off-by: Mario Six <mario.six@gdsys.cc>
25 lines
277 B
Text
25 lines
277 B
Text
if TARGET_VME8349
|
|
|
|
config SYS_BOARD
|
|
default "vme8349"
|
|
|
|
config SYS_VENDOR
|
|
default "esd"
|
|
|
|
config SYS_CONFIG_NAME
|
|
default "vme8349"
|
|
|
|
endif
|
|
|
|
if TARGET_CADDY2
|
|
|
|
config SYS_BOARD
|
|
default "vme8349"
|
|
|
|
config SYS_VENDOR
|
|
default "esd"
|
|
|
|
config SYS_CONFIG_NAME
|
|
default "caddy2"
|
|
|
|
endif
|