blob: a018547ff5d485e4bb63311b9edba80fcfdfd529 (
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
config SYS_CONFIG_NAME
string "Board configuration name"
default "exynos78x0-common.h"
help
This option contains information about board configuration name.
Based on this option include/configs/<CONFIG_SYS_CONFIG_NAME>.h header
will be used for board configuration.
if TARGET_A5Y17LTE
config SYS_BOARD
default "axy17lte"
help
a5y17lte is a production board for SM-A520F phone on Exynos7880 SoC.
config SYS_VENDOR
default "samsung"
config SYS_CONFIG_NAME
default "a5y17lte"
config EXYNOS7880
bool "Exynos 7880 SOC support"
default y
endif
if TARGET_A7Y17LTE
config SYS_BOARD
default "axy17lte"
help
a7y17lte is a production board for SM-A720F phone on Exynos7880 SoC.
config SYS_VENDOR
default "samsung"
config SYS_CONFIG_NAME
default "a5y17lte"
config EXYNOS7880
bool "Exynos 7880 SOC support"
default y
endif
if TARGET_A3Y17LTE
config SYS_BOARD
default "axy17lte"
help
a3y17lte is a production board for SM-A320F phone on Exynos7870 SoC.
config SYS_VENDOR
default "samsung"
config SYS_CONFIG_NAME
default "a3y17lte"
config EXYNOS7870
bool "Exynos 7870 SOC support"
default y
endif
|