99 lines
2.3 KiB
Makefile
99 lines
2.3 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)
|
|
|
|
# API levels
|
|
PRODUCT_SHIPPING_API_LEVEL := 34
|
|
|
|
# fastbootd
|
|
PRODUCT_PACKAGES += \
|
|
android.hardware.fastboot@1.1-impl-mock \
|
|
fastbootd
|
|
|
|
# Health
|
|
PRODUCT_PACKAGES += \
|
|
android.hardware.health@2.1-impl \
|
|
android.hardware.health@2.1-impl.recovery \
|
|
android.hardware.health@2.1-service
|
|
|
|
# Overlays
|
|
PRODUCT_ENFORCE_RRO_TARGETS := *
|
|
|
|
# Partitions
|
|
PRODUCT_USE_DYNAMIC_PARTITIONS := true
|
|
|
|
# Product characteristics
|
|
PRODUCT_CHARACTERISTICS := phone
|
|
|
|
# Rootdir
|
|
PRODUCT_PACKAGES += \
|
|
dcc_extension.sh \
|
|
hdm_status.sh \
|
|
init.class_main.sh \
|
|
init.crda.sh \
|
|
init.kernel.post_boot-cliffs.sh \
|
|
init.kernel.post_boot-pineapple.sh \
|
|
init.kernel.post_boot.sh \
|
|
init.mdm.sh \
|
|
init.qcom.class_core.sh \
|
|
init.qcom.coex.sh \
|
|
init.qcom.early_boot.sh \
|
|
init.qcom.efs.sync.sh \
|
|
init.qcom.post_boot.sh \
|
|
init.qcom.sdio.sh \
|
|
init.qcom.sensors.sh \
|
|
init.qcom.sh \
|
|
init.qcom.usb.sh \
|
|
init.qti.display_boot.sh \
|
|
init.qti.kernel.debug-cliffs.sh \
|
|
init.qti.kernel.debug-pineapple.sh \
|
|
init.qti.kernel.debug.sh \
|
|
init.qti.kernel.early_debug-pineapple.sh \
|
|
init.qti.kernel.early_debug.sh \
|
|
init.qti.kernel.sh \
|
|
init.qti.media.sh \
|
|
init.qti.qcv.sh \
|
|
init.qti.time.daemon.sh \
|
|
init.qti.write.sh \
|
|
init.vendor.sensordebug.sh \
|
|
init.vendor.sensordebug.ssr_dump.sh \
|
|
install-recovery.sh \
|
|
qca6234-service.sh \
|
|
system_dlkm_modprobe.sh \
|
|
vendor_modprobe.sh \
|
|
|
|
PRODUCT_PACKAGES += \
|
|
fstab.qcom \
|
|
init.e3q.rc \
|
|
init.qcom.factory.rc \
|
|
init.qcom.rc \
|
|
init.qcom.usb.rc \
|
|
init.qti.kernel.rc \
|
|
init.qti.ss-ramdump.sh \
|
|
init.qti.ufs.rc \
|
|
init.samsung.bsp.rc \
|
|
init.samsung.display.rc \
|
|
init.samsung.dp.rc \
|
|
init.samsung.factory.rc \
|
|
init.samsung.power.rc \
|
|
init.samsung.rc \
|
|
init.samsung.user.rc \
|
|
init.target.rc \
|
|
init.recovery.qcom.rc \
|
|
init.recovery.samsung.rc \
|
|
|
|
PRODUCT_COPY_FILES += \
|
|
$(LOCAL_PATH)/rootdir/etc/fstab.qcom:$(TARGET_COPY_OUT_RAMDISK)/fstab.qcom
|
|
|
|
# Soong namespaces
|
|
PRODUCT_SOONG_NAMESPACES += \
|
|
$(LOCAL_PATH)
|
|
|
|
# Inherit the proprietary files
|
|
$(call inherit-product, vendor/samsung/e3q/e3q-vendor.mk)
|