From 6b60c9c4983bde4eb82f498d114937470c9a7ccf Mon Sep 17 00:00:00 2001 From: Andy CrossGate Yan Date: Tue, 10 Jan 2023 14:40:26 +0000 Subject: [PATCH] Changes for January 2023 Basically reverts the "integrally securized" part --- buildbot_unified.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/buildbot_unified.sh b/buildbot_unified.sh index 8c9ddcc..cabe287 100755 --- a/buildbot_unified.sh +++ b/buildbot_unified.sh @@ -97,15 +97,15 @@ build_device() { build_treble() { case "${1}" in - ("64VN") TARGET=gsi_arm64_vN; SECURE=true;; - ("64VS") TARGET=gsi_arm64_vS; SECURE=false;; - ("64GN") TARGET=gsi_arm64_gN; SECURE=true;; + ("64VN") TARGET=gsi_arm64_vN;; + ("64VS") TARGET=gsi_arm64_vS;; + ("64GN") TARGET=gsi_arm64_gN;; (*) echo "Invalid target - exiting"; exit 1;; esac lunch lineage_${TARGET}-userdebug make installclean make -j$(nproc --all) systemimage - mv $OUT/system.img ~/build-output/lineage-20.0-$BUILD_DATE-UNOFFICIAL-${TARGET}$(${SECURE} && echo "-secure" || echo "")$(${PERSONAL} && echo "-personal" || echo "").img + mv $OUT/system.img ~/build-output/lineage-20.0-$BUILD_DATE-UNOFFICIAL-${TARGET}$(${PERSONAL} && echo "-personal" || echo "").img } if ${NOSYNC}