mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-06 05:04:26 +00:00
c0fed3ac25
As preparation for the upcoming transferring of configurations from header files to Kconfig, a common Kconfig file for all KM boards was created. For the moment, it only sources the other three, more specific, Kconfig files. Therefore, the architecture Kconfig files now include the common Kconfig file. Also, the configuration selection for KM boards was moved from the architecture Kconfig files to the board specific Kconfig files. Signed-off-by: Pascal Linder <pascal.linder@edu.hefr.ch> Signed-off-by: Holger Brunck <holger.brunck@ch.abb.com> Cc: Mario Six <mario.six@gdsys.cc> Cc: Prabhakar Kushwaha <prabhakar.kushwaha@nxp.com> Signed-off-by: Stefan Roese <sr@denx.de>
20 lines
295 B
Text
20 lines
295 B
Text
if TARGET_KMP204X
|
|
|
|
config SYS_BOARD
|
|
default "kmp204x"
|
|
|
|
config SYS_VENDOR
|
|
default "keymile"
|
|
|
|
config SYS_CONFIG_NAME
|
|
default "kmp204x"
|
|
|
|
config BOARD_SPECIFIC_OPTIONS # dummy
|
|
def_bool y
|
|
select ARCH_P2041
|
|
select FSL_DDR_INTERACTIVE
|
|
select PHYS_64BIT
|
|
imply CMD_CRAMFS
|
|
imply FS_CRAMFS
|
|
|
|
endif
|