mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-05 20:54:31 +00:00
3049a583f3
LS2081ARDB board is similar to LS2080ARDB board with few differences It hosts LS2081A SoC Default boot source is QSPI-boot It does not have IFC interface RTC and QSPI flash device are different It provides QIXIS access via I2C Signed-off-by: Priyanka Jain <priyanka.jain@nxp.com> Signed-off-by: Santan Kumar <santan.kumar@nxp.com> Reviewed-by: York Sun <york.sun@nxp.com>
36 lines
476 B
Text
36 lines
476 B
Text
|
|
if TARGET_LS2080ARDB
|
|
|
|
config SYS_BOARD
|
|
default "ls2080ardb"
|
|
|
|
config SYS_VENDOR
|
|
default "freescale"
|
|
|
|
config SYS_SOC
|
|
default "fsl-layerscape"
|
|
|
|
config SYS_CONFIG_NAME
|
|
default "ls2080ardb"
|
|
|
|
source "board/freescale/common/Kconfig"
|
|
|
|
endif
|
|
|
|
if TARGET_LS2081ARDB
|
|
|
|
config SYS_BOARD
|
|
default "ls2080ardb"
|
|
|
|
config SYS_VENDOR
|
|
default "freescale"
|
|
|
|
config SYS_SOC
|
|
default "fsl-layerscape"
|
|
|
|
config SYS_CONFIG_NAME
|
|
default "ls2080ardb"
|
|
|
|
source "board/freescale/common/Kconfig"
|
|
|
|
endif
|