mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-26 14:40:41 +00:00
rockchip: Allow Bob to use SPI boot
Bob is a Chromebook and can boot from SPI flash. Add it to the condition check for this. Signed-off-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
parent
bcd4e6f3bd
commit
fab4f3231f
1 changed files with 2 additions and 1 deletions
|
@ -54,7 +54,8 @@ u32 spl_boot_device(void)
|
|||
#if defined(CONFIG_TARGET_CHROMEBOOK_JERRY) || \
|
||||
defined(CONFIG_TARGET_CHROMEBIT_MICKEY) || \
|
||||
defined(CONFIG_TARGET_CHROMEBOOK_MINNIE) || \
|
||||
defined(CONFIG_TARGET_CHROMEBOOK_SPEEDY)
|
||||
defined(CONFIG_TARGET_CHROMEBOOK_SPEEDY) || \
|
||||
defined(CONFIG_TARGET_CHROMEBOOK_BOB)
|
||||
return BOOT_DEVICE_SPI;
|
||||
#endif
|
||||
if (CONFIG_IS_ENABLED(ROCKCHIP_BACK_TO_BROM))
|
||||
|
|
Loading…
Reference in a new issue