mirror of
https://source.denx.de/u-boot/u-boot.git
synced 2025-08-19 13:41:31 +02:00
Add all functions to read each SOM option from the EEPROM image and detect whether it's the correct product for this image. Signed-off-by: Daniel Schultz <d.schultz@phytec.de>
38 lines
688 B
Plaintext
38 lines
688 B
Plaintext
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
# Copyright (C) 2021 PHYTEC America, LLC - https://www.phytec.com
|
|
# Author: Matt McKee <mmckee@phytec.com>
|
|
#
|
|
# Copyright (C) 2022 - 2024 PHYTEC Messtechnik GmbH
|
|
# Author: Wadim Egorov <w.egorov@phytec.de>
|
|
|
|
if TARGET_PHYCORE_AM64X_A53
|
|
|
|
config SYS_BOARD
|
|
default "phycore_am64x"
|
|
|
|
config SYS_VENDOR
|
|
default "phytec"
|
|
|
|
config SYS_CONFIG_NAME
|
|
default "phycore_am64x"
|
|
|
|
source "board/phytec/common/Kconfig"
|
|
|
|
endif
|
|
|
|
if TARGET_PHYCORE_AM64X_R5
|
|
|
|
config SYS_BOARD
|
|
default "phycore_am64x"
|
|
|
|
config SYS_VENDOR
|
|
default "phytec"
|
|
|
|
config SYS_CONFIG_NAME
|
|
default "phycore_am64x"
|
|
|
|
source "board/phytec/common/Kconfig"
|
|
|
|
endif
|