pa: products: Add support for the OnePlus 8T.

Change-Id: I9faa620afa0f5c8ba4324aa693657a85967d6fef
This commit is contained in:
Alexander Koskovich 2020-11-23 06:14:28 -07:00
parent 1cb6460783
commit bd78af611a
No known key found for this signature in database
GPG Key ID: F1107C9A417AC130
3 changed files with 90 additions and 0 deletions

View File

@ -37,6 +37,7 @@ PRODUCT_MAKEFILES += \
$(LOCAL_DIR)/oneplus7t/pa_oneplus7t.mk \ $(LOCAL_DIR)/oneplus7t/pa_oneplus7t.mk \
$(LOCAL_DIR)/oneplus7tpro/pa_oneplus7tpro.mk \ $(LOCAL_DIR)/oneplus7tpro/pa_oneplus7tpro.mk \
$(LOCAL_DIR)/oneplus8/pa_oneplus8.mk \ $(LOCAL_DIR)/oneplus8/pa_oneplus8.mk \
$(LOCAL_DIR)/oneplus8t/pa_oneplus8t.mk \
$(LOCAL_DIR)/polaris/pa_polaris.mk \ $(LOCAL_DIR)/polaris/pa_polaris.mk \
$(LOCAL_DIR)/raphael/pa_raphael.mk \ $(LOCAL_DIR)/raphael/pa_raphael.mk \
$(LOCAL_DIR)/rolex/pa_rolex.mk \ $(LOCAL_DIR)/rolex/pa_rolex.mk \
@ -70,6 +71,7 @@ COMMON_LUNCH_CHOICES += \
pa_oneplus7t-userdebug \ pa_oneplus7t-userdebug \
pa_oneplus7tpro-userdebug \ pa_oneplus7tpro-userdebug \
pa_oneplus8-userdebug \ pa_oneplus8-userdebug \
pa_oneplus8t-userdebug \
pa_polaris-userdebug \ pa_polaris-userdebug \
pa_rolex-userdebug \ pa_rolex-userdebug \
pa_rosy-userdebug \ pa_rosy-userdebug \

View File

@ -0,0 +1,51 @@
[
{
"remote": "aospa",
"repository": "AOSPA/android_device_oneplus_oneplus8",
"target_path": "device/oneplus/oneplus8",
"revision": "ruby"
},
{
"remote": "aospa",
"repository": "AOSPA/android_device_oneplus_oneplus8t",
"target_path": "device/oneplus/oneplus8t",
"revision": "ruby"
},
{
"remote": "aospa",
"repository": "AOSPA/android_hardware_qcom_audio",
"target_path": "vendor/qcom/opensource/audio-hal/primary-hal",
"revision": "ruby-smxx50"
},
{
"remote": "aospa",
"repository": "AOSPA/android_hardware_qcom_display",
"target_path": "hardware/qcom/display",
"revision": "ruby-smxx50"
},
{
"remote": "aospa",
"repository": "AOSPA/android_hardware_qcom_gps",
"target_path": "hardware/qcom/gps",
"revision": "ruby-smxx50"
},
{
"remote": "aospa",
"repository": "AOSPA/android_hardware_qcom_media",
"target_path": "hardware/qcom/media",
"revision": "ruby-smxx50"
},
{
"remote": "aospa",
"repository": "AOSPA/android_kernel_oneplus_sm8250",
"target_path": "kernel/msm-4.19",
"revision": "ruby"
},
{
"remote": "blobs",
"repository": "proprietary_vendor_oneplus",
"target_path": "vendor/oneplus",
"revision": "ruby"
}
]

View File

@ -0,0 +1,37 @@
# Copyright (C) 2020 Paranoid Android
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
ifeq (pa_oneplus8t,$(TARGET_PRODUCT))
# Inherit from those products. Most specific first.
$(call inherit-product, $(SRC_TARGET_DIR)/product/core_64_bit.mk)
$(call inherit-product, $(SRC_TARGET_DIR)/product/aosp_base_telephony.mk)
# Inherit from the custom device configuration.
$(call inherit-product, device/oneplus/oneplus8t/device.mk)
# Inherit from the AOSPA configuration.
$(call inherit-product, vendor/pa/config/common_full_phone.mk)
TARGET_BOOT_ANIMATION_RES := 1080
PRODUCT_BRAND := OnePlus
PRODUCT_DEVICE := oneplus8t
PRODUCT_MANUFACTURER := OnePlus
PRODUCT_MODEL := OnePlus 8T
PRODUCT_NAME := pa_oneplus8t
PRODUCT_GMS_CLIENTID_BASE := android-oneplus
endif