blob: d8882f113b6d8f3dfbc9cd2906f885f64b62e17f (
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
38
39
40
41
|
if TARGET_ST_STM32MP21X
config SYS_BOARD
default "stm32mp2"
config SYS_VENDOR
default "st"
config SYS_CONFIG_NAME
default "stm32mp21_st_common"
source "board/st/common/Kconfig"
endif
if TARGET_ST_STM32MP23X
config SYS_BOARD
default "stm32mp2"
config SYS_VENDOR
default "st"
config SYS_CONFIG_NAME
default "stm32mp23_st_common"
source "board/st/common/Kconfig"
endif
if TARGET_ST_STM32MP25X
config SYS_BOARD
default "stm32mp2"
config SYS_VENDOR
default "st"
config SYS_CONFIG_NAME
default "stm32mp25_st_common"
source "board/st/common/Kconfig"
endif
|