mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-06 05:04:26 +00:00
ddc935fc09
The MPC8349EMDS config file contains config options to enable SDRAM support. To keep this ability after the Kconfig migration, create a new MPC8349EMDS_SDRAM board that enables the SDRAM support and remove the SDRAM support from the original board. Signed-off-by: Mario Six <mario.six@gdsys.cc>
25 lines
327 B
Text
25 lines
327 B
Text
if TARGET_MPC8349EMDS
|
|
|
|
config SYS_BOARD
|
|
default "mpc8349emds"
|
|
|
|
config SYS_VENDOR
|
|
default "freescale"
|
|
|
|
config SYS_CONFIG_NAME
|
|
default "MPC8349EMDS"
|
|
|
|
endif
|
|
|
|
if TARGET_MPC8349EMDS_SDRAM
|
|
|
|
config SYS_BOARD
|
|
default "mpc8349emds"
|
|
|
|
config SYS_VENDOR
|
|
default "freescale"
|
|
|
|
config SYS_CONFIG_NAME
|
|
default "MPC8349EMDS_SDRAM"
|
|
|
|
endif
|