Lineage 17.0

Change-Id: Ib166a6218d18cf192aa314477e4044892b068e97
This commit is contained in:
Rashed Abdel-Tawab
2019-09-04 15:08:51 -07:00
committed by Bruno Martins
parent fda4e1ba57
commit b6b3421188
7 changed files with 7 additions and 7 deletions

View File

@@ -9,7 +9,7 @@ familiar with [Repo](https://source.android.com/source/using-repo.html) and [Ver
To initialize your local repository using the LineageOS trees, use a command like this: To initialize your local repository using the LineageOS trees, use a command like this:
``` ```
repo init -u git://github.com/LineageOS/android.git -b lineage-16.0 repo init -u git://github.com/LineageOS/android.git -b lineage-17.0
``` ```
Then to sync up: Then to sync up:
``` ```

View File

@@ -255,7 +255,7 @@ endif
PRODUCT_ENFORCE_RRO_EXCLUDED_OVERLAYS += vendor/lineage/overlay PRODUCT_ENFORCE_RRO_EXCLUDED_OVERLAYS += vendor/lineage/overlay
DEVICE_PACKAGE_OVERLAYS += vendor/lineage/overlay/common DEVICE_PACKAGE_OVERLAYS += vendor/lineage/overlay/common
PRODUCT_VERSION_MAJOR = 16 PRODUCT_VERSION_MAJOR = 17
PRODUCT_VERSION_MINOR = 0 PRODUCT_VERSION_MINOR = 0
PRODUCT_VERSION_MAINTENANCE := 0 PRODUCT_VERSION_MAINTENANCE := 0

View File

@@ -3,7 +3,7 @@
# ADDOND_VERSION=2 # ADDOND_VERSION=2
# #
# /system/addon.d/50-lineage.sh # /system/addon.d/50-lineage.sh
# During a LineageOS 16.0 upgrade, this script backs up /system/etc/hosts, # During a LineageOS 17.0 upgrade, this script backs up /system/etc/hosts,
# /system is formatted and reinstalled, then the file is restored. # /system is formatted and reinstalled, then the file is restored.
# #

View File

@@ -5,7 +5,7 @@
export C=/tmp/backupdir export C=/tmp/backupdir
export S=$2 export S=$2
export V=16.0 export V=17.0
export ADDOND_VERSION=1 export ADDOND_VERSION=1

View File

@@ -5,7 +5,7 @@
export S=/system export S=/system
export C=/postinstall/tmp/backupdir export C=/postinstall/tmp/backupdir
export V=16.0 export V=17.0
export backuptool_ab=true export backuptool_ab=true
copy_file() { copy_file() {

View File

@@ -5,7 +5,7 @@
export S=/system export S=/system
export C=/postinstall/tmp/backupdir export C=/postinstall/tmp/backupdir
export V=16.0 export V=17.0
export ADDOND_VERSION=2 export ADDOND_VERSION=2

View File

@@ -1,4 +1,4 @@
for combo in $(curl -s https://raw.githubusercontent.com/LineageOS/hudson/master/lineage-build-targets | sed -e 's/#.*$//' | grep lineage-16.0 | awk '{printf "lineage_%s-%s\n", $1, $2}') for combo in $(curl -s https://raw.githubusercontent.com/LineageOS/hudson/master/lineage-build-targets | sed -e 's/#.*$//' | grep lineage-17.0 | awk '{printf "lineage_%s-%s\n", $1, $2}')
do do
add_lunch_combo $combo add_lunch_combo $combo
done done