u-boot/board/samsung/axy17lte/Kconfig
Henrik Grimler 00809bd4e9 board: samsung: fix menu entries for a{3,7}y17lte
a7y17lte is called SM-A720F, and a3y17lte SM-A320F.  a3y17lte also
should select PINCTRL_EXYNOS78x0, not the (non-existent)
PINCTRL_EXYNOS7880, and it has an Exynos 7870 SoC and not 7880.

Fixes: 3e2095e960 ("board: samsung: add support for Galaxy A series
of 2017 (a5y17lte)")
Signed-off-by: Henrik Grimler <henrik@grimler.se>
Reviewed-by: Jaehoon Chung <jh80.chung@samsung.com>
Signed-off-by: Minkyu Kang <mk7.kang@samsung.com>
2022-01-13 14:33:00 +09:00

58 lines
1.1 KiB
Text

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