12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- #
- # Copyright (C) 2020 The LineageOS Project
- #
- # SPDX-License-Identifier: Apache-2.0
- #
- # Inherit from those products. Most specific first.
- $(call inherit-product, $(SRC_TARGET_DIR)/product/core_64_bit.mk)
- $(call inherit-product, $(SRC_TARGET_DIR)/product/full_base_telephony.mk)
- # Enable project quotas and casefolding for emulated storage without sdcardfs
- $(call inherit-product, $(SRC_TARGET_DIR)/product/emulated_storage.mk)
- # Enforce generic ramdisk allow list
- $(call inherit-product, $(SRC_TARGET_DIR)/product/generic_ramdisk.mk)
- # Enable updating of APEXes
- $(call inherit-product, $(SRC_TARGET_DIR)/product/updatable_apex.mk)
- # Enable virtual AB with vendor ramdisk
- $(call inherit-product, $(SRC_TARGET_DIR)/product/virtual_ab_ota/launch_with_vendor_ramdisk.mk)
- # Setup dalvik vm configs
- $(call inherit-product, frameworks/native/build/phone-xhdpi-6144-dalvik-heap.mk)
- # Inherit from the proprietary version
- $(call inherit-product, vendor/xiaomi/sm8450-common/sm8450-common-vendor.mk)
- # API
- PRODUCT_SHIPPING_API_LEVEL := 31
- BOARD_SHIPPING_API_LEVEL := 31
- # Boot control
- PRODUCT_PACKAGES += \
- [email protected] \
- [email protected] \
- [email protected]
- PRODUCT_PACKAGES_DEBUG += \
- bootctl
- # Fstab
- PRODUCT_COPY_FILES += \
- $(LOCAL_PATH)/rootdir/etc/charger_fw_fstab.qti:$(TARGET_COPY_OUT_VENDOR)/etc/charger_fw_fstab.qti
- PRODUCT_COPY_FILES += \
- $(LOCAL_PATH)/rootdir/etc/fstab.qcom:$(TARGET_COPY_OUT_VENDOR)/etc/fstab.qcom \
- $(LOCAL_PATH)/rootdir/etc/fstab.qcom:$(TARGET_COPY_OUT_RECOVERY)/root/first_stage_ramdisk/fstab.qcom \
- $(LOCAL_PATH)/rootdir/etc/fstab.qcom:$(TARGET_COPY_OUT_VENDOR_RAMDISK)/first_stage_ramdisk/fstab.qcom
- # Partitions
- PRODUCT_USE_DYNAMIC_PARTITIONS := true
- # Recovery
- PRODUCT_COPY_FILES += \
- $(LOCAL_PATH)/rootdir/etc/init.recovery.qcom.rc:$(TARGET_COPY_OUT_RECOVERY)/root/init.recovery.qcom.rc
- # Ueventd
- PRODUCT_COPY_FILES += \
- $(LOCAL_PATH)/rootdir/etc/ueventd.qcom.rc:$(TARGET_COPY_OUT_VENDOR)/etc/ueventd.rc \
- $(LOCAL_PATH)/rootdir/etc/ueventd-odm.rc:$(TARGET_COPY_OUT_ODM)/etc/ueventd.rc
- # Vendor init
- PRODUCT_COPY_FILES += \
- $(LOCAL_PATH)/rootdir/etc/init.qcom.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/hw/init.qcom.rc \
- $(LOCAL_PATH)/rootdir/etc/init.target.rc:$(TARGET_COPY_OUT_VENDOR)/etc/init/hw/init.target.rc
- PRODUCT_COPY_FILES += \
- $(LOCAL_PATH)/rootdir/bin/init.class_main.sh:$(TARGET_COPY_OUT_VENDOR)/bin/init.class_main.sh \
- $(LOCAL_PATH)/rootdir/bin/init.qcom.class_core.sh:$(TARGET_COPY_OUT_VENDOR)/bin/init.qcom.class_core.sh \
- $(LOCAL_PATH)/rootdir/bin/init.qcom.early_boot.sh:$(TARGET_COPY_OUT_VENDOR)/bin/init.qcom.early_boot.sh \
- $(LOCAL_PATH)/rootdir/bin/init.qcom.post_boot.sh:$(TARGET_COPY_OUT_VENDOR)/bin/init.qcom.post_boot.sh \
- $(LOCAL_PATH)/rootdir/bin/init.qcom.sh:$(TARGET_COPY_OUT_VENDOR)/bin/init.qcom.sh
|