mirror of
https://github.com/mytja/treble_evo.git
synced 2025-04-03 23:45:35 +00:00
Make the build script cleaner.
Change-Id: I0f7489b952b763fc8427279f917868836e652d66
This commit is contained in:
@ -33,10 +33,10 @@ repo sync -c --force-sync --no-clone-bundle --no-tags -j$(nproc --all)
|
||||
### Apply the patches
|
||||
Run this command in the ROM folder:
|
||||
```bash
|
||||
./patches/apply-patches.sh .
|
||||
./patches/apply-all.sh .
|
||||
```
|
||||
|
||||
This command will apply all TrebleDroid and personal patches. If any patch fails to apply correctly, as indicated by `### FAILED APPLYING` output, you need to apply the patch manually. Steps to do so are described in short on [treble_evo_patches repo](https://github.com/mytja/treble_evo_patches/blob/main/README.md).
|
||||
This command will apply all TrebleDroid and personal patches. If any patch fails to apply correctly, as indicated by `### FAILED APPLYING` output, you need to apply the patch manually (the script will wait for you to apply it manually). Steps to do so are described in short on [treble_evo_patches repo](https://github.com/mytja/treble_evo_patches/blob/main/README.md).
|
||||
|
||||
## Adapting for Evolution X
|
||||
Run the following commands:
|
||||
|
15
build.sh
15
build.sh
@ -1,7 +1,18 @@
|
||||
EVO_VERSION="9.6"
|
||||
ROOT_DIR="$HOME/evo"
|
||||
echo " _____ _ _ _ __ __ "
|
||||
echo " | ____|_ _____ | |_ _| |_(_) ___ _ __ \ \/ / "
|
||||
echo " | _| \ \ / / _ \| | | | | __| |/ _ \| '_ \ \ / "
|
||||
echo " | |___ \ V / (_) | | |_| | |_| | (_) | | | | / \ "
|
||||
echo " |_____| \_/ \___/|_|\__,_|\__|_|\___/|_| |_| /_/\_\ "
|
||||
echo " "
|
||||
|
||||
ROOT_DIR="$(pwd)"
|
||||
cd $ROOT_DIR
|
||||
|
||||
EVO_VERSION="$(awk '/EVO_VERSION := / {print $3}' $ROOT_DIR/vendor/lineage/config/version.mk)"
|
||||
|
||||
echo "Building Evolution X version $EVO_VERSION"
|
||||
echo "---------------------------"
|
||||
|
||||
source build/envsetup.sh
|
||||
ccache -M 50G -F 0
|
||||
|
||||
|
4
evo.mk
4
evo.mk
@ -36,5 +36,5 @@ PRODUCT_PACKAGES += \
|
||||
OpenEUICC
|
||||
|
||||
# Evolution X maintainer overlay
|
||||
#DEVICE_PACKAGE_OVERLAYS += \
|
||||
# $(LOCAL_PATH)/overlay-evolution \
|
||||
PRODUCT_PACKAGES += \
|
||||
SettingsResGsi
|
||||
|
12
ota.json
12
ota.json
@ -1,16 +1,16 @@
|
||||
{
|
||||
"version": "2024-11-17 (Evolution X 9.6)",
|
||||
"date": "1731835879",
|
||||
"version": "2024-12-22 (Evolution X 9.7)",
|
||||
"date": "1734824657",
|
||||
"variants": [
|
||||
{
|
||||
"name": "treble_arm64_bgN",
|
||||
"size": "1830455744",
|
||||
"url": "https://github.com/mytja/treble_evo/releases/download/20241117/evolution_arm64_bgN-9.6-unofficial-20241117.img.xz"
|
||||
"size": "1830515240",
|
||||
"url": "https://github.com/mytja/treble_evo/releases/download/20241222/evolution_arm64_bgN-9.7-unofficial-20241222.img.xz"
|
||||
},
|
||||
{
|
||||
"name": "treble_arm64_bgN_slim",
|
||||
"size": "1349022728",
|
||||
"url": "https://github.com/mytja/treble_evo/releases/download/20241117/evolution_arm64_bgN_slim-9.6-unofficial-20241117.img.xz"
|
||||
"size": "1349101900",
|
||||
"url": "https://github.com/mytja/treble_evo/releases/download/20241222/evolution_arm64_bgN_slim-9.7-unofficial-20241222.img.xz"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
@ -5,7 +5,7 @@
|
||||
SPDX-License-Identifier: Apache-2.0
|
||||
-->
|
||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
package="com.android.settings.overlay.evox-gsi">
|
||||
package="com.android.settings.overlay.evoxgsi">
|
||||
|
||||
<application android:allowBackup="false"/>
|
||||
<overlay
|
||||
|
@ -8,4 +8,5 @@
|
||||
|
||||
<!-- Android version screen, build maintainer -->
|
||||
<string name="build_maintainer_summary" translatable="false">mytja</string>
|
||||
<string name="build_maintainer_donate_url">https://github.com/mytja</string>
|
||||
</resources>
|
Reference in New Issue
Block a user