-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
sync with latest sources of TrebleDroid
- Loading branch information
BoNic
committed
Jan 31, 2024
1 parent
3716d1c
commit 9607f16
Showing
188 changed files
with
1,408 additions
and
1,431 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,21 @@ | ||
{ | ||
"version": "v2024.01.08", | ||
"date": "1704697118", | ||
"version": "v2024.01.30", | ||
"date": "1706630436", | ||
"variants": [ | ||
{ | ||
"name": "treble_arm64_bgN", | ||
"size": "1471847920", | ||
"url": "https://github.com/KoysX/treble_DerpFest_GSI/releases/download/v2024.01.08/DerpFest-arm64_bgN-14.0-unofficial-20240108.img.xz" | ||
"size": "1674979588", | ||
"url": "https://github.com/KoysX/treble_DerpFest_GSI/releases/download/v2024.01.30/DerpFest-arm64_bgN-14.0-unofficial-20240130.img.xz" | ||
}, | ||
{ | ||
"name": "treble_arm64_bvN", | ||
"size": "1317410256", | ||
"url": "https://github.com/KoysX/treble_DerpFest_GSI/releases/download/v2024.01.08/DerpFest-arm64_bvN-14.0-unofficial-20240108.img.xz" | ||
"name": "treble_arm64_bgN-mini", | ||
"size": "1476054108", | ||
"url": "https://github.com/KoysX/treble_DerpFest_GSI/releases/download/v2024.01.30/DerpFest-arm64_bgN-mini-14.0-unofficial-20240130.img.xz" | ||
}, | ||
{ | ||
"name": "treble_arm64_bgN-pico", | ||
"size": "1327136200", | ||
"url": "https://github.com/KoysX/treble_DerpFest_GSI/releases/download/v2024.01.30/DerpFest-arm64_bgN-pico-14.0-unofficial-20240130.img.xz" | ||
} | ||
] | ||
} |
27 changes: 27 additions & 0 deletions
27
patches/misc/platform_build_make/0002-Changelog.txt-No-such-file-or-directory.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
From d1b8c6df5c22d0f7307db95824472f434aa4a46d Mon Sep 17 00:00:00 2001 | ||
From: BoNic <bonio9527@gmail.com> | ||
Date: Tue, 30 Jan 2024 06:14:49 -0500 | ||
Subject: [PATCH] Changelog.txt: No such file or directory | ||
|
||
--- | ||
core/Makefile | 4 ---- | ||
1 file changed, 4 deletions(-) | ||
|
||
diff --git a/core/Makefile b/core/Makefile | ||
index 87817b5..6bc6b73 100644 | ||
--- a/core/Makefile | ||
+++ b/core/Makefile | ||
@@ -910,10 +910,6 @@ $(INSTALLED_FILES_FILE_ROOT) : $(INTERNAL_ROOT_FILES) $(FILESLIST) $(FILESLIST_U | ||
$(FILESLIST) $(TARGET_ROOT_OUT) > $(@:.txt=.json) | ||
$(FILESLIST_UTIL) -c $(@:.txt=.json) > $@ | ||
|
||
- @echo "Generating Changelog" | ||
- $(hide) ./vendor/derp/tools/changelog | ||
- $(hide) mv $(PRODUCT_OUT)/Changelog.txt $(PRODUCT_OUT)/$(PLATFORM_VERSION)-$(TARGET_PRODUCT)-$(shell $(DATE_FROM_FILE) +%Y%m%d-%H%M)-Changelog.txt | ||
- | ||
$(call declare-0p-target,$(INSTALLED_FILES_FILE_ROOT)) | ||
$(call declare-0p-target,$(INSTALLED_FILES_JSON_ROOT)) | ||
|
||
-- | ||
2.34.1 | ||
|
60 changes: 60 additions & 0 deletions
60
patches/misc/platform_device_phh_treble/0004-Implement-pico-and-mini-gapps.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
From f6bf41e1f28f52ca85de6f65686a9b2d980c4636 Mon Sep 17 00:00:00 2001 | ||
From: BoNic <bonio9527@gmail.com> | ||
Date: Tue, 30 Jan 2024 02:40:49 -0500 | ||
Subject: [PATCH] Implement pico and mini gapps | ||
|
||
--- | ||
generate.sh | 18 +++++++++++++++--- | ||
1 file changed, 15 insertions(+), 3 deletions(-) | ||
|
||
diff --git a/generate.sh b/generate.sh | ||
index 461eff1..0a5fc7e 100644 | ||
--- a/generate.sh | ||
+++ b/generate.sh | ||
@@ -15,20 +15,32 @@ fi | ||
echo 'PRODUCT_MAKEFILES := \' > AndroidProducts.mk | ||
|
||
for part in a ab;do | ||
- for apps in vanilla gapps foss gapps-go;do | ||
+ for apps in vanilla gapps foss gapps-go gapps-mini gapps-pico;do | ||
for arch in arm64 arm a64;do | ||
for su in yes no;do | ||
apps_suffix="" | ||
apps_script="" | ||
apps_name="" | ||
extra_packages="" | ||
+ file_suffix="" | ||
vndk="vndk.mk" | ||
optional_base="" | ||
if [ "$apps" == "gapps" ];then | ||
apps_suffix="g" | ||
- apps_script='$(call inherit-product, device/phh/treble/gapps.mk)' | ||
apps_name="with GApps" | ||
fi | ||
+ if [ "$apps" == "gapps-mini" ];then | ||
+ apps_suffix="g" | ||
+ apps_script='TARGET_USES_MINI_GAPPS := true' | ||
+ apps_name="With mini GApps" | ||
+ file_suffix="_mini" | ||
+ fi | ||
+ if [ "$apps" == "gapps-pico" ];then | ||
+ apps_suffix="g" | ||
+ apps_script='TARGET_USES_PICO_GAPPS := true' | ||
+ apps_name="With pico GApps" | ||
+ file_suffix="_pico" | ||
+ fi | ||
if [ "$apps" == "gapps-go" ];then | ||
apps_suffix="o" | ||
apps_script='$(call inherit-product, device/phh/treble/gapps-go.mk)' | ||
@@ -64,7 +76,7 @@ for part in a ab;do | ||
optional_base='$(call inherit-product, device/phh/treble/base-sas.mk)' | ||
fi | ||
|
||
- target="treble_${arch}_${part_suffix}${apps_suffix}${su_suffix}" | ||
+ target="treble_${arch}_${part_suffix}${apps_suffix}${su_suffix}${file_suffix}" | ||
|
||
baseArch="$arch" | ||
if [ "$arch" = "a64" ];then | ||
-- | ||
2.34.1 | ||
|
24 changes: 0 additions & 24 deletions
24
patches/misc/platform_device_phh_treble/0004-Remove-gapps.patch
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.