123456789101112131415161718 |
- # Android makefile for Fingerprint kernel modules
- ifeq ($(call is-board-platform-in-list,pineapple), true)
- ifneq (,$(filter arm aarch64 arm64, $(TARGET_ARCH)))
- LOCAL_PATH := $(call my-dir)
- DLKM_DIR := device/qcom/common/dlkm
- include $(CLEAR_VARS)
- LOCAL_SRC_FILES := $(LOCAL_PATH)/qbt_handler.c
- LOCAL_MODULE := qbt_handler.ko
- LOCAL_MODULE_TAGS := optional
- LOCAL_MODULE_PATH := $(KERNEL_MODULES_OUT)
- include $(DLKM_DIR)/Build_external_kernelmodule.mk
- endif
- endif
|