GAPPS variants

Farewell, 18.x!
This commit is contained in:
Andy CrossGate Yan 2022-07-17 04:04:11 +00:00
parent 470e8fae7d
commit de01a6f9a1
3 changed files with 7 additions and 1 deletions

View File

@ -22,7 +22,7 @@ Clone both this and the patches repos:
Finally, start the build script - for example, to build for all supported archs: Finally, start the build script - for example, to build for all supported archs:
bash lineage_build_unified/buildbot_unified.sh treble 32B A64B 64B bash lineage_build_unified/buildbot_unified.sh treble 32B 32BO A64B A64BG A64BO 64B 64BG
Be sure to update the cloned repos from time to time! Be sure to update the cloned repos from time to time!

View File

@ -90,8 +90,12 @@ build_device() {
build_treble() { build_treble() {
case "${1}" in case "${1}" in
("32B") TARGET=arm_bvS;; ("32B") TARGET=arm_bvS;;
("32BO") TARGET=arm_boS;;
("A64B") TARGET=a64_bvS;; ("A64B") TARGET=a64_bvS;;
("A64BG") TARGET=a64_bgS;;
("A64BO") TARGET=a64_boS;;
("64B") TARGET=arm64_bvS;; ("64B") TARGET=arm64_bvS;;
("64BG") TARGET=arm64_bgS;;
(*) echo "Invalid target - exiting"; exit 1;; (*) echo "Invalid target - exiting"; exit 1;;
esac esac
lunch lineage_${TARGET}-userdebug lunch lineage_${TARGET}-userdebug

View File

@ -5,4 +5,6 @@
<project name="phhusson/vendor_vndk-tests" path="vendor/vndk-tests" remote="github" revision="master" /> <project name="phhusson/vendor_vndk-tests" path="vendor/vndk-tests" remote="github" revision="master" />
<project name="phhusson/vendor_interfaces" path="vendor/interfaces" remote="github" revision="android-11.0" /> <project name="phhusson/vendor_interfaces" path="vendor/interfaces" remote="github" revision="android-11.0" />
<project name="phhusson/vendor_magisk" path="vendor/magisk" remote="github" revision="android-10.0" /> <project name="phhusson/vendor_magisk" path="vendor/magisk" remote="github" revision="android-10.0" />
<remote name="gitlab" fetch="https://gitlab.com/" />
<project name="00p513-dev/partner_gms" path="vendor/partner_gms" remote="gitlab" revision="11" />
</manifest> </manifest>