diff options
author | Raghuram Subramani <raghus2247@gmail.com> | 2024-10-13 14:21:42 +0530 |
---|---|---|
committer | Raghuram Subramani <raghus2247@gmail.com> | 2024-10-13 14:21:42 +0530 |
commit | e394d17751ded0dbb60b2d75b4f6d4cca5e61bc1 (patch) | |
tree | 3b723581b08be2218898b6c67a6f4ef3988e6549 /BoardConfigCommon.mk | |
parent | 4d671fec381d5159b4112868cad40b72b50ec2c1 (diff) |
get compilation working
Diffstat (limited to 'BoardConfigCommon.mk')
-rw-r--r-- | BoardConfigCommon.mk | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/BoardConfigCommon.mk b/BoardConfigCommon.mk index 4e53352..d027ba1 100644 --- a/BoardConfigCommon.mk +++ b/BoardConfigCommon.mk @@ -38,11 +38,13 @@ TARGET_NO_BOOTLOADER := true # Kernel BOARD_KERNEL_BASE := 0x80000000 -BOARD_KERNEL_CMDLINE := androidboot.hardware=qcom ehci-hcd.park=3 lpm_levels.sleep_disabled=1 cma=32M@0-0xffffffff androidboot.usbconfigfs=true +BOARD_KERNEL_CMDLINE := androidboot.hardware=qcom ehci-hcd.park=3 lpm_levels.sleep_disabled=1 cma=32M@0-0xffffffff androidboot.usbconfigfs=true androidboot.selinux=permissive BOARD_KERNEL_CMDLINE += firmware_class.path=/vendor/firmware_mnt/image +BOARD_KERNEL_CMDLINE += androidboot.boot_devices=soc/624000.ufshc BOARD_KERNEL_IMAGE_NAME := Image.gz-dtb BOARD_KERNEL_PAGESIZE := 4096 TARGET_KERNEL_SOURCE := kernel/zuk/msm8996 +TARGET_KERNEL_CONFIG := kernel/zuk/msm8996/arch/arm64/configs/z2_plus_defconfig # Platform TARGET_BOARD_PLATFORM := msm8996 @@ -106,9 +108,13 @@ BOARD_VENDOR_QCOM_LOC_PDK_FEATURE_SET := true DEVICE_SPECIFIC_GPS_PATH := $(VENDOR_PATH)/gps # HIDL +DEVICE_FRAMEWORK_COMPATIBILITY_MATRIX_FILE := \ + hardware/qcom-caf/common/vendor_framework_compatibility_matrix.xml \ + hardware/qcom-caf/common/vendor_framework_compatibility_matrix_legacy.xml \ + vendor/lineage/config/device_framework_matrix.xml DEVICE_FRAMEWORK_MANIFEST_FILE := $(VENDOR_PATH)/framework_manifest.xml DEVICE_MANIFEST_FILE := $(VENDOR_PATH)/manifest.xml -DEVICE_MATRIX_FILE := $(VENDOR_PATH)/compatibility_matrix.xml +DEVICE_MATRIX_FILE := hardware/qcom-caf/common/compatibility_matrix.xml # Partitions BOARD_BOOTIMAGE_PARTITION_SIZE := 67108864 @@ -137,7 +143,7 @@ TARGET_USERIMAGES_USE_EXT4 := true TARGET_USERIMAGES_USE_F2FS := true # RIL -TARGET_USES_OLD_MNC_FORMAT := true +ENABLE_VENDOR_RIL_SERVICE := true # Security patch level VENDOR_SECURITY_PATCH := 2018-11-05 |