-
Notifications
You must be signed in to change notification settings - Fork 0
/
device.mk
43 lines (34 loc) · 978 Bytes
/
device.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
#
# Copyright (C) 2024 The LineageOS Project
#
# SPDX-License-Identifier: Apache-2.0
#
# AAPT
PRODUCT_AAPT_CONFIG := normal
PRODUCT_AAPT_PREF_CONFIG := xxxhdpi
# Boot animation
TARGET_SCREEN_HEIGHT := 2340
TARGET_SCREEN_WIDTH := 1080
# Init
PRODUCT_PACKAGES += \
init.dm1q.rc
# Namespaces
PRODUCT_SOONG_NAMESPACES += \
$(LOCAL_PATH)
# Overlays
PRODUCT_PACKAGES += \
FrameworksResDm1q \
SystemUIResDm1q \
WifiResTargetDm1q
# WiFi firmware symlinks
PRODUCT_PACKAGES += \
firmware_wlanmdsp.otaupdate_symlink \
firmware_wlan_mac.bin_symlink \
firmware_WCNSS_qcom_cfg.ini_symlink
# Wifi
PRODUCT_COPY_FILES += \
$(LOCAL_PATH)/configs/wifi/WCNSS_qcom_cfg.ini:$(TARGET_COPY_OUT_VENDOR)/etc/wifi/qca6490/WCNSS_qcom_cfg.ini
# Inherit from the common OEM chipset makefile.
$(call inherit-product, device/samsung/sm8550-common/common.mk)
# Inherit from the proprietary files makefile.
$(call inherit-product, vendor/samsung/dm1q/dm1q-vendor.mk)