mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-12-14 07:13:03 +00:00
5710d0a853
Currently each set of board targets from a vendor is selected inside the board directory for that vendor. This has the problem of multiple targets, one from each vendor, being selectable at the same time. For instance you can select both TARGET_AM654_A53_EVM and TARGET_IOT2050_A53 in the same build. To fix this we need to move the target board choice to a common location for each parent SoC selection. Do this in arch/arm/mach-k3. Signed-off-by: Andrew Davis <afd@ti.com>
40 lines
638 B
Text
40 lines
638 B
Text
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
# Copyright (C) 2021 Texas Instruments Incorporated - https://www.ti.com/
|
|
# David Huang <d-huang@ti.com>
|
|
|
|
if TARGET_J721S2_A72_EVM
|
|
|
|
config SYS_BOARD
|
|
default "j721s2"
|
|
|
|
config SYS_VENDOR
|
|
default "ti"
|
|
|
|
config SYS_CONFIG_NAME
|
|
default "j721s2_evm"
|
|
|
|
config ENV_SOURCE_FILE
|
|
default "j721s2"
|
|
|
|
source "board/ti/common/Kconfig"
|
|
|
|
endif
|
|
|
|
if TARGET_J721S2_R5_EVM
|
|
|
|
config SYS_BOARD
|
|
default "j721s2"
|
|
|
|
config SYS_VENDOR
|
|
default "ti"
|
|
|
|
config SYS_CONFIG_NAME
|
|
default "j721s2_evm"
|
|
|
|
config ENV_SOURCE_FILE
|
|
default "j721s2"
|
|
|
|
source "board/ti/common/Kconfig"
|
|
|
|
endif
|