mirror of
https://github.com/smaeul/u-boot.git
synced 2025-09-14 22:16:03 +01:00
Fix the issue where CONFIG_SYS_BOARD was incorrectly set on Odroid XU3 boards, causing boot failure. This was resolved by correcting the SYS_BOARD entry in Kconfig to load the correct device tree source (dts) for the Odroid Exynos5422 Platforms. Fixes: f76750d11133 ("Convert CONFIG_CONS_INDEX et al to Kconfig") Signed-off-by: Anand Moon <linux.amoon@gmail.com> Reviewed-by: Sam Protsenko <semen.protsenko@linaro.org> Signed-off-by: Minkyu Kang <mk7.kang@samsung.com>
52 lines
591 B
Plaintext
52 lines
591 B
Plaintext
if TARGET_ODROID_XU3
|
|
|
|
config SYS_BOARD
|
|
default "odroid"
|
|
|
|
config SYS_VENDOR
|
|
default "samsung"
|
|
|
|
config SYS_CONFIG_NAME
|
|
default "odroid_xu3"
|
|
|
|
endif
|
|
|
|
if TARGET_PEACH_PI
|
|
|
|
config SYS_BOARD
|
|
default "smdk5420"
|
|
|
|
config SYS_VENDOR
|
|
default "samsung"
|
|
|
|
config SYS_CONFIG_NAME
|
|
default "peach-pi"
|
|
|
|
endif
|
|
|
|
if TARGET_PEACH_PIT
|
|
|
|
config SYS_BOARD
|
|
default "smdk5420"
|
|
|
|
config SYS_VENDOR
|
|
default "samsung"
|
|
|
|
config SYS_CONFIG_NAME
|
|
default "peach-pit"
|
|
|
|
endif
|
|
|
|
if TARGET_SMDK5420
|
|
|
|
config SYS_BOARD
|
|
default "smdk5420"
|
|
|
|
config SYS_VENDOR
|
|
default "samsung"
|
|
|
|
config SYS_CONFIG_NAME
|
|
default "smdk5420"
|
|
|
|
endif
|