e3q: Initial device tree

This commit is contained in:
David Wronek
2025-05-04 08:55:44 +02:00
commit 9788fa93aa
15 changed files with 514 additions and 0 deletions

34
device.mk Normal file
View File

@@ -0,0 +1,34 @@
#
# Copyright (C) 2025 The LineageOS Project
#
# SPDX-License-Identifier: Apache-2.0
#
# AAPT
PRODUCT_AAPT_CONFIG := normal
PRODUCT_AAPT_PREF_CONFIG := xxxhdpi
# Boot animation
TARGET_SCREEN_HEIGHT := 3120
TARGET_SCREEN_WIDTH := 1440
# Init
PRODUCT_PACKAGES += \
init.e3q.rc
# Overlays
PRODUCT_PACKAGES += \
SystemUIResTarget
# Soong namespaces
PRODUCT_SOONG_NAMESPACES += \
$(LOCAL_PATH)
# Product characteristics
PRODUCT_CHARACTERISTICS := phone
# Inherit from the common OEM chipset makefile.
$(call inherit-product, device/samsung/sm8650-common/common.mk)
# Inherit from the proprietary files makefile.
$(call inherit-product, vendor/samsung/e3q/e3q-vendor.mk)