mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-05 20:54:31 +00:00
d1de41d7fa
Spring is the first ARM-based HP Chromebook 11. It is similar to snow and it uses the same Samsung Exynos5250 chip. But has some unusual features. Mainline support for it has lagged snow (both in kernel and U-Boot). Now that the exynos5 code is common we can support spring just by adding a device tree and a few lines of configuration. Signed-off-by: Simon Glass <sjg@chromium.org>
38 lines
428 B
Text
38 lines
428 B
Text
if TARGET_SMDK5250
|
|
|
|
config SYS_BOARD
|
|
default "smdk5250"
|
|
|
|
config SYS_VENDOR
|
|
default "samsung"
|
|
|
|
config SYS_CONFIG_NAME
|
|
default "smdk5250"
|
|
|
|
endif
|
|
|
|
if TARGET_SNOW
|
|
|
|
config SYS_BOARD
|
|
default "smdk5250"
|
|
|
|
config SYS_VENDOR
|
|
default "samsung"
|
|
|
|
config SYS_CONFIG_NAME
|
|
default "snow"
|
|
|
|
endif
|
|
|
|
if TARGET_SPRING
|
|
|
|
config SYS_BOARD
|
|
default "smdk5250"
|
|
|
|
config SYS_VENDOR
|
|
default "samsung"
|
|
|
|
config SYS_CONFIG_NAME
|
|
default "spring"
|
|
|
|
endif
|