mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-06 05:04:26 +00:00
1eba723c72
LX2160AQDS is a development board that supports LX2160A family SoCs. This patch add base support for this board. Signed-off-by: Wasim Khan <wasim.khan@nxp.com> Signed-off-by: Sriram Dash <sriram.dash@nxp.com> Signed-off-by: Pankaj Bansal <pankaj.bansal@nxp.com> Signed-off-by: Udit Agarwal <udit.agarwal@nxp.com> [PK: Sqaush patch for "secure boot defconfig" & add maintainer] Signed-off-by: Prabhakar Kushwaha <prabhakar.kushwaha@nxp.com>
34 lines
468 B
Text
34 lines
468 B
Text
if TARGET_LX2160ARDB
|
|
|
|
config SYS_BOARD
|
|
default "lx2160a"
|
|
|
|
config SYS_VENDOR
|
|
default "freescale"
|
|
|
|
config SYS_SOC
|
|
default "fsl-layerscape"
|
|
|
|
config SYS_CONFIG_NAME
|
|
default "lx2160ardb"
|
|
|
|
source "board/freescale/common/Kconfig"
|
|
endif
|
|
|
|
if TARGET_LX2160AQDS
|
|
|
|
config SYS_BOARD
|
|
default "lx2160a"
|
|
|
|
config SYS_VENDOR
|
|
default "freescale"
|
|
|
|
config SYS_SOC
|
|
default "fsl-layerscape"
|
|
|
|
config SYS_CONFIG_NAME
|
|
default "lx2160aqds"
|
|
|
|
source "board/freescale/common/Kconfig"
|
|
endif
|
|
|