From 9a8e6d4515f8335c6e4744b18597ee276a0414f6 Mon Sep 17 00:00:00 2001 From: Tony Date: Mon, 11 May 2020 00:01:02 -0400 Subject: [PATCH] Small fix uboot_g12_postprocess Prepping for N2 move to mainline I stumbled upon the missed variables when I tried to use this on g12b. @igorpecovnik or @superna9999 I just want a second set of eyes, I think it's obvious, but that's where I always make the mistakes. --- config/sources/families/include/meson64_common.inc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config/sources/families/include/meson64_common.inc b/config/sources/families/include/meson64_common.inc index 7c8b53db76..37c6eff22d 100644 --- a/config/sources/families/include/meson64_common.inc +++ b/config/sources/families/include/meson64_common.inc @@ -111,7 +111,7 @@ uboot_g12_postprocess() --output bl2.n.bin.sig if [ -e $1/lpddr3_1d.fw ] then - $1/aml_encrypt_g12a --bootmk --output u-boot.bin \ + $1/aml_encrypt_$2 --bootmk --output u-boot.bin \ --bl2 bl2.n.bin.sig \ --bl30 bl30_new.bin.enc \ --bl31 bl31.img.enc \ @@ -127,7 +127,7 @@ uboot_g12_postprocess() --ddrfw9 $1/lpddr3_1d.fw \ --level v3 else - $1/aml_encrypt_g12a --bootmk --output u-boot.bin \ + $1/aml_encrypt_$2 --bootmk --output u-boot.bin \ --bl2 bl2.n.bin.sig \ --bl30 bl30_new.bin.enc \ --bl31 bl31.img.enc \