pa: products: Drop support for lavender

Change-Id: I99e3e9bae3baabdec08f83462396966fb9086918
This commit is contained in:
adiatul16 2020-10-05 19:13:27 +05:30
parent 82e91959b2
commit 7918d58dd5
3 changed files with 0 additions and 124 deletions

View File

@ -27,7 +27,6 @@ PRODUCT_MAKEFILES += \
$(LOCAL_DIR)/jasmine_sprout/pa_jasmine_sprout.mk \ $(LOCAL_DIR)/jasmine_sprout/pa_jasmine_sprout.mk \
$(LOCAL_DIR)/land/pa_land.mk \ $(LOCAL_DIR)/land/pa_land.mk \
$(LOCAL_DIR)/laurel_sprout/pa_laurel_sprout.mk \ $(LOCAL_DIR)/laurel_sprout/pa_laurel_sprout.mk \
$(LOCAL_DIR)/lavender/pa_lavender.mk \
$(LOCAL_DIR)/mata/pa_mata.mk \ $(LOCAL_DIR)/mata/pa_mata.mk \
$(LOCAL_DIR)/mido/pa_mido.mk \ $(LOCAL_DIR)/mido/pa_mido.mk \
$(LOCAL_DIR)/onc/pa_onc.mk \ $(LOCAL_DIR)/onc/pa_onc.mk \
@ -62,7 +61,6 @@ COMMON_LUNCH_CHOICES += \
pa_jasmine_sprout-userdebug \ pa_jasmine_sprout-userdebug \
pa_land-userdebug \ pa_land-userdebug \
pa_laurel_sprout-userdebug \ pa_laurel_sprout-userdebug \
pa_lavender-userdebug \
pa_mata-userdebug \ pa_mata-userdebug \
pa_mido-userdebug \ pa_mido-userdebug \
pa_onc-userdebug \ pa_onc-userdebug \

View File

@ -1,62 +0,0 @@
[
{
"remote": "aospa",
"repository": "AOSPA/android_device_xiaomi_lavender",
"target_path": "device/xiaomi/lavender",
"revision": "quartz"
},
{
"remote": "aospa",
"repository": "AOSPA/android_device_xiaomi_sdm660-common",
"target_path": "device/xiaomi/sdm660-common",
"revision": "quartz"
},
{
"remote": "aospa",
"repository": "AOSPA/android_kernel_xiaomi_sdm660",
"target_path": "kernel/xiaomi/sdm660",
"revision": "quartz"
},
{
"remote": "blobs",
"repository": "proprietary_vendor_xiaomi",
"target_path": "vendor/xiaomi",
"revision": "quartz"
},
{
"remote": "aospa",
"repository": "AOSPA/android_hardware_qcom_display",
"target_path": "hardware/qcom/display",
"revision": "quartz-8998"
},
{
"remote": "aospa",
"repository": "AOSPA/android_hardware_qcom_gps",
"target_path": "hardware/qcom/gps",
"revision": "quartz-8998"
},
{
"remote": "aospa",
"repository": "AOSPA/android_hardware_qcom_media",
"target_path": "hardware/qcom/media",
"revision": "quartz-8998"
},
{
"remote": "aospa",
"repository": "AOSPA/android_hardware_qcom_audio",
"target_path": "vendor/qcom/opensource/audio-hal/primary-hal",
"revision": "quartz-8998"
},
{
"remote": "aospa",
"repository": "AOSPA/android_packages_apps_Bluetooth",
"target_path": "packages/apps/Bluetooth",
"revision": "quartz-dev"
},
{
"remote": "aospa",
"repository": "AOSPA/android_vendor_qcom-opensource_fm-commonsys",
"target_path": "vendor/qcom/opensource/commonsys/fm",
"revision": "quartz"
}
]

View File

@ -1,60 +0,0 @@
#
# Copyright (C) 2018 The Xiaomi-SDM660 Project
# 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.
#
# This file sets variables that control the way modules are built
# thorughout the system. It should not be used to conditionally
# disable makefiles (the proper mechanism to control what gets
# included in a build is to use PRODUCT_PACKAGES in a product
# definition file).
#
# Check for target product
ifeq (pa_lavender,$(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/full_base_telephony.mk)
$(call inherit-product, $(SRC_TARGET_DIR)/product/product_launched_with_p.mk)
# Inherit device configuration
$(call inherit-product, device/xiaomi/lavender/device.mk)
# Inherit some common Paranoid configuration
$(call inherit-product, vendor/pa/config/common_full_phone.mk)
# Bootanimation
TARGET_BOOT_ANIMATION_RES := 1080
# Device identifier
PRODUCT_NAME := pa_lavender
PRODUCT_MANUFACTURER := Xiaomi
PRODUCT_PLATFORM := SDM660
PRODUCT_DEVICE := lavender
PRODUCT_BRAND := Xiaomi
PRODUCT_MODEL := Redmi Note 7
TARGET_VENDOR_PRODUCT_NAME := lavender
PRODUCT_GMS_CLIENTID_BASE := android-xiaomi
# Build Fingerprint
PRODUCT_BUILD_PROP_OVERRIDES += \
TARGET_DEVICE="lavender" \
PRODUCT_NAME="lavender" \
PRIVATE_BUILD_DESC="lavender-user 9 PKQ1.180904.001 V10.3.9.0.PFGMIXM release-keys"
endif