Skip to content
This repository has been archived by the owner on Jan 27, 2025. It is now read-only.

Update base ROM #630

Open
wants to merge 5 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
56 changes: 39 additions & 17 deletions build-dakkar.sh
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ ROM types:
aosp80
aosp81
aosp90
aosp10
carbon
e-0.2
lineage151
Expand All @@ -54,6 +55,8 @@ ROM types:
rebellion
aquarios
aosmp
graphene9
graphene10

Variants are dash-joined combinations of (in order):
* processor type
Expand Down Expand Up @@ -87,27 +90,34 @@ function get_rom_type() {
mainrepo="https://android.googlesource.com/platform/manifest.git"
mainbranch="android-vts-8.0_r4"
localManifestBranch="master"
treble_generate=""
treble_generate="aosp"
extra_make_options=""
;;
aosp81)
mainrepo="https://android.googlesource.com/platform/manifest.git"
mainbranch="android-8.1.0_r48"
localManifestBranch="android-8.1"
treble_generate=""
treble_generate="aosp"
extra_make_options=""
;;
aosp90)
mainrepo="https://android.googlesource.com/platform/manifest.git"
mainbranch="android-9.0.0_r21"
localManifestBranch="android-9.0"
treble_generate=""
treble_generate="aosp"
extra_make_options=""
;;
aosp10)
mainrepo="https://android.googlesource.com/platform/manifest.git"
mainbranch="android-10.0.0_r2"
localManifestBranch="android-10.0"
treble_generate="aosp"
extra_make_options=""
;;
carbon)
mainrepo="https://github.com/CarbonROM/android.git"
mainbranch="cr-6.1"
localManifestBranch="android-8.1"
mainbranch="cr-7.0"
localManifestBranch="android-9.0"
treble_generate="carbon"
extra_make_options="WITHOUT_CHECK_API=true"
;;
Expand All @@ -134,8 +144,8 @@ function get_rom_type() {
;;
rr)
mainrepo="https://github.com/ResurrectionRemix/platform_manifest.git"
mainbranch="oreo"
localManifestBranch="android-8.1"
mainbranch="pie"
localManifestBranch="android-9.0"
treble_generate="rr"
extra_make_options="WITHOUT_CHECK_API=true"
;;
Expand All @@ -155,29 +165,29 @@ function get_rom_type() {
;;
crdroid)
mainrepo="https://github.com/crdroidandroid/android.git"
mainbranch="8.1"
localManifestBranch="android-8.1"
mainbranch="9.0"
localManifestBranch="android-9.0"
treble_generate="crdroid"
extra_make_options="WITHOUT_CHECK_API=true"
;;
mokee)
mainrepo="https://github.com/MoKee/android.git"
mainbranch="mko-mr1"
localManifestBranch="android-8.1"
mainbranch="mkp"
localManifestBranch="android-9.0"
treble_generate="mokee"
extra_make_options="WITHOUT_CHECK_API=true"
;;
aicp)
mainrepo="https://github.com/AICP/platform_manifest.git"
mainbranch="o8.1"
localManifestBranch="android-8.1"
mainbranch="p9.0"
localManifestBranch="android-9.0"
treble_generate="aicp"
extra_make_options="WITHOUT_CHECK_API=true"
;;
aokp)
mainrepo="https://github.com/AOKP/platform_manifest.git"
mainbranch="oreo"
localManifestBranch="android-8.1"
mainbranch="pie"
localManifestBranch="android-9.0"
treble_generate="aokp"
extra_make_options="WITHOUT_CHECK_API=true"
;;
Expand All @@ -190,8 +200,8 @@ function get_rom_type() {
;;
slim)
mainrepo="https://github.com/SlimRoms/platform_manifest.git"
mainbranch="or8.1"
localManifestBranch="android-8.1"
mainbranch="9.0"
localManifestBranch="android-9.0"
treble_generate="slim"
extra_make_options="WITHOUT_CHECK_API=true"
;;
Expand Down Expand Up @@ -229,6 +239,18 @@ function get_rom_type() {
localManifestBranch="android-9.0"
treble_generate="aosmp"
extra_make_options="WITHOUT_CHECK_API=true"
graphene9)
mainrepo="https://github.com/GrapheneOS/platform_manifest.git"
mainbranch="pie"
localManifestBranch="android-9.0"
treble_generate="graphene"
extra_make_options="WITHOUT_CHECK_API=true"
graphene10)
mainrepo="https://github.com/GrapheneOS/platform_manifest.git"
mainbranch="10"
localManifestBranch="android-10.0"
treble_generate="graphene"
extra_make_options="WITHOUT_CHECK_API=true"
esac
shift
done
Expand Down