From b49d5d8fb345bb5ece26262914d9de2c3258a800 Mon Sep 17 00:00:00 2001 From: AirysDark <47623717+AirysDark@users.noreply.github.com> Date: Sun, 12 Apr 2026 07:36:18 +1000 Subject: [PATCH 1/3] Update config.sh --- config.sh | 46 ++++++++++++++++++++++------------------------ 1 file changed, 22 insertions(+), 24 deletions(-) diff --git a/config.sh b/config.sh index bd676c0a..1700dc10 100644 --- a/config.sh +++ b/config.sh @@ -1,36 +1,34 @@ #!/bin/bash +# ========================================================= +# OrangeFox Config - Samsung T720 Wi-Fi (Android 11) +# ========================================================= -# Device -export FOX_BRANCH="fox_9.0" -export DT_LINK="https://gitlab.com/OrangeFox/device/beryllium.git -b fox_9.0" +# Device Info +DEVICE=gts4lvwifiq # T720 Android 11 device tree +OEM=samsung +FOX_BRANCH=fox_11.0 # OrangeFox branch for Android 11 -export DEVICE="beryllium" -export OEM="xiaomi" +# Device Tree URL +DT_LINK="https://gitlab.com/AirysDark/android_device_samsung_gts4lvwifi.git" # Build Target -## "recoveryimage" - for A-Only Devices without using Vendor Boot -## "bootimage" - for A/B devices without recovery partition (and without vendor boot) -## "vendorbootimage" - for devices Using vendor boot for the recovery ramdisk (Usually for devices shipped with Android 12 or higher) -export TARGET="recoveryimage" +TARGET=recoveryimage # Standard A-only recovery partition +OUTPUT="OrangeFox*.zip" -export OUTPUT="OrangeFox*.zip" - -# Additional Dependencies (eg: Kernel Source) -# Format: "repo dest" +# Dependencies (optional) DEPS=( "https://github.com/OrangeFoxRecovery/Avatar.git misc" ) -# Extra Command -export EXTRA_CMD="export OF_MAINTAINER=Sushrut1101" +# Maintainer +OF_MAINTAINER="AirysDark" # Magisk -## Use the Latest Release of Magisk for the OrangeFox addon -export OF_USE_LATEST_MAGISK=true - -# Not Recommended to Change -export SYNC_PATH="$HOME/work" # Full (absolute) path. -export USE_CCACHE=1 -export CCACHE_SIZE="50G" -export CCACHE_DIR="$HOME/work/.ccache" -export J_VAL=16 +OF_USE_LATEST_MAGISK=true + +# Build Paths / Ccache +SYNC_PATH="$HOME/work" +USE_CCACHE=1 +CCACHE_SIZE="50G" +CCACHE_DIR="$SYNC_PATH/.ccache" +J_VAL=16 # Number of parallel jobs From 342c5afd0a38f500b46e5aea93e0b2dd36b81376 Mon Sep 17 00:00:00 2001 From: AirysDark <47623717+AirysDark@users.noreply.github.com> Date: Sun, 12 Apr 2026 07:37:37 +1000 Subject: [PATCH 2/3] Update .cirrus.yml --- .cirrus.yml | 33 ++++++++++++--------------------- 1 file changed, 12 insertions(+), 21 deletions(-) diff --git a/.cirrus.yml b/.cirrus.yml index 7993202d..298dc48c 100644 --- a/.cirrus.yml +++ b/.cirrus.yml @@ -1,34 +1,25 @@ env: - # OrangeFox Sync Repository - FOX_SYNC: https://gitlab.com/OrangeFox/sync.git - - # Config - CONFIG: config.sh - - # Telegram - TG_CHAT_ID: ENCRYPTED[0003e1cf5276424a5b2afb8c6a39f2d830864e8555b37220bd3bf173f3ef5b8769ab98425d96a76adf64b18241c940dd] - TG_TOKEN: ENCRYPTED[03de4105db5d23ec42490965c0a0f79217c1e3366cb152bd9d9a045e22586eba675615e1f08bf1aea3e860d499efde60] - - # Cirrus Specific Vars (Do *NOT* Change) - CIRRUS_SHELL: bash + FOX_SYNC: https://gitlab.com/OrangeFox/sync.git + CONFIG: config.sh + CIRRUS_SHELL: bash task: - name: "Recovery Build" + name: "T720 Android 11 Recovery Build" timeout_in: 120m container: - image: ghcr.io/sushrut1101/docker:arch - cpu: 8 - memory: 20G + image: ghcr.io/sushrut1101/docker:arch + cpu: 8 + memory: 20G Checks_script: - - bash -c "$(curl -sL https://raw.githubusercontent.com/OrangeFoxRecovery/OrangeFox-CI/fox/scripts/checks.sh)" + - bash -c "$(curl -sL https://raw.githubusercontent.com/OrangeFoxRecovery/OrangeFox-CI/fox/scripts/checks.sh)" Sync_script: - - bash -c "$(curl -sL https://raw.githubusercontent.com/OrangeFoxRecovery/OrangeFox-CI/fox/scripts/sync.sh)" + - bash -c "$(curl -sL https://raw.githubusercontent.com/OrangeFoxRecovery/OrangeFox-CI/fox/scripts/sync.sh)" Build_script: - - bash -c "$(curl -sL https://raw.githubusercontent.com/OrangeFoxRecovery/OrangeFox-CI/fox/scripts/build.sh)" + - bash -c "$(curl -sL https://raw.githubusercontent.com/OrangeFoxRecovery/OrangeFox-CI/fox/scripts/build.sh)" Upload_script: - - export TIMEOUT=43200 # Link timeout (in minutes) - - bash -c "$(curl -sL https://raw.githubusercontent.com/OrangeFoxRecovery/OrangeFox-CI/fox/scripts/upload.sh)" + - export TIMEOUT=43200 + - bash -c "$(curl -sL https://raw.githubusercontent.com/OrangeFoxRecovery/OrangeFox-CI/fox/scripts/upload.sh)" From fefb4a2632ca60a4801374324980dddb71e7c768 Mon Sep 17 00:00:00 2001 From: AirysDark <47623717+AirysDark@users.noreply.github.com> Date: Sun, 12 Apr 2026 09:43:47 +1000 Subject: [PATCH 3/3] Update config.sh --- config.sh | 47 +++++++++++++++++++++++++---------------------- 1 file changed, 25 insertions(+), 22 deletions(-) diff --git a/config.sh b/config.sh index 1700dc10..47b9baef 100644 --- a/config.sh +++ b/config.sh @@ -1,34 +1,37 @@ #!/bin/bash -# ========================================================= -# OrangeFox Config - Samsung T720 Wi-Fi (Android 11) -# ========================================================= -# Device Info -DEVICE=gts4lvwifiq # T720 Android 11 device tree -OEM=samsung -FOX_BRANCH=fox_11.0 # OrangeFox branch for Android 11 +# Device +export FOX_BRANCH="fox_11.0" +export DT_LINK="https://gitlab.com/AirysDark/android_device_samsung_gts4lvwifi.gitt -b fox_11.0" -# Device Tree URL -DT_LINK="https://gitlab.com/AirysDark/android_device_samsung_gts4lvwifi.git" +export DEVICE="gts4lvwifiq" +export OEM="samsung" # Build Target -TARGET=recoveryimage # Standard A-only recovery partition -OUTPUT="OrangeFox*.zip" +## "recoveryimage" - for A-Only Devices without using Vendor Boot +## "bootimage" - for A/B devices without recovery partition (and without vendor boot) +## "vendorbootimage" - for devices Using vendor boot for the recovery ramdisk (Usually for devices shipped with Android 12 or higher) +export TARGET="recoveryimage" -# Dependencies (optional) +export OUTPUT="OrangeFox*.zip" + +# Additional Dependencies (eg: Kernel Source) +# Format: "repo dest" DEPS=( "https://github.com/OrangeFoxRecovery/Avatar.git misc" ) -# Maintainer -OF_MAINTAINER="AirysDark" +# Extra Command +export EXTRA_CMD="export OF_MAINTAINER=AirysDark" +export OF_MAINTAINER="AirysDark" # Magisk -OF_USE_LATEST_MAGISK=true - -# Build Paths / Ccache -SYNC_PATH="$HOME/work" -USE_CCACHE=1 -CCACHE_SIZE="50G" -CCACHE_DIR="$SYNC_PATH/.ccache" -J_VAL=16 # Number of parallel jobs +## Use the Latest Release of Magisk for the OrangeFox addon +export OF_USE_LATEST_MAGISK=true + +# Not Recommended to Change +export SYNC_PATH="$HOME/work" # Absolute path for workspace +export USE_CCACHE=1 +export CCACHE_SIZE="50G" +export CCACHE_DIR="$SYNC_PATH/.ccache" +export J_VAL=16