lineage_lynx.mk 1.1 KB

123456789101112131415161718192021222324252627282930313233
  1. #
  2. # SPDX-FileCopyrightText: 2021-2024 The LineageOS Project
  3. # SPDX-FileCopyrightText: 2021-2024 The Calyx Institute
  4. # SPDX-License-Identifier: Apache-2.0
  5. #
  6. # Inherit some common stuff
  7. TARGET_DISABLE_EPPE := true
  8. $(call inherit-product, vendor/lineage/config/common_full_phone.mk)
  9. # Inherit device configuration
  10. DEVICE_CODENAME := lynx
  11. DEVICE_PATH := device/google/lynx
  12. VENDOR_PATH := vendor/google/lynx
  13. $(call inherit-product, $(DEVICE_PATH)/aosp_$(DEVICE_CODENAME).mk)
  14. $(call inherit-product, device/google/gs201/lineage_common.mk)
  15. $(call inherit-product, $(DEVICE_PATH)/$(DEVICE_CODENAME)/device-lineage.mk)
  16. # Device identifier. This must come after all inclusions
  17. PRODUCT_BRAND := google
  18. PRODUCT_MODEL := Pixel 7a
  19. PRODUCT_NAME := lineage_$(DEVICE_CODENAME)
  20. # Boot animation
  21. TARGET_SCREEN_HEIGHT := 2400
  22. TARGET_SCREEN_WIDTH := 1080
  23. PRODUCT_BUILD_PROP_OVERRIDES += \
  24. BuildDesc="lynx-user 15 AP3A.241005.015 12366759 release-keys" \
  25. BuildFingerprint=google/lynx/lynx:15/AP3A.241005.015/12366759:user/release-keys \
  26. DeviceProduct=$(DEVICE_CODENAME)
  27. $(call inherit-product, $(VENDOR_PATH)/$(DEVICE_CODENAME)-vendor.mk)