blob: 516dc8e2020148e85954ac9f7866e60a4d86722f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
# SPDX-License-Identifier: GPL-2.0-or-later OR MIT
#
# Copyright (C) 2024 PHYTEC America LLC
# Author: Garrett Giordano <ggiordano@phytec.com>
if TARGET_PHYCORE_AM62AX_A53
config SYS_BOARD
default "phycore_am62ax"
config SYS_VENDOR
default "phytec"
config SYS_CONFIG_NAME
default "phycore_am62ax"
source "board/phytec/common/Kconfig"
endif
if TARGET_PHYCORE_AM62AX_R5
config SYS_BOARD
default "phycore_am62ax"
config SYS_VENDOR
default "phytec"
config SYS_CONFIG_NAME
default "phycore_am62ax"
config SPL_LDSCRIPT
default "arch/arm/mach-omap2/u-boot-spl.lds"
source "board/phytec/common/Kconfig"
endif
|