From mboxrd@z Thu Jan 1 00:00:00 1970 Return-path: Received: from mail-wr1-x443.google.com ([2a00:1450:4864:20::443]) by metis.ext.pengutronix.de with esmtps (TLS1.3:ECDHE_RSA_AES_128_GCM_SHA256:128) (Exim 4.92) (envelope-from ) id 1kVDdA-0006Xw-Vb for ptxdist@pengutronix.de; Wed, 21 Oct 2020 14:54:17 +0200 Received: by mail-wr1-x443.google.com with SMTP id b8so3071750wrn.0 for ; Wed, 21 Oct 2020 05:54:16 -0700 (PDT) From: avazquez.dev@gmail.com Date: Wed, 21 Oct 2020 14:52:56 +0200 Message-Id: <1603284776-11933-1-git-send-email-avazquez.dev@gmail.com> Subject: [ptxdist] [PATCH] ptxd_make_fit_image: add architecture name List-Id: PTXdist Development Mailing List List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Reply-To: ptxdist@pengutronix.de MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Errors-To: ptxdist-bounces@pengutronix.de Sender: "ptxdist" To: ptxdist@pengutronix.de Cc: AVazquez From: AVazquez Add architecture name, mandatory for types kernel and fdt. Signed-off-by: AVazquez --- scripts/lib/ptxd_make_fit_image.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/scripts/lib/ptxd_make_fit_image.sh b/scripts/lib/ptxd_make_fit_image.sh index 56f2736..9754d1e 100644 --- a/scripts/lib/ptxd_make_fit_image.sh +++ b/scripts/lib/ptxd_make_fit_image.sh @@ -20,6 +20,7 @@ ptxd_make_image_fit_its() { description = "kernel"; data = /incbin/("${image_kernel}"); type = "kernel"; + arch = "$(ptxd_get_ptxconf PTXCONF_ARCH_STRING)"; compression = "none"; hash-1 { algo = "sha256"; @@ -47,6 +48,7 @@ EOF data = /incbin/("${i}"); compression = "none"; type = "flat_dt"; + arch = "$(ptxd_get_ptxconf PTXCONF_ARCH_STRING)"; hash-1 { algo = "sha256"; }; -- 1.9.1 _______________________________________________ ptxdist mailing list ptxdist@pengutronix.de To unsubscribe, send a mail with subject "unsubscribe" to ptxdist-request@pengutronix.de