47 lines
1.0 KiB
Makefile
47 lines
1.0 KiB
Makefile
#
|
|
# Copyright (C) 2024 The LineageOS Project
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
|
|
# Enable updating of APEXes
|
|
$(call inherit-product, $(SRC_TARGET_DIR)/product/updatable_apex.mk)
|
|
|
|
# A/B
|
|
$(call inherit-product, $(SRC_TARGET_DIR)/product/virtual_ab_ota.mk)
|
|
|
|
# AAPT
|
|
PRODUCT_AAPT_CONFIG := normal
|
|
PRODUCT_AAPT_PREF_CONFIG := xxxhdpi
|
|
|
|
# Boot animation
|
|
TARGET_SCREEN_HEIGHT := 2340
|
|
TARGET_SCREEN_WIDTH := 1080
|
|
|
|
# Init
|
|
PRODUCT_PACKAGES += \
|
|
init.pa3q.rc
|
|
|
|
# Namespaces
|
|
PRODUCT_SOONG_NAMESPACES += \
|
|
$(LOCAL_PATH)
|
|
|
|
# Overlays
|
|
PRODUCT_PACKAGES += \
|
|
FrameworksResPa3q \
|
|
LineageResPa3q \
|
|
SystemUIResPa3q \
|
|
WifiResTargetPa3q
|
|
|
|
# WiFi firmware symlinks
|
|
PRODUCT_PACKAGES += \
|
|
firmware_wlanmdsp.otaupdate_symlink \
|
|
firmware_wlan_mac.bin_symlink \
|
|
firmware_WCNSS_qcom_cfg.ini_symlink
|
|
|
|
# Inherit from the common OEM chipset makefile.
|
|
$(call inherit-product, device/samsung/sm8750-common/common.mk)
|
|
|
|
# Inherit from the proprietary files makefile.
|
|
$(call inherit-product, vendor/samsung/pa3q/pa3q-vendor.mk)
|