-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlineage_caiman.mk
58 lines (50 loc) · 1.73 KB
/
lineage_caiman.mk
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
#
# SPDX-FileCopyrightText: 2021-2024 The LineageOS Project
# SPDX-FileCopyrightText: 2021-2024 The Calyx Institute
# SPDX-License-Identifier: Apache-2.0
#
# Inherit some common stuff
TARGET_DISABLE_EPPE := true
$(call inherit-product, vendor/lineage/config/common_full_phone.mk)
# Inherit device configuration
DEVICE_CODENAME := caiman
DEVICE_PATH := device/google/caimito
VENDOR_PATH := vendor/google/caiman
$(call inherit-product, $(DEVICE_PATH)/aosp_$(DEVICE_CODENAME).mk)
$(call inherit-product, device/google/zumapro/lineage_common.mk)
$(call inherit-product, $(DEVICE_PATH)/$(DEVICE_CODENAME)/device-lineage.mk)
# Device identifier. This must come after all inclusions
PRODUCT_BRAND := google
PRODUCT_MODEL := Pixel 9 Pro
PRODUCT_NAME := lineage_$(DEVICE_CODENAME)
# Boot animation
TARGET_SCREEN_HEIGHT := 2856
TARGET_SCREEN_WIDTH := 1280
# RisingOS
RISING_MAINTAINER=Niv
TARGET_ENABLE_BLUR := true
TARGET_FACE_UNLOCK_SUPPORTED := false
TARGET_HAS_UDFPS := true
TARGET_PREBUILT_BCR := true
TARGET_PREBUILT_LAWNCHAIR_LAUNCHER := true
WITH_GMS := true
TARGET_CORE_GMS := false
TARGET_CORE_GMS_EXTRAS := false
TARGET_GMS_EXTRAS := true
WITH_PIXEL_OVERLAYS := true
ifneq ($(WITH_GMS),false)
ifneq ($(TARGET_CORE_GMS),true)
TARGET_PREBUILT_GOOGLE_CAMERA := true
TARGET_DEFAULT_PIXEL_LAUNCHER := true
endif
endif
PRODUCT_BUILD_PROP_OVERRIDES += \
BuildDesc="caiman-user 15 AP4A.250105.002 12701944 release-keys" \
BuildFingerprint=google/caiman/caiman:15/AP4A.250105.002/12701944:user/release-keys \
DeviceProduct=$(DEVICE_CODENAME) \
RisingChipset="Tensor G4" \
RisingMaintainer="Niv"
ifneq ($(wildcard vendor/google_devices/caiman/proprietary/device-vendor.mk),)
else
$(call inherit-product, $(VENDOR_PATH)/$(DEVICE_CODENAME)-vendor.mk)
endif