blob: 68c214e473bec6b5c06f3db5a6ef6179e72a663a (
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
|
# SPDX-License-Identifier: GPL-2.0+
#
# Copyright (C) 2024 Texas Instruments Incorporated - https://www.ti.com/
#
if TARGET_J722S_R5_EVM || TARGET_J722S_A53_EVM
config SYS_BOARD
default "j722s"
config SYS_VENDOR
default "ti"
config SYS_CONFIG_NAME
default "j722s_evm"
source "board/ti/common/Kconfig"
endif
if TARGET_J722S_R5_EVM
config SPL_LDSCRIPT
default "arch/arm/mach-omap2/u-boot-spl.lds"
endif
|