summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAVazquez <avazquez.dev@gmail.com>2020-10-21 14:52:56 +0200
committerMichael Olbrich <m.olbrich@pengutronix.de>2020-10-28 10:20:15 +0100
commit80ec365d70f9707bf515327460af3bfc70b8b844 (patch)
tree7b5639b727a18b4f1fffb03484faa6ef470c8ed1
parentc52bf26c565e961fb53b8c602fc311da95163710 (diff)
downloadptxdist-80ec365d70f9707bf515327460af3bfc70b8b844.tar.gz
ptxdist-80ec365d70f9707bf515327460af3bfc70b8b844.tar.xz
ptxd_make_fit_image: add architecture name
Add architecture name, mandatory for types kernel and fdt. Signed-off-by: AVazquez <avazquez.dev@gmail.com> Message-Id: <1603284776-11933-1-git-send-email-avazquez.dev@gmail.com> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
-rw-r--r--scripts/lib/ptxd_make_fit_image.sh2
1 files changed, 2 insertions, 0 deletions
diff --git a/scripts/lib/ptxd_make_fit_image.sh b/scripts/lib/ptxd_make_fit_image.sh
index 56f273686..9754d1e84 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";
};