| Message ID | 20251104141935.2011578-1-mustela@erminea.space |
|---|---|
| State | New |
| Headers | show |
| Series | [meta-rockchip,v2] rk3288: use u-boot.img as bootloader image | expand |
diff --git a/conf/machine/include/rk3288.inc b/conf/machine/include/rk3288.inc index a648b44..70d554f 100644 --- a/conf/machine/include/rk3288.inc +++ b/conf/machine/include/rk3288.inc @@ -13,6 +13,6 @@ SERIAL_CONSOLES = "115200;ttyS2" KBUILD_DEFCONFIG ?= "multi_v7_defconfig" KERNEL_FEATURES:append:rk3288 = " bsp/rockchip/remove-non-rockchip-arch-arm.scc" -UBOOT_SUFFIX ?= "bin" +UBOOT_SUFFIX ?= "img" ENABLE_STATELESS_VPU_GST ?= "1"
Currently, u-boot.bin is used for supported rk3288-based boards. But, as U-Boot for those boards gets built without OP-TEE, u-boot.bin is a raw image, and, since raw images support for those boards is disabled as well, u-boot will fail to boot. Fix this by using u-boot.img for supported rk3288 boards, which is a FIT image. Suggested-by: Quentin Schulz <quentin.schulz@cherry.de> Signed-off-by: Peter Shkenev <mustela@erminea.space> --- conf/machine/include/rk3288.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)