bootloader: set to upstream u-boot for rk3288

The upstream u-boot bootloader seems to work fine for both the tinker-rk3288
and the firefly-rk3288, so switch to it by default for rk3288 boards.

Signed-off-by: Trevor Woerner <twoerner@gmail.com>
This commit is contained in:
Trevor Woerner 2018-04-30 17:06:09 -04:00
parent d4bcaf1819
commit f0e2287af9
2 changed files with 7 additions and 1 deletions

View File

@ -9,7 +9,7 @@ require conf/machine/include/rockchip-defaults.inc
SERIAL_CONSOLES = "115200;ttyS2"
PREFERRED_PROVIDER_virtual/bootloader ?= "u-boot-rockchip"
PREFERRED_PROVIDER_virtual/bootloader ?= "u-boot"
SPL_BINARY ?= "u-boot-spl-dtb.bin"
IMAGE_FSTYPES = "rockchip-gpt-img"

View File

@ -0,0 +1,6 @@
do_compile_append_rk3288 () {
# copy to default search path
if [ ${SPL_BINARY} ]; then
cp ${B}/spl/${SPL_BINARY} ${B}/
fi
}