diff options
author | Mario Six <mario.six@gdsys.cc> | 2019-01-21 09:17:40 +0100 |
---|---|---|
committer | Mario Six <mario.six@gdsys.cc> | 2019-05-21 07:51:36 +0200 |
commit | ddc935fc093ffacd9aeeb8fe12cd7ebeeefc87dd (patch) | |
tree | 6dcb3c1ac42f843c61bf99ee4c1c17ab8c5ad8d6 /board | |
parent | 10590363b55658029616aa79694880a30a9764c3 (diff) | |
download | u-boot-ddc935fc093ffacd9aeeb8fe12cd7ebeeefc87dd.tar.gz u-boot-ddc935fc093ffacd9aeeb8fe12cd7ebeeefc87dd.tar.bz2 u-boot-ddc935fc093ffacd9aeeb8fe12cd7ebeeefc87dd.zip |
mpc83xx: Make distinct MPC8349EMDS_SDRAM board
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>
Diffstat (limited to 'board')
-rw-r--r-- | board/freescale/mpc8349emds/Kconfig | 13 | ||||
-rw-r--r-- | board/freescale/mpc8349emds/MAINTAINERS | 1 |
2 files changed, 14 insertions, 0 deletions
diff --git a/board/freescale/mpc8349emds/Kconfig b/board/freescale/mpc8349emds/Kconfig index 51f0b34f39..d154118079 100644 --- a/board/freescale/mpc8349emds/Kconfig +++ b/board/freescale/mpc8349emds/Kconfig @@ -10,3 +10,16 @@ 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 diff --git a/board/freescale/mpc8349emds/MAINTAINERS b/board/freescale/mpc8349emds/MAINTAINERS index e6648d66a0..b676c07492 100644 --- a/board/freescale/mpc8349emds/MAINTAINERS +++ b/board/freescale/mpc8349emds/MAINTAINERS @@ -4,3 +4,4 @@ S: Orphan (since 2018-05) F: board/freescale/mpc8349emds/ F: include/configs/MPC8349EMDS.h F: configs/MPC8349EMDS_defconfig +F: configs/MPC8349EMDS_SDRAM_defconfig |