mirror of
https://github.com/AsahiLinux/u-boot
synced 2025-01-23 18:35:11 +00:00
c3a9f9b2b9
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>
31 lines
635 B
Text
31 lines
635 B
Text
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
# Copyright (c) Siemens AG, 2018-2023
|
|
#
|
|
# Authors:
|
|
# Le Jin <le.jin@siemens.com>
|
|
# Jan Kiszka <jan.kiszka@siemens.com>
|
|
|
|
if TARGET_IOT2050_A53
|
|
|
|
config SYS_BOARD
|
|
default "iot2050"
|
|
|
|
config SYS_VENDOR
|
|
default "siemens"
|
|
|
|
config SYS_CONFIG_NAME
|
|
default "iot2050"
|
|
|
|
config IOT2050_BOOT_SWITCH
|
|
bool "Disable eMMC boot via USER button (Advanced version only)"
|
|
default y
|
|
|
|
config IOT2050_EMBED_OTPCMD
|
|
bool "Embed OTP programming data"
|
|
help
|
|
Embed signed OTP programming data 'otpcmd.bin' into the firmware
|
|
image. This data will be evaluated and executed on first boot of the
|
|
device.
|
|
|
|
endif
|