From patchwork Sun Nov 2 13:29:31 2025 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Peter Shkenev X-Patchwork-Id: 73449 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from aws-us-west-2-korg-lkml-1.web.codeaurora.org (localhost.localdomain [127.0.0.1]) by smtp.lore.kernel.org (Postfix) with ESMTP id 2AF15CCF9E3 for ; Sun, 2 Nov 2025 13:31:05 +0000 (UTC) Received: from erminea.space (erminea.space [51.250.125.203]) by mx.groups.io with SMTP id smtpd.msgproc02-g2.9885.1762090262420655817 for ; Sun, 02 Nov 2025 05:31:02 -0800 Authentication-Results: mx.groups.io; dkim=none (message not signed); spf=pass (domain: erminea.space, ip: 51.250.125.203, mailfrom: mustela@erminea.space) Received: from eternity (unknown [37.204.49.201]) by erminea.space (Postfix) with ESMTPSA id 34F14217; Sun, 02 Nov 2025 16:31:00 +0300 (MSK) From: Peter Shkenev To: yocto-patches@lists.yoctoproject.org Cc: twoerner@gmail.com, mustela@erminea.space Subject: [meta-rockchip] [PATCH] rk3288: use u-boot.itb as bootloader image Date: Sun, 2 Nov 2025 16:29:31 +0300 Message-ID: <20251102132931.228967-1-mustela@erminea.space> X-Mailer: git-send-email 2.51.1 MIME-Version: 1.0 List-Id: X-Webhook-Received: from 45-33-107-173.ip.linodeusercontent.com [45.33.107.173] by aws-us-west-2-korg-lkml-1.web.codeaurora.org with HTTPS for ; Sun, 02 Nov 2025 13:31:05 -0000 X-Groupsio-URL: https://lists.yoctoproject.org/g/yocto-patches/message/2408 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.itb for supported rk3288 boards, which is a FIT image. Signed-off-by: Peter Shkenev --- conf/machine/include/rk3288.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conf/machine/include/rk3288.inc b/conf/machine/include/rk3288.inc index a648b44..a1e5d06 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 ?= "itb" ENABLE_STATELESS_VPU_GST ?= "1"