From f2456a92f49176bccd038c3da5ea1805b27cd746 Mon Sep 17 00:00:00 2001 From: Alexandre Roux Date: Wed, 3 Jan 2024 21:48:36 +0000 Subject: [PATCH 01/10] Update 14 files - /src/main/resources/yaml/OnePlus8Pro_fs.yml - /src/main/resources/yaml/OnePlus8_fs.yml - /src/main/resources/yaml/OnePlusNord_fs.yml - /src/main/resources/yaml/sunfish_fs.yml - /src/main/resources/yaml/sunfish_flash.yml - /src/main/resources/yaml/OnePlus7T_fs.yml - /src/main/resources/yaml/OnePlus7Pro_fs.yml - /src/main/resources/yaml/OnePlus7Pro_flash.yml - /src/main/resources/yaml/OnePlus7T_flash.yml - /src/main/resources/yaml/OnePlus8_flash.yml - /src/main/resources/yaml/OnePlus8Pro_flash.yml - /src/main/resources/yaml/OnePlusNord_flash.yml - /flash-scripts/linux/install-zipped-recovery-boot.sh - /flash-scripts/linux/install-zipped-recovery.sh --- .../linux/install-zipped-recovery-boot.sh | 6 +- .../linux/install-zipped-recovery.sh | 61 +++++++++++++++++++ src/main/resources/yaml/OnePlus7Pro_flash.yml | 2 +- src/main/resources/yaml/OnePlus7Pro_fs.yml | 8 +-- src/main/resources/yaml/OnePlus7T_flash.yml | 2 +- src/main/resources/yaml/OnePlus7T_fs.yml | 8 +-- src/main/resources/yaml/OnePlus8Pro_flash.yml | 2 +- src/main/resources/yaml/OnePlus8Pro_fs.yml | 8 +-- src/main/resources/yaml/OnePlus8_flash.yml | 2 +- src/main/resources/yaml/OnePlus8_fs.yml | 8 +-- src/main/resources/yaml/OnePlusNord_flash.yml | 2 +- src/main/resources/yaml/OnePlusNord_fs.yml | 8 +-- src/main/resources/yaml/sunfish_flash.yml | 2 +- src/main/resources/yaml/sunfish_fs.yml | 4 +- 14 files changed, 92 insertions(+), 31 deletions(-) create mode 100644 flash-scripts/linux/install-zipped-recovery.sh diff --git a/flash-scripts/linux/install-zipped-recovery-boot.sh b/flash-scripts/linux/install-zipped-recovery-boot.sh index 8fe64836..dc408022 100755 --- a/flash-scripts/linux/install-zipped-recovery-boot.sh +++ b/flash-scripts/linux/install-zipped-recovery-boot.sh @@ -52,10 +52,10 @@ then fi echo "Flashing boot $DEVICE_ID" -"$FASTBOOT_PATH" flash boot "$OUTPUT_FOLDER"/boot-*-redfin.img +"$FASTBOOT_PATH" flash boot "$OUTPUT_FOLDER"/boot-*-*.img echo "Flashing dtbo $DEVICE_ID" -"$FASTBOOT_PATH" flash dtbo "$OUTPUT_FOLDER"/dtbo-*-redfin.img +"$FASTBOOT_PATH" flash dtbo "$OUTPUT_FOLDER"/dtbo-*-*.img echo "Flash the recovery $DEVICE_ID" -"$FASTBOOT_PATH" flash vendor_boot "$OUTPUT_FOLDER"/recovery-*-redfin.img +"$FASTBOOT_PATH" flash vendor_boot "$OUTPUT_FOLDER"/recovery-*-*.img diff --git a/flash-scripts/linux/install-zipped-recovery.sh b/flash-scripts/linux/install-zipped-recovery.sh new file mode 100644 index 00000000..96ed6cd9 --- /dev/null +++ b/flash-scripts/linux/install-zipped-recovery.sh @@ -0,0 +1,61 @@ +#!/bin/bash + +# Copyright (C) 2023 Murena SAS - Author: SahilSonar +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see . + +# Parameter +# $1: TWRP_IMAGE_PATH need twrp path (${TWRP_FOLDER}/${TWRP}) +# $2: FASTBOOT_FOLDER_PATH needs fastboot binary path +# $3: JAVA_FOLDER_PATH needs java binary path + +# Exit status +# - 0 : Recovery installed +# - 101 : TWRP_IMAGE_PATH missing +# - 103 : Failed to unzip + +TWRP_IMAGE_PATH=$1 +OUTPUT_FOLDER=$(dirname $TWRP_IMAGE_PATH) +FASTBOOT_FOLDER_PATH=$2 +FASTBOOT_PATH=${FASTBOOT_FOLDER_PATH}"fastboot" +JAVA_FOLDER_PATH=$3 +JAR_PATH=${JAVA_FOLDER_PATH}"/bin/jar" + +echo "fastboot path: $FASTBOOT_PATH" + +if [ -z "$TWRP_IMAGE_PATH" ] +then + echo "TWRP Image path is empty" + exit 101 +fi + +# Delete any existing *.img files in OUTPUT_FOLDER +rm -rf "$OUTPUT_FOLDER"/*.img +rm -rf "$OUTPUT_FOLDER"/*.img.sha256sum + +# Use jar tool to extract all .img files from the zip archive +cd "$OUTPUT_FOLDER" || exit 102 +if ! "$JAR_PATH" -x -v -f "$TWRP_IMAGE_PATH" ; +then + exit 103 +fi + +echo "Flashing boot $DEVICE_ID" +"$FASTBOOT_PATH" flash boot "$OUTPUT_FOLDER"/boot-*-*.img + +echo "Flashing dtbo $DEVICE_ID" +"$FASTBOOT_PATH" flash dtbo "$OUTPUT_FOLDER"/dtbo-*-*.img + +echo "Flash the recovery $DEVICE_ID" +"$FASTBOOT_PATH" flash recovery "$OUTPUT_FOLDER"/recovery-*-*.img diff --git a/src/main/resources/yaml/OnePlus7Pro_flash.yml b/src/main/resources/yaml/OnePlus7Pro_flash.yml index 27044181..5b021eb2 100644 --- a/src/main/resources/yaml/OnePlus7Pro_flash.yml +++ b/src/main/resources/yaml/OnePlus7Pro_flash.yml @@ -113,7 +113,7 @@ steps: instructions: - install_instr_recoveryInstall averageTime: 3 - script: install-e-recovery-boot + script: install-zipped-recovery-boot parameters: fastboot_folder_path: ${ADB_FOLDER_PATH} twrp_image_path: ${TWRP_IMAGE_PATH} diff --git a/src/main/resources/yaml/OnePlus7Pro_fs.yml b/src/main/resources/yaml/OnePlus7Pro_fs.yml index 006df80e..48f9853e 100644 --- a/src/main/resources/yaml/OnePlus7Pro_fs.yml +++ b/src/main/resources/yaml/OnePlus7Pro_fs.yml @@ -16,11 +16,11 @@ --- sources: rom: - url: https://images.ecloud.global/dev/guacamole/e-latest-s-guacamole.zip - filePath: e-latest-s-guacamole.zip + url: https://images.ecloud.global/dev/guacamole/e-latest-t-guacamole.zip + filePath: e-latest-t-guacamole.zip twrp: - url: https://images.ecloud.global/dev/guacamole/recovery-e-latest-s-guacamole.img - filePath: recovery-e-latest-s-guacamole.img + url: https://images.ecloud.global/dev/guacamole/recovery-IMG-e-latest-t-guacamole.zip + filePath: recovery-IMG-e-latest-t-guacamole.img patch: url: https://images.ecloud.global/stable/copy-partitions-20210323_1922.zip filePath: copy-partitions-20210323_1922.zip diff --git a/src/main/resources/yaml/OnePlus7T_flash.yml b/src/main/resources/yaml/OnePlus7T_flash.yml index d00ee101..2d48f9e8 100644 --- a/src/main/resources/yaml/OnePlus7T_flash.yml +++ b/src/main/resources/yaml/OnePlus7T_flash.yml @@ -113,7 +113,7 @@ steps: instructions: - install_instr_recoveryInstall averageTime: 3 - script: install-e-recovery + script: install-zipped-recovery parameters: fastboot_folder_path: ${ADB_FOLDER_PATH} twrp_image_path: ${TWRP_IMAGE_PATH} diff --git a/src/main/resources/yaml/OnePlus7T_fs.yml b/src/main/resources/yaml/OnePlus7T_fs.yml index 4385f1eb..2e08c04e 100644 --- a/src/main/resources/yaml/OnePlus7T_fs.yml +++ b/src/main/resources/yaml/OnePlus7T_fs.yml @@ -16,11 +16,11 @@ --- sources: rom: - url: https://images.ecloud.global/dev/hotdogb/e-latest-s-hotdogb.zip - filePath: e-latest-s-hotdogb.zip + url: https://images.ecloud.global/dev/hotdogb/e-latest-t-hotdogb.zip + filePath: e-latest-t-hotdogb.zip twrp: - url: https://images.ecloud.global/dev/hotdogb/recovery-e-latest-s-hotdogb.img - filePath: recovery-e-latest-s-hotdogb.img + url: https://images.ecloud.global/dev/hotdogb/recovery-IMG-e-latest-s-hotdogb.zip + filePath: recovery-IMG-e-latest-s-hotdogb.zip patch: url: https://images.ecloud.global/stable/copy-partitions-20210323_1922.zip filePath: copy-partitions-20210323_1922.zip diff --git a/src/main/resources/yaml/OnePlus8Pro_flash.yml b/src/main/resources/yaml/OnePlus8Pro_flash.yml index 05809819..933e6dbd 100644 --- a/src/main/resources/yaml/OnePlus8Pro_flash.yml +++ b/src/main/resources/yaml/OnePlus8Pro_flash.yml @@ -114,7 +114,7 @@ steps: instructions: - install_instr_recoveryInstall averageTime: 3 - script: install-e-recovery + script: install-zipped-recovery parameters: fastboot_folder_path: ${ADB_FOLDER_PATH} twrp_image_path: ${TWRP_IMAGE_PATH} diff --git a/src/main/resources/yaml/OnePlus8Pro_fs.yml b/src/main/resources/yaml/OnePlus8Pro_fs.yml index be079dfc..f78c4727 100644 --- a/src/main/resources/yaml/OnePlus8Pro_fs.yml +++ b/src/main/resources/yaml/OnePlus8Pro_fs.yml @@ -16,11 +16,11 @@ --- sources: rom: - url: https://images.ecloud.global/dev/instantnoodlep/e-latest-s-instantnoodlep.zip - filePath: e-latest-s-instantnoodlep.zip + url: https://images.ecloud.global/dev/instantnoodlep/e-latest-t-instantnoodlep.zip + filePath: e-latest-t-instantnoodlep.zip twrp: - url: https://images.ecloud.global/dev/instantnoodlep/recovery-e-latest-s-instantnoodlep.img - filePath: recovery-e-latest-s-instantnoodlep.img + url: https://images.ecloud.global/dev/instantnoodlep/recovery-IMG-e-latest-t-instantnoodlep.zip + filePath: recovery-e-latest-t-instantnoodlep.img patch: url: https://images.ecloud.global/stable/copy-partitions-20210323_1922.zip filePath: copy-partitions-20210323_1922.zip diff --git a/src/main/resources/yaml/OnePlus8_flash.yml b/src/main/resources/yaml/OnePlus8_flash.yml index 05809819..933e6dbd 100644 --- a/src/main/resources/yaml/OnePlus8_flash.yml +++ b/src/main/resources/yaml/OnePlus8_flash.yml @@ -114,7 +114,7 @@ steps: instructions: - install_instr_recoveryInstall averageTime: 3 - script: install-e-recovery + script: install-zipped-recovery parameters: fastboot_folder_path: ${ADB_FOLDER_PATH} twrp_image_path: ${TWRP_IMAGE_PATH} diff --git a/src/main/resources/yaml/OnePlus8_fs.yml b/src/main/resources/yaml/OnePlus8_fs.yml index 7c6a3b81..37751291 100644 --- a/src/main/resources/yaml/OnePlus8_fs.yml +++ b/src/main/resources/yaml/OnePlus8_fs.yml @@ -16,11 +16,11 @@ --- sources: rom: - url: https://images.ecloud.global/dev/instantnoodle/e-latest-s-instantnoodle.zip - filePath: e-latest-s-instantnoodle.zip + url: https://images.ecloud.global/dev/instantnoodle/e-latest-t-instantnoodle.zip + filePath: e-latest-t-instantnoodle.zip twrp: - url: https://images.ecloud.global/dev/instantnoodle/recovery-e-latest-s-instantnoodle.img - filePath: recovery-e-latest-s-instantnoodle.img + url: https://images.ecloud.global/dev/instantnoodle/recovery-IMG-e-latest-t-instantnoodle.zip + filePath: recovery-IMG-e-latest-t-instantnoodle.zip patch: url: https://images.ecloud.global/stable/copy-partitions-20210323_1922.zip filePath: copy-partitions-20210323_1922.zip diff --git a/src/main/resources/yaml/OnePlusNord_flash.yml b/src/main/resources/yaml/OnePlusNord_flash.yml index 9774b0a7..59d3afe1 100644 --- a/src/main/resources/yaml/OnePlusNord_flash.yml +++ b/src/main/resources/yaml/OnePlusNord_flash.yml @@ -114,7 +114,7 @@ steps: instructions: - install_instr_recoveryInstall averageTime: 3 - script: install-e-recovery + script: install-zipped-recovery parameters: fastboot_folder_path: ${ADB_FOLDER_PATH} twrp_image_path: ${TWRP_IMAGE_PATH} diff --git a/src/main/resources/yaml/OnePlusNord_fs.yml b/src/main/resources/yaml/OnePlusNord_fs.yml index ebdb46c6..817d01fa 100644 --- a/src/main/resources/yaml/OnePlusNord_fs.yml +++ b/src/main/resources/yaml/OnePlusNord_fs.yml @@ -16,8 +16,8 @@ --- sources: rom: - url: https://images.ecloud.global/stable/avicii/e-latest-s-avicii.zip - filePath: e-latest-s-avicii.zip + url: https://images.ecloud.global/stable/avicii/e-latest-t-avicii.zip + filePath: e-latest-t-avicii.zip twrp: - url: https://images.ecloud.global/stable/avicii/recovery-e-latest-s-avicii.img - filePath: recovery-e-latest-s-avicii.img + url: https://images.ecloud.global/stable/avicii/recovery-IMG-e-latest-t-avicii.zip + filePath: recovery-IMG-e-latest-s-avicii.zip diff --git a/src/main/resources/yaml/sunfish_flash.yml b/src/main/resources/yaml/sunfish_flash.yml index b8cba20f..f5407fa8 100644 --- a/src/main/resources/yaml/sunfish_flash.yml +++ b/src/main/resources/yaml/sunfish_flash.yml @@ -76,7 +76,7 @@ steps: instructions: - install_instr_recoveryInstall averageTime: 3 - script: install-e-recovery-boot + script: install-zipped-recovery-boot parameters: fastboot_folder_path: ${ADB_FOLDER_PATH} twrp_image_path: ${TWRP_IMAGE_PATH} diff --git a/src/main/resources/yaml/sunfish_fs.yml b/src/main/resources/yaml/sunfish_fs.yml index cbd30f34..b0f04126 100644 --- a/src/main/resources/yaml/sunfish_fs.yml +++ b/src/main/resources/yaml/sunfish_fs.yml @@ -19,5 +19,5 @@ sources: url: https://images.ecloud.global/dev/sunfish/e-latest-s-sunfish.zip filePath: e-latest-s-sunfish.zip twrp: - url: https://images.ecloud.global/dev/sunfish/recovery-e-latest-s-sunfish.img - filePath: recovery-e-latest-s-sunfish.img + url: https://images.ecloud.global/dev/sunfish/recovery-IMG-e-latest-s-sunfish.zip + filePath: recovery-IMG-e-latest-t-sunfish.zip -- GitLab From 5be505c19be7bdba648903e1a03de3495a257035 Mon Sep 17 00:00:00 2001 From: Alexandre Roux Date: Thu, 4 Jan 2024 20:01:35 +0000 Subject: [PATCH 02/10] upgrade to android T --- src/main/resources/yaml/bramble_flash.yml | 2 +- src/main/resources/yaml/bramble_fs.yml | 8 ++++---- src/main/resources/yaml/coral_flash.yml | 2 +- src/main/resources/yaml/coral_fs.yml | 8 ++++---- 4 files changed, 10 insertions(+), 10 deletions(-) diff --git a/src/main/resources/yaml/bramble_flash.yml b/src/main/resources/yaml/bramble_flash.yml index 0677fec9..1ffee846 100644 --- a/src/main/resources/yaml/bramble_flash.yml +++ b/src/main/resources/yaml/bramble_flash.yml @@ -76,7 +76,7 @@ steps: instructions: - install_instr_recoveryInstall averageTime: 3 - script: install-e-recovery-boot + script: install-zipped-recovery-boot parameters: fastboot_folder_path: ${ADB_FOLDER_PATH} twrp_image_path: ${TWRP_IMAGE_PATH} diff --git a/src/main/resources/yaml/bramble_fs.yml b/src/main/resources/yaml/bramble_fs.yml index 1f15a65a..83591974 100644 --- a/src/main/resources/yaml/bramble_fs.yml +++ b/src/main/resources/yaml/bramble_fs.yml @@ -16,8 +16,8 @@ --- sources: rom: - url: https://images.ecloud.global/dev/bramble/e-latest-s-bramble.zip - filePath: e-latest-s-bramble.zip + url: https://images.ecloud.global/dev/bramble/e-latest-t-bramble.zip + filePath: e-latest-t-bramble.zip twrp: - url: https://images.ecloud.global/dev/bramble/recovery-e-latest-s-bramble.img - filePath: recovery-e-latest-s-bramble.img + url: https://images.ecloud.global/dev/bramble/recovery-IMG-e-latest-t-bramble.img + filePath: recovery-IMG-e-latest-t-bramble.img diff --git a/src/main/resources/yaml/coral_flash.yml b/src/main/resources/yaml/coral_flash.yml index b8cba20f..f5407fa8 100644 --- a/src/main/resources/yaml/coral_flash.yml +++ b/src/main/resources/yaml/coral_flash.yml @@ -76,7 +76,7 @@ steps: instructions: - install_instr_recoveryInstall averageTime: 3 - script: install-e-recovery-boot + script: install-zipped-recovery-boot parameters: fastboot_folder_path: ${ADB_FOLDER_PATH} twrp_image_path: ${TWRP_IMAGE_PATH} diff --git a/src/main/resources/yaml/coral_fs.yml b/src/main/resources/yaml/coral_fs.yml index 2a04865a..f345d86f 100644 --- a/src/main/resources/yaml/coral_fs.yml +++ b/src/main/resources/yaml/coral_fs.yml @@ -16,9 +16,9 @@ --- sources: rom: - url: https://images.ecloud.global/dev/coral/e-latest-s-coral.zip - filePath: e-latest-s-coral.zip + url: https://images.ecloud.global/dev/coral/e-latest-t-coral.zip + filePath: e-latest-t-coral.zip twrp: - url: https://images.ecloud.global/dev/coral/recovery-e-latest-s-coral.img - filePath: recovery-e-latest-s-coral.img + url: https://images.ecloud.global/dev/coral/recovery-IMG-latest-t-coral.zip + filePath: recovery-IMG-e-latest-t-coral.zip -- GitLab From 71123124d076d542ef56db397d7519575ae624f9 Mon Sep 17 00:00:00 2001 From: Alexandre Roux Date: Tue, 16 Jan 2024 16:02:14 +0000 Subject: [PATCH 03/10] missing bat file + opening to other devices than redfin --- .../windows/install-zipped-recovery-boot.bat | 6 +- .../windows/install-zipped-recovery.bat | 62 +++++++++++++++++++ 2 files changed, 65 insertions(+), 3 deletions(-) create mode 100644 flash-scripts/windows/install-zipped-recovery.bat diff --git a/flash-scripts/windows/install-zipped-recovery-boot.bat b/flash-scripts/windows/install-zipped-recovery-boot.bat index cd64209e..d47e4404 100644 --- a/flash-scripts/windows/install-zipped-recovery-boot.bat +++ b/flash-scripts/windows/install-zipped-recovery-boot.bat @@ -53,10 +53,10 @@ IF %ERRORLEVEL% neq 0 ( ) echo "Flashing boot" -for %%I in (%OUTPUT_FOLDER%\boot-*-redfin.img) do %FASTBOOT_PATH% flash boot "%%I" +for %%I in (%OUTPUT_FOLDER%\boot-*-*.img) do %FASTBOOT_PATH% flash boot "%%I" echo "Flashing dtbo" -for %%I in (%OUTPUT_FOLDER%\dtbo-*-redfin.img) do %FASTBOOT_PATH% flash dtbo "%%I" +for %%I in (%OUTPUT_FOLDER%\dtbo-*-*.img) do %FASTBOOT_PATH% flash dtbo "%%I" echo "Flash the recovery" -for %%I in (%OUTPUT_FOLDER%\recovery-*-redfin.img) do %FASTBOOT_PATH% flash vendor_boot "%%I" +for %%I in (%OUTPUT_FOLDER%\recovery-*-*.img) do %FASTBOOT_PATH% flash vendor_boot "%%I" diff --git a/flash-scripts/windows/install-zipped-recovery.bat b/flash-scripts/windows/install-zipped-recovery.bat new file mode 100644 index 00000000..59a9ef72 --- /dev/null +++ b/flash-scripts/windows/install-zipped-recovery.bat @@ -0,0 +1,62 @@ +@echo off + +:: !/bin/bash + +:: Copyright (C) 2023 Murena SAS - Author: SahilSonar + +:: This program is free software: you can redistribute it and/or modify +:: it under the terms of the GNU General Public License as published by +:: the Free Software Foundation, either version 3 of the License, or +:: (at your option) any later version. + +:: This program is distributed in the hope that it will be useful, +:: but WITHOUT ANY WARRANTY; without even the implied warranty of +:: MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +:: GNU General Public License for more details. + +:: You should have received a copy of the GNU General Public License +:: along with this program. If not, see . + +:: Parameter +:: $1: TWRP_IMAGE_PATH need twrp path (${TWRP_FOLDER}/${TWRP}) +:: $2: FASTBOOT_FOLDER_PATH needs fastboot binary path +:: $3: JAVA_FOLDER_PATH needs java binary path +:: Exit status +:: - 0 : Recovery installed +:: - 101 : TWRP_IMAGE_PATH missing +:: - 103 : Failed to unzip + +SET TWRP_IMAGE_PATH=%1 +SET OUTPUT_FOLDER=%~dp1 +SET FASTBOOT_FOLDER_PATH=%2 +SET FASTBOOT_PATH=%FASTBOOT_FOLDER_PATH%fastboot +SET JAVA_FOLDER_PATH=%3 +SET JAR_PATH=%JAVA_FOLDER_PATH%\bin\jar + +echo "fastboot path: %FASTBOOT_PATH%" + +IF not defined TWRP_IMAGE_PATH ( + echo "TWRP Image path is empty" + exit /b 101 +) + +:: Delete any existing *.img files in OUTPUT_FOLDER +del /Q %OUTPUT_FOLDER%\*.img +del /Q %OUTPUT_FOLDER%\*.img.sha256sum + +:: Use jar tool to extract all .img files from the zip archive +cd %OUTPUT_FOLDER% || exit /b 102 +%JAR_PATH% -x -v -f "%TWRP_IMAGE_PATH%" + +IF %ERRORLEVEL% neq 0 ( + exit /b 103 +) + +echo "Flashing boot" +for %%I in (%OUTPUT_FOLDER%\boot-*-*.img) do %FASTBOOT_PATH% flash boot "%%I" + +echo "Flashing dtbo" +for %%I in (%OUTPUT_FOLDER%\dtbo-*-*.img) do %FASTBOOT_PATH% flash dtbo "%%I" + +echo "Flash the recovery" +for %%I in (%OUTPUT_FOLDER%\recovery-*-*.img) do %FASTBOOT_PATH% flash recovery "%%I" -- GitLab From 7dc32a2557bbb0480c8783355352af34b377d9e2 Mon Sep 17 00:00:00 2001 From: Alexandre Roux Date: Thu, 18 Jan 2024 16:09:18 +0000 Subject: [PATCH 04/10] fixing mistake version name --- src/main/resources/yaml/OnePlus7T_fs.yml | 4 ++-- src/main/resources/yaml/OnePlusNord_fs.yml | 2 +- src/main/resources/yaml/sunfish_fs.yml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/main/resources/yaml/OnePlus7T_fs.yml b/src/main/resources/yaml/OnePlus7T_fs.yml index 2e08c04e..6f9469fd 100644 --- a/src/main/resources/yaml/OnePlus7T_fs.yml +++ b/src/main/resources/yaml/OnePlus7T_fs.yml @@ -19,8 +19,8 @@ sources: url: https://images.ecloud.global/dev/hotdogb/e-latest-t-hotdogb.zip filePath: e-latest-t-hotdogb.zip twrp: - url: https://images.ecloud.global/dev/hotdogb/recovery-IMG-e-latest-s-hotdogb.zip - filePath: recovery-IMG-e-latest-s-hotdogb.zip + url: https://images.ecloud.global/dev/hotdogb/recovery-IMG-e-latest-t-hotdogb.zip + filePath: recovery-IMG-e-latest-t-hotdogb.zip patch: url: https://images.ecloud.global/stable/copy-partitions-20210323_1922.zip filePath: copy-partitions-20210323_1922.zip diff --git a/src/main/resources/yaml/OnePlusNord_fs.yml b/src/main/resources/yaml/OnePlusNord_fs.yml index 817d01fa..003d741e 100644 --- a/src/main/resources/yaml/OnePlusNord_fs.yml +++ b/src/main/resources/yaml/OnePlusNord_fs.yml @@ -20,4 +20,4 @@ sources: filePath: e-latest-t-avicii.zip twrp: url: https://images.ecloud.global/stable/avicii/recovery-IMG-e-latest-t-avicii.zip - filePath: recovery-IMG-e-latest-s-avicii.zip + filePath: recovery-IMG-e-latest-t-avicii.zip diff --git a/src/main/resources/yaml/sunfish_fs.yml b/src/main/resources/yaml/sunfish_fs.yml index b0f04126..a0a6dfca 100644 --- a/src/main/resources/yaml/sunfish_fs.yml +++ b/src/main/resources/yaml/sunfish_fs.yml @@ -19,5 +19,5 @@ sources: url: https://images.ecloud.global/dev/sunfish/e-latest-s-sunfish.zip filePath: e-latest-s-sunfish.zip twrp: - url: https://images.ecloud.global/dev/sunfish/recovery-IMG-e-latest-s-sunfish.zip + url: https://images.ecloud.global/dev/sunfish/recovery-IMG-e-latest-t-sunfish.zip filePath: recovery-IMG-e-latest-t-sunfish.zip -- GitLab From 3ec3bacf987d8695a0bd5a38418efaa85a083b4a Mon Sep 17 00:00:00 2001 From: Alexandre Roux Date: Fri, 19 Jan 2024 14:38:37 +0000 Subject: [PATCH 05/10] Update sunfish_fs.yml --- src/main/resources/yaml/sunfish_fs.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/resources/yaml/sunfish_fs.yml b/src/main/resources/yaml/sunfish_fs.yml index a0a6dfca..f865cc8c 100644 --- a/src/main/resources/yaml/sunfish_fs.yml +++ b/src/main/resources/yaml/sunfish_fs.yml @@ -16,8 +16,8 @@ --- sources: rom: - url: https://images.ecloud.global/dev/sunfish/e-latest-s-sunfish.zip - filePath: e-latest-s-sunfish.zip + url: https://images.ecloud.global/dev/sunfish/e-latest-t-sunfish.zip + filePath: e-latest-t-sunfish.zip twrp: url: https://images.ecloud.global/dev/sunfish/recovery-IMG-e-latest-t-sunfish.zip filePath: recovery-IMG-e-latest-t-sunfish.zip -- GitLab From bee43ebbcf3de7b6c72e3610f6f5a2d38720daa5 Mon Sep 17 00:00:00 2001 From: Alexandre Roux Date: Mon, 29 Jan 2024 17:17:58 +0000 Subject: [PATCH 06/10] fix bad paths --- src/main/resources/yaml/OnePlus7Pro_flash.yml | 3 ++- src/main/resources/yaml/OnePlus7T_flash.yml | 3 ++- src/main/resources/yaml/OnePlus8Pro_flash.yml | 3 ++- src/main/resources/yaml/OnePlus8_flash.yml | 3 ++- src/main/resources/yaml/OnePlusNord_flash.yml | 3 ++- src/main/resources/yaml/bramble_flash.yml | 3 ++- src/main/resources/yaml/coral_flash.yml | 3 ++- src/main/resources/yaml/sunfish_flash.yml | 3 ++- 8 files changed, 16 insertions(+), 8 deletions(-) diff --git a/src/main/resources/yaml/OnePlus7Pro_flash.yml b/src/main/resources/yaml/OnePlus7Pro_flash.yml index 5b021eb2..5fff707b 100644 --- a/src/main/resources/yaml/OnePlus7Pro_flash.yml +++ b/src/main/resources/yaml/OnePlus7Pro_flash.yml @@ -115,8 +115,9 @@ steps: averageTime: 3 script: install-zipped-recovery-boot parameters: - fastboot_folder_path: ${ADB_FOLDER_PATH} twrp_image_path: ${TWRP_IMAGE_PATH} + fastboot_folder_path: ${ADB_FOLDER_PATH} + java_folder_path: ${JAVA_FOLDER_PATH} okCodes: 0: ~ koCodes: diff --git a/src/main/resources/yaml/OnePlus7T_flash.yml b/src/main/resources/yaml/OnePlus7T_flash.yml index 2d48f9e8..c2042fe5 100644 --- a/src/main/resources/yaml/OnePlus7T_flash.yml +++ b/src/main/resources/yaml/OnePlus7T_flash.yml @@ -115,8 +115,9 @@ steps: averageTime: 3 script: install-zipped-recovery parameters: - fastboot_folder_path: ${ADB_FOLDER_PATH} twrp_image_path: ${TWRP_IMAGE_PATH} + fastboot_folder_path: ${ADB_FOLDER_PATH} + java_folder_path: ${JAVA_FOLDER_PATH} okCodes: 0: ~ koCodes: diff --git a/src/main/resources/yaml/OnePlus8Pro_flash.yml b/src/main/resources/yaml/OnePlus8Pro_flash.yml index 933e6dbd..b05d6cdb 100644 --- a/src/main/resources/yaml/OnePlus8Pro_flash.yml +++ b/src/main/resources/yaml/OnePlus8Pro_flash.yml @@ -116,8 +116,9 @@ steps: averageTime: 3 script: install-zipped-recovery parameters: - fastboot_folder_path: ${ADB_FOLDER_PATH} twrp_image_path: ${TWRP_IMAGE_PATH} + fastboot_folder_path: ${ADB_FOLDER_PATH} + java_folder_path: ${JAVA_FOLDER_PATH} okCodes: 0: ~ koCodes: diff --git a/src/main/resources/yaml/OnePlus8_flash.yml b/src/main/resources/yaml/OnePlus8_flash.yml index 933e6dbd..b05d6cdb 100644 --- a/src/main/resources/yaml/OnePlus8_flash.yml +++ b/src/main/resources/yaml/OnePlus8_flash.yml @@ -116,8 +116,9 @@ steps: averageTime: 3 script: install-zipped-recovery parameters: - fastboot_folder_path: ${ADB_FOLDER_PATH} twrp_image_path: ${TWRP_IMAGE_PATH} + fastboot_folder_path: ${ADB_FOLDER_PATH} + java_folder_path: ${JAVA_FOLDER_PATH} okCodes: 0: ~ koCodes: diff --git a/src/main/resources/yaml/OnePlusNord_flash.yml b/src/main/resources/yaml/OnePlusNord_flash.yml index 59d3afe1..4888eb2d 100644 --- a/src/main/resources/yaml/OnePlusNord_flash.yml +++ b/src/main/resources/yaml/OnePlusNord_flash.yml @@ -116,8 +116,9 @@ steps: averageTime: 3 script: install-zipped-recovery parameters: - fastboot_folder_path: ${ADB_FOLDER_PATH} twrp_image_path: ${TWRP_IMAGE_PATH} + fastboot_folder_path: ${ADB_FOLDER_PATH} + java_folder_path: ${JAVA_FOLDER_PATH} okCodes: 0: ~ koCodes: diff --git a/src/main/resources/yaml/bramble_flash.yml b/src/main/resources/yaml/bramble_flash.yml index 1ffee846..8563428a 100644 --- a/src/main/resources/yaml/bramble_flash.yml +++ b/src/main/resources/yaml/bramble_flash.yml @@ -78,8 +78,9 @@ steps: averageTime: 3 script: install-zipped-recovery-boot parameters: - fastboot_folder_path: ${ADB_FOLDER_PATH} twrp_image_path: ${TWRP_IMAGE_PATH} + fastboot_folder_path: ${ADB_FOLDER_PATH} + java_folder_path: ${JAVA_FOLDER_PATH} okCodes: 0: ~ koCodes: diff --git a/src/main/resources/yaml/coral_flash.yml b/src/main/resources/yaml/coral_flash.yml index f5407fa8..c5bdde47 100644 --- a/src/main/resources/yaml/coral_flash.yml +++ b/src/main/resources/yaml/coral_flash.yml @@ -78,8 +78,9 @@ steps: averageTime: 3 script: install-zipped-recovery-boot parameters: - fastboot_folder_path: ${ADB_FOLDER_PATH} twrp_image_path: ${TWRP_IMAGE_PATH} + fastboot_folder_path: ${ADB_FOLDER_PATH} + java_folder_path: ${JAVA_FOLDER_PATH} okCodes: 0: ~ koCodes: diff --git a/src/main/resources/yaml/sunfish_flash.yml b/src/main/resources/yaml/sunfish_flash.yml index f5407fa8..c5bdde47 100644 --- a/src/main/resources/yaml/sunfish_flash.yml +++ b/src/main/resources/yaml/sunfish_flash.yml @@ -78,8 +78,9 @@ steps: averageTime: 3 script: install-zipped-recovery-boot parameters: - fastboot_folder_path: ${ADB_FOLDER_PATH} twrp_image_path: ${TWRP_IMAGE_PATH} + fastboot_folder_path: ${ADB_FOLDER_PATH} + java_folder_path: ${JAVA_FOLDER_PATH} okCodes: 0: ~ koCodes: -- GitLab From 64778a694559dc695d65bac37216ae617eb831a8 Mon Sep 17 00:00:00 2001 From: Alexandre Roux Date: Tue, 30 Jan 2024 09:38:37 +0000 Subject: [PATCH 07/10] use recovery.img as boot partition --- flash-scripts/linux/install-zipped-recovery.sh | 2 +- flash-scripts/windows/install-zipped-recovery.bat | 2 +- src/main/resources/yaml/sunfish_flash.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/flash-scripts/linux/install-zipped-recovery.sh b/flash-scripts/linux/install-zipped-recovery.sh index 96ed6cd9..4b6144e5 100644 --- a/flash-scripts/linux/install-zipped-recovery.sh +++ b/flash-scripts/linux/install-zipped-recovery.sh @@ -52,7 +52,7 @@ then fi echo "Flashing boot $DEVICE_ID" -"$FASTBOOT_PATH" flash boot "$OUTPUT_FOLDER"/boot-*-*.img +"$FASTBOOT_PATH" flash boot "$OUTPUT_FOLDER"/recovery-*-*.img echo "Flashing dtbo $DEVICE_ID" "$FASTBOOT_PATH" flash dtbo "$OUTPUT_FOLDER"/dtbo-*-*.img diff --git a/flash-scripts/windows/install-zipped-recovery.bat b/flash-scripts/windows/install-zipped-recovery.bat index 59a9ef72..519c756f 100644 --- a/flash-scripts/windows/install-zipped-recovery.bat +++ b/flash-scripts/windows/install-zipped-recovery.bat @@ -53,7 +53,7 @@ IF %ERRORLEVEL% neq 0 ( ) echo "Flashing boot" -for %%I in (%OUTPUT_FOLDER%\boot-*-*.img) do %FASTBOOT_PATH% flash boot "%%I" +for %%I in (%OUTPUT_FOLDER%\recovery-*-*.img) do %FASTBOOT_PATH% flash boot "%%I" echo "Flashing dtbo" for %%I in (%OUTPUT_FOLDER%\dtbo-*-*.img) do %FASTBOOT_PATH% flash dtbo "%%I" diff --git a/src/main/resources/yaml/sunfish_flash.yml b/src/main/resources/yaml/sunfish_flash.yml index c5bdde47..8a61273c 100644 --- a/src/main/resources/yaml/sunfish_flash.yml +++ b/src/main/resources/yaml/sunfish_flash.yml @@ -76,7 +76,7 @@ steps: instructions: - install_instr_recoveryInstall averageTime: 3 - script: install-zipped-recovery-boot + script: install-zipped-recovery parameters: twrp_image_path: ${TWRP_IMAGE_PATH} fastboot_folder_path: ${ADB_FOLDER_PATH} -- GitLab From 7e5dc6f889c27d2b4a68161db9e09aa6bdeda6c0 Mon Sep 17 00:00:00 2001 From: Alexandre Roux Date: Tue, 30 Jan 2024 15:07:42 +0000 Subject: [PATCH 08/10] renaming files with better names and flash only boot --- ...-recovery-boot.sh => install-e-recovery-vendor-boot.sh} | 0 flash-scripts/linux/install-zipped-recovery-boot.sh | 7 ++----- ...-recovery.sh => install-zipped-recovery-vendor-boot.sh} | 4 ++-- ...ecovery-boot.bat => install-e-recovery-vendor-boot.bat} | 0 flash-scripts/windows/install-zipped-recovery-boot.bat | 5 +---- ...ecovery.bat => install-zipped-recovery-vendor-boot.bat} | 4 ++-- src/main/resources/yaml/redfin_flash.yml | 2 +- src/main/resources/yaml/sunfish_flash.yml | 2 +- 8 files changed, 9 insertions(+), 15 deletions(-) rename flash-scripts/linux/{install-recovery-boot.sh => install-e-recovery-vendor-boot.sh} (100%) mode change 100755 => 100644 rename flash-scripts/linux/{install-zipped-recovery.sh => install-zipped-recovery-vendor-boot.sh} (93%) rename flash-scripts/windows/{install-recovery-boot.bat => install-e-recovery-vendor-boot.bat} (100%) rename flash-scripts/windows/{install-zipped-recovery.bat => install-zipped-recovery-vendor-boot.bat} (94%) diff --git a/flash-scripts/linux/install-recovery-boot.sh b/flash-scripts/linux/install-e-recovery-vendor-boot.sh old mode 100755 new mode 100644 similarity index 100% rename from flash-scripts/linux/install-recovery-boot.sh rename to flash-scripts/linux/install-e-recovery-vendor-boot.sh diff --git a/flash-scripts/linux/install-zipped-recovery-boot.sh b/flash-scripts/linux/install-zipped-recovery-boot.sh index dc408022..ac287d99 100755 --- a/flash-scripts/linux/install-zipped-recovery-boot.sh +++ b/flash-scripts/linux/install-zipped-recovery-boot.sh @@ -52,10 +52,7 @@ then fi echo "Flashing boot $DEVICE_ID" -"$FASTBOOT_PATH" flash boot "$OUTPUT_FOLDER"/boot-*-*.img +"$FASTBOOT_PATH" flash boot "$OUTPUT_FOLDER"/recovery-*-*.img echo "Flashing dtbo $DEVICE_ID" -"$FASTBOOT_PATH" flash dtbo "$OUTPUT_FOLDER"/dtbo-*-*.img - -echo "Flash the recovery $DEVICE_ID" -"$FASTBOOT_PATH" flash vendor_boot "$OUTPUT_FOLDER"/recovery-*-*.img +"$FASTBOOT_PATH" flash dtbo "$OUTPUT_FOLDER"/dtbo-*-*.img \ No newline at end of file diff --git a/flash-scripts/linux/install-zipped-recovery.sh b/flash-scripts/linux/install-zipped-recovery-vendor-boot.sh similarity index 93% rename from flash-scripts/linux/install-zipped-recovery.sh rename to flash-scripts/linux/install-zipped-recovery-vendor-boot.sh index 4b6144e5..dc408022 100644 --- a/flash-scripts/linux/install-zipped-recovery.sh +++ b/flash-scripts/linux/install-zipped-recovery-vendor-boot.sh @@ -52,10 +52,10 @@ then fi echo "Flashing boot $DEVICE_ID" -"$FASTBOOT_PATH" flash boot "$OUTPUT_FOLDER"/recovery-*-*.img +"$FASTBOOT_PATH" flash boot "$OUTPUT_FOLDER"/boot-*-*.img echo "Flashing dtbo $DEVICE_ID" "$FASTBOOT_PATH" flash dtbo "$OUTPUT_FOLDER"/dtbo-*-*.img echo "Flash the recovery $DEVICE_ID" -"$FASTBOOT_PATH" flash recovery "$OUTPUT_FOLDER"/recovery-*-*.img +"$FASTBOOT_PATH" flash vendor_boot "$OUTPUT_FOLDER"/recovery-*-*.img diff --git a/flash-scripts/windows/install-recovery-boot.bat b/flash-scripts/windows/install-e-recovery-vendor-boot.bat similarity index 100% rename from flash-scripts/windows/install-recovery-boot.bat rename to flash-scripts/windows/install-e-recovery-vendor-boot.bat diff --git a/flash-scripts/windows/install-zipped-recovery-boot.bat b/flash-scripts/windows/install-zipped-recovery-boot.bat index d47e4404..af25a414 100644 --- a/flash-scripts/windows/install-zipped-recovery-boot.bat +++ b/flash-scripts/windows/install-zipped-recovery-boot.bat @@ -53,10 +53,7 @@ IF %ERRORLEVEL% neq 0 ( ) echo "Flashing boot" -for %%I in (%OUTPUT_FOLDER%\boot-*-*.img) do %FASTBOOT_PATH% flash boot "%%I" +for %%I in (%OUTPUT_FOLDER%\recovery-*-*.img) do %FASTBOOT_PATH% flash boot "%%I" echo "Flashing dtbo" for %%I in (%OUTPUT_FOLDER%\dtbo-*-*.img) do %FASTBOOT_PATH% flash dtbo "%%I" - -echo "Flash the recovery" -for %%I in (%OUTPUT_FOLDER%\recovery-*-*.img) do %FASTBOOT_PATH% flash vendor_boot "%%I" diff --git a/flash-scripts/windows/install-zipped-recovery.bat b/flash-scripts/windows/install-zipped-recovery-vendor-boot.bat similarity index 94% rename from flash-scripts/windows/install-zipped-recovery.bat rename to flash-scripts/windows/install-zipped-recovery-vendor-boot.bat index 519c756f..d47e4404 100644 --- a/flash-scripts/windows/install-zipped-recovery.bat +++ b/flash-scripts/windows/install-zipped-recovery-vendor-boot.bat @@ -53,10 +53,10 @@ IF %ERRORLEVEL% neq 0 ( ) echo "Flashing boot" -for %%I in (%OUTPUT_FOLDER%\recovery-*-*.img) do %FASTBOOT_PATH% flash boot "%%I" +for %%I in (%OUTPUT_FOLDER%\boot-*-*.img) do %FASTBOOT_PATH% flash boot "%%I" echo "Flashing dtbo" for %%I in (%OUTPUT_FOLDER%\dtbo-*-*.img) do %FASTBOOT_PATH% flash dtbo "%%I" echo "Flash the recovery" -for %%I in (%OUTPUT_FOLDER%\recovery-*-*.img) do %FASTBOOT_PATH% flash recovery "%%I" +for %%I in (%OUTPUT_FOLDER%\recovery-*-*.img) do %FASTBOOT_PATH% flash vendor_boot "%%I" diff --git a/src/main/resources/yaml/redfin_flash.yml b/src/main/resources/yaml/redfin_flash.yml index 253d3ad4..b3afe6e3 100644 --- a/src/main/resources/yaml/redfin_flash.yml +++ b/src/main/resources/yaml/redfin_flash.yml @@ -77,7 +77,7 @@ steps: instructions: - install_instr_recoveryInstall averageTime: 3 - script: install-zipped-recovery-boot + script: install-zipped-recovery-vendor-boot parameters: twrp_image_path: ${TWRP_IMAGE_PATH} fastboot_folder_path: ${ADB_FOLDER_PATH} diff --git a/src/main/resources/yaml/sunfish_flash.yml b/src/main/resources/yaml/sunfish_flash.yml index 8a61273c..c5bdde47 100644 --- a/src/main/resources/yaml/sunfish_flash.yml +++ b/src/main/resources/yaml/sunfish_flash.yml @@ -76,7 +76,7 @@ steps: instructions: - install_instr_recoveryInstall averageTime: 3 - script: install-zipped-recovery + script: install-zipped-recovery-boot parameters: twrp_image_path: ${TWRP_IMAGE_PATH} fastboot_folder_path: ${ADB_FOLDER_PATH} -- GitLab From 35bc89150b9a1463fbe0da6191a78bfa2bb56aef Mon Sep 17 00:00:00 2001 From: Alexandre Roux Date: Tue, 30 Jan 2024 15:09:47 +0000 Subject: [PATCH 09/10] adapt other devices to new filename --- src/main/resources/yaml/OnePlus7T_flash.yml | 2 +- src/main/resources/yaml/OnePlus8Pro_flash.yml | 2 +- src/main/resources/yaml/OnePlus8_flash.yml | 2 +- src/main/resources/yaml/OnePlusNord_flash.yml | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/main/resources/yaml/OnePlus7T_flash.yml b/src/main/resources/yaml/OnePlus7T_flash.yml index c2042fe5..5fff707b 100644 --- a/src/main/resources/yaml/OnePlus7T_flash.yml +++ b/src/main/resources/yaml/OnePlus7T_flash.yml @@ -113,7 +113,7 @@ steps: instructions: - install_instr_recoveryInstall averageTime: 3 - script: install-zipped-recovery + script: install-zipped-recovery-boot parameters: twrp_image_path: ${TWRP_IMAGE_PATH} fastboot_folder_path: ${ADB_FOLDER_PATH} diff --git a/src/main/resources/yaml/OnePlus8Pro_flash.yml b/src/main/resources/yaml/OnePlus8Pro_flash.yml index b05d6cdb..1bd9d3f1 100644 --- a/src/main/resources/yaml/OnePlus8Pro_flash.yml +++ b/src/main/resources/yaml/OnePlus8Pro_flash.yml @@ -114,7 +114,7 @@ steps: instructions: - install_instr_recoveryInstall averageTime: 3 - script: install-zipped-recovery + script: install-zipped-recovery-boot parameters: twrp_image_path: ${TWRP_IMAGE_PATH} fastboot_folder_path: ${ADB_FOLDER_PATH} diff --git a/src/main/resources/yaml/OnePlus8_flash.yml b/src/main/resources/yaml/OnePlus8_flash.yml index b05d6cdb..1bd9d3f1 100644 --- a/src/main/resources/yaml/OnePlus8_flash.yml +++ b/src/main/resources/yaml/OnePlus8_flash.yml @@ -114,7 +114,7 @@ steps: instructions: - install_instr_recoveryInstall averageTime: 3 - script: install-zipped-recovery + script: install-zipped-recovery-boot parameters: twrp_image_path: ${TWRP_IMAGE_PATH} fastboot_folder_path: ${ADB_FOLDER_PATH} diff --git a/src/main/resources/yaml/OnePlusNord_flash.yml b/src/main/resources/yaml/OnePlusNord_flash.yml index 4888eb2d..50e4b376 100644 --- a/src/main/resources/yaml/OnePlusNord_flash.yml +++ b/src/main/resources/yaml/OnePlusNord_flash.yml @@ -114,7 +114,7 @@ steps: instructions: - install_instr_recoveryInstall averageTime: 3 - script: install-zipped-recovery + script: install-zipped-recovery-boot parameters: twrp_image_path: ${TWRP_IMAGE_PATH} fastboot_folder_path: ${ADB_FOLDER_PATH} -- GitLab From d72c4eb634246b648cd8cb77277e789e63de5566 Mon Sep 17 00:00:00 2001 From: Alexandre Roux Date: Wed, 31 Jan 2024 14:57:04 +0000 Subject: [PATCH 10/10] switching oneplus nord to dev channel --- src/main/resources/yaml/OnePlusNord_fs.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/resources/yaml/OnePlusNord_fs.yml b/src/main/resources/yaml/OnePlusNord_fs.yml index 003d741e..fdad8e5d 100644 --- a/src/main/resources/yaml/OnePlusNord_fs.yml +++ b/src/main/resources/yaml/OnePlusNord_fs.yml @@ -16,8 +16,8 @@ --- sources: rom: - url: https://images.ecloud.global/stable/avicii/e-latest-t-avicii.zip + url: https://images.ecloud.global/dev/avicii/e-latest-t-avicii.zip filePath: e-latest-t-avicii.zip twrp: - url: https://images.ecloud.global/stable/avicii/recovery-IMG-e-latest-t-avicii.zip + url: https://images.ecloud.global/dev/avicii/recovery-IMG-e-latest-t-avicii.zip filePath: recovery-IMG-e-latest-t-avicii.zip -- GitLab