From de65e5e536753f1c9e6721b171fb2ef07f050e82 Mon Sep 17 00:00:00 2001 From: omanshkrishn <138091069+omanshkrishn@users.noreply.github.com> Date: Sat, 29 Jul 2023 04:59:02 +0530 Subject: [PATCH 01/28] santoni-PixelExperience-thirteen-plus-omanshkrishn --- build_rom.sh | 20 ++++++++++++++------ 1 file changed, 14 insertions(+), 6 deletions(-) diff --git a/build_rom.sh b/build_rom.sh index d1161af03d4..40657e699ee 100644 --- a/build_rom.sh +++ b/build_rom.sh @@ -1,13 +1,21 @@ # sync rom -repo init --depth=1 --no-repo-verify -u git://github.com/DerpFest-11/manifest.git -b 11 -g default,-mips,-darwin,-notdefault -git clone https://github.com/pocox3pro/Local-Manifests.git --depth 1 -b master .repo/local_manifests -repo sync -c --no-clone-bundle --no-tags --optimized-fetch --prune --force-sync -j8 +repo init --depth=1 --no-repo-verify -u https://github.com/PixelExperience/manifest.git -b thirteen-plus -g default,-mips,-darwin,-notdefault +git clone https://codeberg.org/omansh-krishn/local_manifest.git --depth 1 -b pixelexperience-13 .repo/local_manifests +repo sync -c --no-clone-bundle --no-tags --optimized-fetch --prune --force-sync -j8 # build rom source build/envsetup.sh -lunch derp_vayu-user -export TZ=Asia/Dhaka #put before last build command -mka derp +lunch aosp_santoni-user + +export BUILD_BROKEN_MISSING_REQUIRED_MODULES=true +export BUILD_USERNAME=OmanshKrishn +export BUILD_HOSTNAME=pc +export KBUILD_BUILD_USER=OmanshKrishn +export KBUILD_BUILD_HOST=pc +export ALLOW_MISSING_DEPENDENCIES=true +export TZ=Asia/Kolkata + +mka bacon # upload rom (if you don't need to upload multiple files, then you don't need to edit next line) rclone copy out/target/product/$(grep unch $CIRRUS_WORKING_DIR/build_rom.sh -m 1 | cut -d ' ' -f 2 | cut -d _ -f 2 | cut -d - -f 1)/*.zip cirrus:$(grep unch $CIRRUS_WORKING_DIR/build_rom.sh -m 1 | cut -d ' ' -f 2 | cut -d _ -f 2 | cut -d - -f 1) -P From 08a721f5ec963b17dafcf1de9b835c1ea2079565 Mon Sep 17 00:00:00 2001 From: omanshkrishn <138091069+omanshkrishn@users.noreply.github.com> Date: Wed, 2 Aug 2023 12:14:17 +0530 Subject: [PATCH 02/28] test dt changes --- build_rom.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/build_rom.sh b/build_rom.sh index 40657e699ee..8cf686f447a 100644 --- a/build_rom.sh +++ b/build_rom.sh @@ -1,18 +1,19 @@ # sync rom repo init --depth=1 --no-repo-verify -u https://github.com/PixelExperience/manifest.git -b thirteen-plus -g default,-mips,-darwin,-notdefault -git clone https://codeberg.org/omansh-krishn/local_manifest.git --depth 1 -b pixelexperience-13 .repo/local_manifests +git clone https://codeberg.org/omansh-krishn/local_manifest.git --depth 1 -b pixelexperience-13-t .repo/local_manifests repo sync -c --no-clone-bundle --no-tags --optimized-fetch --prune --force-sync -j8 # build rom source build/envsetup.sh lunch aosp_santoni-user export BUILD_BROKEN_MISSING_REQUIRED_MODULES=true +export ALLOW_MISSING_DEPENDENCIES=true +export CUSTOM_BUILD_TYPE=UNOFFICIAL-OmanshKrishn export BUILD_USERNAME=OmanshKrishn export BUILD_HOSTNAME=pc export KBUILD_BUILD_USER=OmanshKrishn export KBUILD_BUILD_HOST=pc -export ALLOW_MISSING_DEPENDENCIES=true export TZ=Asia/Kolkata mka bacon From 8b059127cf8d25460d87230154019ba8d8f78dd2 Mon Sep 17 00:00:00 2001 From: omanshkrishn <138091069+omanshkrishn@users.noreply.github.com> Date: Fri, 4 Aug 2023 20:58:42 +0530 Subject: [PATCH 03/28] init evolution initial build --- build_rom.sh | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/build_rom.sh b/build_rom.sh index 8cf686f447a..9ad3c40a6e6 100644 --- a/build_rom.sh +++ b/build_rom.sh @@ -1,22 +1,26 @@ # sync rom -repo init --depth=1 --no-repo-verify -u https://github.com/PixelExperience/manifest.git -b thirteen-plus -g default,-mips,-darwin,-notdefault -git clone https://codeberg.org/omansh-krishn/local_manifest.git --depth 1 -b pixelexperience-13-t .repo/local_manifests +repo init --depth=1 --no-repo-verify -u https://github.com/Evolution-X/manifest.git -b tiramisu -g default,-mips,-darwin,-notdefault +git clone https://codeberg.org/omansh-krishn/local_manifest.git --depth 1 -b evox-mi8937 .repo/local_manifests repo sync -c --no-clone-bundle --no-tags --optimized-fetch --prune --force-sync -j8 + # build rom + source build/envsetup.sh -lunch aosp_santoni-user +timedatectl + +lunch evolution_Mi8937-user export BUILD_BROKEN_MISSING_REQUIRED_MODULES=true export ALLOW_MISSING_DEPENDENCIES=true -export CUSTOM_BUILD_TYPE=UNOFFICIAL-OmanshKrishn export BUILD_USERNAME=OmanshKrishn export BUILD_HOSTNAME=pc export KBUILD_BUILD_USER=OmanshKrishn export KBUILD_BUILD_HOST=pc export TZ=Asia/Kolkata +timedatectl -mka bacon +m evolution # upload rom (if you don't need to upload multiple files, then you don't need to edit next line) rclone copy out/target/product/$(grep unch $CIRRUS_WORKING_DIR/build_rom.sh -m 1 | cut -d ' ' -f 2 | cut -d _ -f 2 | cut -d - -f 1)/*.zip cirrus:$(grep unch $CIRRUS_WORKING_DIR/build_rom.sh -m 1 | cut -d ' ' -f 2 | cut -d _ -f 2 | cut -d - -f 1) -P From e823b25cadb46216cde44265545828cac83924ff Mon Sep 17 00:00:00 2001 From: omanshkrishn <138091069+omanshkrishn@users.noreply.github.com> Date: Fri, 4 Aug 2023 21:14:46 +0530 Subject: [PATCH 04/28] add clang version flag also add with-gms, to increase /data partition size --- build_rom.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/build_rom.sh b/build_rom.sh index 9ad3c40a6e6..1edf255b6f8 100644 --- a/build_rom.sh +++ b/build_rom.sh @@ -10,7 +10,9 @@ source build/envsetup.sh timedatectl lunch evolution_Mi8937-user - +export WITH_GMS=true +export TARGET_KERNEL_CLANG_VERSION=zyc_clang +export TARGET_KERNEL_CLANG_PATH=$(pwd)/prebuilts/clang/host/linux-x86/${TARGET_KERNEL_CLANG_VERSION} export BUILD_BROKEN_MISSING_REQUIRED_MODULES=true export ALLOW_MISSING_DEPENDENCIES=true export BUILD_USERNAME=OmanshKrishn From c6b3d37636022210c72ef075016ef890246e7171 Mon Sep 17 00:00:00 2001 From: omanshkrishn <138091069+omanshkrishn@users.noreply.github.com> Date: Sat, 5 Aug 2023 04:58:59 +0530 Subject: [PATCH 05/28] fixed syntax of local_manifest --- build_rom.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build_rom.sh b/build_rom.sh index 1edf255b6f8..27785f8cb8d 100644 --- a/build_rom.sh +++ b/build_rom.sh @@ -3,7 +3,7 @@ repo init --depth=1 --no-repo-verify -u https://github.com/Evolution-X/manifest.git -b tiramisu -g default,-mips,-darwin,-notdefault git clone https://codeberg.org/omansh-krishn/local_manifest.git --depth 1 -b evox-mi8937 .repo/local_manifests repo sync -c --no-clone-bundle --no-tags --optimized-fetch --prune --force-sync -j8 - +# fixed syntax of local_manifest # build rom source build/envsetup.sh From 29e2004c91b0279a17979063d1257f469ec7fa89 Mon Sep 17 00:00:00 2001 From: omanshkrishn <138091069+omanshkrishn@users.noreply.github.com> Date: Sat, 5 Aug 2023 10:33:49 +0530 Subject: [PATCH 06/28] remove timedatectl i just wanted to see the time --- build_rom.sh | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/build_rom.sh b/build_rom.sh index 27785f8cb8d..463b3210e83 100644 --- a/build_rom.sh +++ b/build_rom.sh @@ -7,7 +7,7 @@ repo sync -c --no-clone-bundle --no-tags --optimized-fetch --prune --force-sync # build rom source build/envsetup.sh -timedatectl + lunch evolution_Mi8937-user export WITH_GMS=true @@ -20,7 +20,6 @@ export BUILD_HOSTNAME=pc export KBUILD_BUILD_USER=OmanshKrishn export KBUILD_BUILD_HOST=pc export TZ=Asia/Kolkata -timedatectl m evolution From 432651869dc47c00fe3d16d109be696442fca431 Mon Sep 17 00:00:00 2001 From: omanshkrishn <138091069+omanshkrishn@users.noreply.github.com> Date: Sat, 5 Aug 2023 13:35:57 +0530 Subject: [PATCH 07/28] retrigger --- build_rom.sh | 1 - 1 file changed, 1 deletion(-) diff --git a/build_rom.sh b/build_rom.sh index 463b3210e83..7811800105f 100644 --- a/build_rom.sh +++ b/build_rom.sh @@ -8,7 +8,6 @@ repo sync -c --no-clone-bundle --no-tags --optimized-fetch --prune --force-sync source build/envsetup.sh - lunch evolution_Mi8937-user export WITH_GMS=true export TARGET_KERNEL_CLANG_VERSION=zyc_clang From d5e7c4e4c2dd446208d9acb0f40acdba6b26d710 Mon Sep 17 00:00:00 2001 From: omanshkrishn <138091069+omanshkrishn@users.noreply.github.com> Date: Tue, 24 Oct 2023 15:33:59 +0530 Subject: [PATCH 08/28] santoni --- build_rom.sh | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/build_rom.sh b/build_rom.sh index 7811800105f..e814bb74d7a 100644 --- a/build_rom.sh +++ b/build_rom.sh @@ -8,10 +8,7 @@ repo sync -c --no-clone-bundle --no-tags --optimized-fetch --prune --force-sync source build/envsetup.sh -lunch evolution_Mi8937-user -export WITH_GMS=true -export TARGET_KERNEL_CLANG_VERSION=zyc_clang -export TARGET_KERNEL_CLANG_PATH=$(pwd)/prebuilts/clang/host/linux-x86/${TARGET_KERNEL_CLANG_VERSION} +lunch evolution_santoni-user export BUILD_BROKEN_MISSING_REQUIRED_MODULES=true export ALLOW_MISSING_DEPENDENCIES=true export BUILD_USERNAME=OmanshKrishn From 798193e967b2c176b6ea332d2c2f95775719afbd Mon Sep 17 00:00:00 2001 From: omanshkrishn <138091069+omanshkrishn@users.noreply.github.com> Date: Tue, 24 Oct 2023 15:35:10 +0530 Subject: [PATCH 09/28] done --- build_rom.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build_rom.sh b/build_rom.sh index e814bb74d7a..bf2cd83d9bb 100644 --- a/build_rom.sh +++ b/build_rom.sh @@ -1,9 +1,9 @@ # sync rom repo init --depth=1 --no-repo-verify -u https://github.com/Evolution-X/manifest.git -b tiramisu -g default,-mips,-darwin,-notdefault -git clone https://codeberg.org/omansh-krishn/local_manifest.git --depth 1 -b evox-mi8937 .repo/local_manifests +git clone https://codeberg.org/omansh-krishn/local_manifest.git --depth 1 -b evolution-x .repo/local_manifests repo sync -c --no-clone-bundle --no-tags --optimized-fetch --prune --force-sync -j8 -# fixed syntax of local_manifest + # build rom source build/envsetup.sh From ee5590299bf178b4986982e69add3d3f2cad32be Mon Sep 17 00:00:00 2001 From: omanshkrishn <138091069+omanshkrishn@users.noreply.github.com> Date: Wed, 25 Oct 2023 09:09:25 +0530 Subject: [PATCH 10/28] retry --- build_rom.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/build_rom.sh b/build_rom.sh index bf2cd83d9bb..09af9fb2859 100644 --- a/build_rom.sh +++ b/build_rom.sh @@ -4,6 +4,7 @@ repo init --depth=1 --no-repo-verify -u https://github.com/Evolution-X/manifest. git clone https://codeberg.org/omansh-krishn/local_manifest.git --depth 1 -b evolution-x .repo/local_manifests repo sync -c --no-clone-bundle --no-tags --optimized-fetch --prune --force-sync -j8 + # build rom source build/envsetup.sh From c3e5a5e4d3efba190243b4831bd94b044dd97555 Mon Sep 17 00:00:00 2001 From: omanshkrishn <138091069+omanshkrishn@users.noreply.github.com> Date: Wed, 25 Oct 2023 20:12:32 +0530 Subject: [PATCH 11/28] fixed overlays --- build_rom.sh | 1 - 1 file changed, 1 deletion(-) diff --git a/build_rom.sh b/build_rom.sh index 09af9fb2859..bf2cd83d9bb 100644 --- a/build_rom.sh +++ b/build_rom.sh @@ -4,7 +4,6 @@ repo init --depth=1 --no-repo-verify -u https://github.com/Evolution-X/manifest. git clone https://codeberg.org/omansh-krishn/local_manifest.git --depth 1 -b evolution-x .repo/local_manifests repo sync -c --no-clone-bundle --no-tags --optimized-fetch --prune --force-sync -j8 - # build rom source build/envsetup.sh From dba02150fc65004fba7ca1e9243aee938cfed518 Mon Sep 17 00:00:00 2001 From: omanshkrishn <138091069+omanshkrishn@users.noreply.github.com> Date: Thu, 26 Oct 2023 07:30:28 +0530 Subject: [PATCH 12/28] retyr --- build_rom.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build_rom.sh b/build_rom.sh index bf2cd83d9bb..3eb0e1abdb0 100644 --- a/build_rom.sh +++ b/build_rom.sh @@ -3,7 +3,7 @@ repo init --depth=1 --no-repo-verify -u https://github.com/Evolution-X/manifest.git -b tiramisu -g default,-mips,-darwin,-notdefault git clone https://codeberg.org/omansh-krishn/local_manifest.git --depth 1 -b evolution-x .repo/local_manifests repo sync -c --no-clone-bundle --no-tags --optimized-fetch --prune --force-sync -j8 - +#reduced apps # build rom source build/envsetup.sh From 4d0c8caa7e0ca861ba21770de32d87bee6427ab6 Mon Sep 17 00:00:00 2001 From: omanshkrishn <138091069+omanshkrishn@users.noreply.github.com> Date: Sun, 29 Oct 2023 18:17:42 +0530 Subject: [PATCH 13/28] udc --- build_rom.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build_rom.sh b/build_rom.sh index 3eb0e1abdb0..bf2cd83d9bb 100644 --- a/build_rom.sh +++ b/build_rom.sh @@ -3,7 +3,7 @@ repo init --depth=1 --no-repo-verify -u https://github.com/Evolution-X/manifest.git -b tiramisu -g default,-mips,-darwin,-notdefault git clone https://codeberg.org/omansh-krishn/local_manifest.git --depth 1 -b evolution-x .repo/local_manifests repo sync -c --no-clone-bundle --no-tags --optimized-fetch --prune --force-sync -j8 -#reduced apps + # build rom source build/envsetup.sh From 417daf913974f700f0d0fc35bb22cf0a6e596707 Mon Sep 17 00:00:00 2001 From: omanshkrishn <138091069+omanshkrishn@users.noreply.github.com> Date: Sun, 29 Oct 2023 18:34:10 +0530 Subject: [PATCH 14/28] udc --- build_rom.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build_rom.sh b/build_rom.sh index bf2cd83d9bb..8d79a30821c 100644 --- a/build_rom.sh +++ b/build_rom.sh @@ -1,6 +1,6 @@ # sync rom -repo init --depth=1 --no-repo-verify -u https://github.com/Evolution-X/manifest.git -b tiramisu -g default,-mips,-darwin,-notdefault +repo init --depth=1 --no-repo-verify -u https://github.com/Evolution-X/manifest.git -b udc -g default,-mips,-darwin,-notdefault git clone https://codeberg.org/omansh-krishn/local_manifest.git --depth 1 -b evolution-x .repo/local_manifests repo sync -c --no-clone-bundle --no-tags --optimized-fetch --prune --force-sync -j8 From 3bf5b6190aa3b80de378e6c0b98a31ff132e1962 Mon Sep 17 00:00:00 2001 From: omanshkrishn <138091069+omanshkrishn@users.noreply.github.com> Date: Thu, 9 Nov 2023 18:26:29 +0530 Subject: [PATCH 15/28] retry --- build_rom.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build_rom.sh b/build_rom.sh index 8d79a30821c..1292f455544 100644 --- a/build_rom.sh +++ b/build_rom.sh @@ -3,7 +3,7 @@ repo init --depth=1 --no-repo-verify -u https://github.com/Evolution-X/manifest.git -b udc -g default,-mips,-darwin,-notdefault git clone https://codeberg.org/omansh-krishn/local_manifest.git --depth 1 -b evolution-x .repo/local_manifests repo sync -c --no-clone-bundle --no-tags --optimized-fetch --prune --force-sync -j8 - +#retry # build rom source build/envsetup.sh From 1810b3c6651dc1cd1d66e612d7c0930f1ee7d176 Mon Sep 17 00:00:00 2001 From: omanshkrishn <138091069+omanshkrishn@users.noreply.github.com> Date: Fri, 10 Nov 2023 08:21:01 +0530 Subject: [PATCH 16/28] retry --- build_rom.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build_rom.sh b/build_rom.sh index 1292f455544..8d79a30821c 100644 --- a/build_rom.sh +++ b/build_rom.sh @@ -3,7 +3,7 @@ repo init --depth=1 --no-repo-verify -u https://github.com/Evolution-X/manifest.git -b udc -g default,-mips,-darwin,-notdefault git clone https://codeberg.org/omansh-krishn/local_manifest.git --depth 1 -b evolution-x .repo/local_manifests repo sync -c --no-clone-bundle --no-tags --optimized-fetch --prune --force-sync -j8 -#retry + # build rom source build/envsetup.sh From 9de7e95d458321c050b52357b0a09e7779877240 Mon Sep 17 00:00:00 2001 From: omanshkrishn <138091069+omanshkrishn@users.noreply.github.com> Date: Fri, 10 Nov 2023 11:10:56 +0530 Subject: [PATCH 17/28] retry --- build_rom.sh | 1 - 1 file changed, 1 deletion(-) diff --git a/build_rom.sh b/build_rom.sh index 8d79a30821c..5e13828fcc6 100644 --- a/build_rom.sh +++ b/build_rom.sh @@ -3,7 +3,6 @@ repo init --depth=1 --no-repo-verify -u https://github.com/Evolution-X/manifest.git -b udc -g default,-mips,-darwin,-notdefault git clone https://codeberg.org/omansh-krishn/local_manifest.git --depth 1 -b evolution-x .repo/local_manifests repo sync -c --no-clone-bundle --no-tags --optimized-fetch --prune --force-sync -j8 - # build rom source build/envsetup.sh From 6af85d9a04b7e111f1864c9333ceb718fd68d098 Mon Sep 17 00:00:00 2001 From: omanshkrishn <138091069+omanshkrishn@users.noreply.github.com> Date: Sat, 11 Nov 2023 09:08:26 +0530 Subject: [PATCH 18/28] retry --- build_rom.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/build_rom.sh b/build_rom.sh index 5e13828fcc6..8d79a30821c 100644 --- a/build_rom.sh +++ b/build_rom.sh @@ -3,6 +3,7 @@ repo init --depth=1 --no-repo-verify -u https://github.com/Evolution-X/manifest.git -b udc -g default,-mips,-darwin,-notdefault git clone https://codeberg.org/omansh-krishn/local_manifest.git --depth 1 -b evolution-x .repo/local_manifests repo sync -c --no-clone-bundle --no-tags --optimized-fetch --prune --force-sync -j8 + # build rom source build/envsetup.sh From c4e79554a5d7c35a559c2eecd291b62b1c43b392 Mon Sep 17 00:00:00 2001 From: omanshkrishn <138091069+omanshkrishn@users.noreply.github.com> Date: Sat, 25 Nov 2023 16:36:23 +0530 Subject: [PATCH 19/28] retry --- build_rom.sh | 1 - 1 file changed, 1 deletion(-) diff --git a/build_rom.sh b/build_rom.sh index 8d79a30821c..a2ade9bf87c 100644 --- a/build_rom.sh +++ b/build_rom.sh @@ -1,5 +1,4 @@ # sync rom - repo init --depth=1 --no-repo-verify -u https://github.com/Evolution-X/manifest.git -b udc -g default,-mips,-darwin,-notdefault git clone https://codeberg.org/omansh-krishn/local_manifest.git --depth 1 -b evolution-x .repo/local_manifests repo sync -c --no-clone-bundle --no-tags --optimized-fetch --prune --force-sync -j8 From 30f634186cf25c059e91575174126f690f55425c Mon Sep 17 00:00:00 2001 From: omanshkrishn <138091069+omanshkrishn@users.noreply.github.com> Date: Sat, 25 Nov 2023 21:28:37 +0530 Subject: [PATCH 20/28] retry --- build_rom.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/build_rom.sh b/build_rom.sh index a2ade9bf87c..8d79a30821c 100644 --- a/build_rom.sh +++ b/build_rom.sh @@ -1,4 +1,5 @@ # sync rom + repo init --depth=1 --no-repo-verify -u https://github.com/Evolution-X/manifest.git -b udc -g default,-mips,-darwin,-notdefault git clone https://codeberg.org/omansh-krishn/local_manifest.git --depth 1 -b evolution-x .repo/local_manifests repo sync -c --no-clone-bundle --no-tags --optimized-fetch --prune --force-sync -j8 From 3214e471de20ba0149db09b128daf79f6d7e60e5 Mon Sep 17 00:00:00 2001 From: omanshkrishn <138091069+omanshkrishn@users.noreply.github.com> Date: Sun, 26 Nov 2023 08:54:09 +0530 Subject: [PATCH 21/28] retry --- build_rom.sh | 1 - 1 file changed, 1 deletion(-) diff --git a/build_rom.sh b/build_rom.sh index 8d79a30821c..a2ade9bf87c 100644 --- a/build_rom.sh +++ b/build_rom.sh @@ -1,5 +1,4 @@ # sync rom - repo init --depth=1 --no-repo-verify -u https://github.com/Evolution-X/manifest.git -b udc -g default,-mips,-darwin,-notdefault git clone https://codeberg.org/omansh-krishn/local_manifest.git --depth 1 -b evolution-x .repo/local_manifests repo sync -c --no-clone-bundle --no-tags --optimized-fetch --prune --force-sync -j8 From d41da5262414b22f8ea73d37c67daa678ce7022e Mon Sep 17 00:00:00 2001 From: omanshkrishn <138091069+omanshkrishn@users.noreply.github.com> Date: Sun, 26 Nov 2023 17:08:00 +0530 Subject: [PATCH 22/28] retry --- build_rom.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/build_rom.sh b/build_rom.sh index a2ade9bf87c..8d79a30821c 100644 --- a/build_rom.sh +++ b/build_rom.sh @@ -1,4 +1,5 @@ # sync rom + repo init --depth=1 --no-repo-verify -u https://github.com/Evolution-X/manifest.git -b udc -g default,-mips,-darwin,-notdefault git clone https://codeberg.org/omansh-krishn/local_manifest.git --depth 1 -b evolution-x .repo/local_manifests repo sync -c --no-clone-bundle --no-tags --optimized-fetch --prune --force-sync -j8 From 5479deee6e92797e47e1e6b7e5ad4dd932a5b635 Mon Sep 17 00:00:00 2001 From: omanshkrishn <138091069+omanshkrishn@users.noreply.github.com> Date: Mon, 27 Nov 2023 08:24:01 +0530 Subject: [PATCH 23/28] retry --- build_rom.sh | 1 - 1 file changed, 1 deletion(-) diff --git a/build_rom.sh b/build_rom.sh index 8d79a30821c..a2ade9bf87c 100644 --- a/build_rom.sh +++ b/build_rom.sh @@ -1,5 +1,4 @@ # sync rom - repo init --depth=1 --no-repo-verify -u https://github.com/Evolution-X/manifest.git -b udc -g default,-mips,-darwin,-notdefault git clone https://codeberg.org/omansh-krishn/local_manifest.git --depth 1 -b evolution-x .repo/local_manifests repo sync -c --no-clone-bundle --no-tags --optimized-fetch --prune --force-sync -j8 From 18232847513f42b1fce9b8720d6a2e7737bfba9b Mon Sep 17 00:00:00 2001 From: omanshkrishn <138091069+omanshkrishn@users.noreply.github.com> Date: Mon, 27 Nov 2023 15:19:38 +0530 Subject: [PATCH 24/28] fixed duplicate sepolicy --- build_rom.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/build_rom.sh b/build_rom.sh index a2ade9bf87c..8d79a30821c 100644 --- a/build_rom.sh +++ b/build_rom.sh @@ -1,4 +1,5 @@ # sync rom + repo init --depth=1 --no-repo-verify -u https://github.com/Evolution-X/manifest.git -b udc -g default,-mips,-darwin,-notdefault git clone https://codeberg.org/omansh-krishn/local_manifest.git --depth 1 -b evolution-x .repo/local_manifests repo sync -c --no-clone-bundle --no-tags --optimized-fetch --prune --force-sync -j8 From f181ea552086c2cea85928d2b75fa1bd2b82b06a Mon Sep 17 00:00:00 2001 From: omanshkrishn <138091069+omanshkrishn@users.noreply.github.com> Date: Tue, 28 Nov 2023 00:52:21 +0530 Subject: [PATCH 25/28] removed obselete sepolicy --- build_rom.sh | 1 - 1 file changed, 1 deletion(-) diff --git a/build_rom.sh b/build_rom.sh index 8d79a30821c..a2ade9bf87c 100644 --- a/build_rom.sh +++ b/build_rom.sh @@ -1,5 +1,4 @@ # sync rom - repo init --depth=1 --no-repo-verify -u https://github.com/Evolution-X/manifest.git -b udc -g default,-mips,-darwin,-notdefault git clone https://codeberg.org/omansh-krishn/local_manifest.git --depth 1 -b evolution-x .repo/local_manifests repo sync -c --no-clone-bundle --no-tags --optimized-fetch --prune --force-sync -j8 From 3f7be2f202bf3778cd45eb23c36956512fec073f Mon Sep 17 00:00:00 2001 From: omanshkrishn <138091069+omanshkrishn@users.noreply.github.com> Date: Tue, 28 Nov 2023 00:56:37 +0530 Subject: [PATCH 26/28] remove obselete sepolicy --- build_rom.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/build_rom.sh b/build_rom.sh index a2ade9bf87c..8d79a30821c 100644 --- a/build_rom.sh +++ b/build_rom.sh @@ -1,4 +1,5 @@ # sync rom + repo init --depth=1 --no-repo-verify -u https://github.com/Evolution-X/manifest.git -b udc -g default,-mips,-darwin,-notdefault git clone https://codeberg.org/omansh-krishn/local_manifest.git --depth 1 -b evolution-x .repo/local_manifests repo sync -c --no-clone-bundle --no-tags --optimized-fetch --prune --force-sync -j8 From 0c82c4bf1a3d06736dd1516904bc03937d202dcb Mon Sep 17 00:00:00 2001 From: omanshkrishn <138091069+omanshkrishn@users.noreply.github.com> Date: Tue, 28 Nov 2023 07:23:16 +0530 Subject: [PATCH 27/28] retry --- build_rom.sh | 1 - 1 file changed, 1 deletion(-) diff --git a/build_rom.sh b/build_rom.sh index 8d79a30821c..a2ade9bf87c 100644 --- a/build_rom.sh +++ b/build_rom.sh @@ -1,5 +1,4 @@ # sync rom - repo init --depth=1 --no-repo-verify -u https://github.com/Evolution-X/manifest.git -b udc -g default,-mips,-darwin,-notdefault git clone https://codeberg.org/omansh-krishn/local_manifest.git --depth 1 -b evolution-x .repo/local_manifests repo sync -c --no-clone-bundle --no-tags --optimized-fetch --prune --force-sync -j8 From 8a3501a225ab638255bf35ab3f5505d8a7727c5e Mon Sep 17 00:00:00 2001 From: omanshkrishn <138091069+omanshkrishn@users.noreply.github.com> Date: Tue, 28 Nov 2023 13:49:51 +0530 Subject: [PATCH 28/28] retrigger --- build_rom.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/build_rom.sh b/build_rom.sh index a2ade9bf87c..8d79a30821c 100644 --- a/build_rom.sh +++ b/build_rom.sh @@ -1,4 +1,5 @@ # sync rom + repo init --depth=1 --no-repo-verify -u https://github.com/Evolution-X/manifest.git -b udc -g default,-mips,-darwin,-notdefault git clone https://codeberg.org/omansh-krishn/local_manifest.git --depth 1 -b evolution-x .repo/local_manifests repo sync -c --no-clone-bundle --no-tags --optimized-fetch --prune --force-sync -j8