mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-06 05:04:26 +00:00
16aaca214e
MPC8313ERDB has the option of either enabling NOR or NAND boot in its config file (by commenting out certain #ifdefs). To keep this ability after migrating options to Kconfig, we introduce two MPC8313ERDB configs: one for NOR, and one for NAND. Signed-off-by: Mario Six <mario.six@gdsys.cc>
25 lines
333 B
Text
25 lines
333 B
Text
if TARGET_MPC8313ERDB_NOR
|
|
|
|
config SYS_BOARD
|
|
default "mpc8313erdb"
|
|
|
|
config SYS_VENDOR
|
|
default "freescale"
|
|
|
|
config SYS_CONFIG_NAME
|
|
default "MPC8313ERDB_NOR"
|
|
|
|
endif
|
|
|
|
if TARGET_MPC8313ERDB_NAND
|
|
|
|
config SYS_BOARD
|
|
default "mpc8313erdb"
|
|
|
|
config SYS_VENDOR
|
|
default "freescale"
|
|
|
|
config SYS_CONFIG_NAME
|
|
default "MPC8313ERDB_NAND"
|
|
|
|
endif
|