From: BigfootACA Date: 星期天, 11 Oct 2020 01:14:43 +0000 (+0800) Subject: fix build.sh bug X-Git-Tag: v0.4~132 X-Git-Url: https://git.renegade-project.org/?a=commitdiff_plain;h=c1e8dbcc7daaf59a7d5bd6e54fa32e6097793e2b;p=edk2-sdm845.git fix build.sh bug --- 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"