From d2469719016bc652e6c4e120a58e4601de506f63 Mon Sep 17 00:00:00 2001 From: BigfootACA Date: Sun, 11 Oct 2020 09:14:43 +0800 Subject: [PATCH] fix build.sh bug --- build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sh b/build.sh index f04f403..9af4472 100755 --- a/build.sh +++ b/build.sh @@ -70,7 +70,7 @@ rm -f "boot_${DEVICE}.img" uefi_img # not actually GCC5, it's GCC7 on Ubuntu 18.04. GCC5_AARCH64_PREFIX=aarch64-linux-gnu- build -s -n 0 -a AARCH64 -t GCC5 -p "sdm845Pkg/${DEVICE}.dsc" gzip -c < workspace/Build/sdm845Pkg/DEBUG_GCC5/FV/SDM845PKG_UEFI.fd > "uefi-${DEVICE}.img" -cat "uefi-${DEVICE}.img" "device_specific/${DEVICE}.dtb" >> "uefi-${DEVICE}.img-dtb" +cat "uefi-${DEVICE}.img" "device_specific/${DEVICE}.dtb" > "uefi-${DEVICE}.img-dtb" echo > ramdisk abootimg --create "boot-${DEVICE}.img" -k "uefi-${DEVICE}.img-dtb" -r ramdisk echo "Build done: boot-${DEVICE}.img" -- 2.45.2