
Enable rmnet core and ctl drivers and update the kernel APIs to match the appropriate kernel. This change also adds support for the inclusion of the IPA kernel headers from a non-core kernel location. This is achieved using the flag KBUILD_REQUIRED_KOS. Additionally, remove all deprecated code. CRs-Fixed: 3311558 Change-Id: I9317f53ca8b1a370b6a5eb86734057399aee1d48 Signed-off-by: Subash Abhinov Kasiviswanathan <quic_subashab@quicinc.com>
37 lines
594 B
Makefile
37 lines
594 B
Makefile
ifneq (, $(filter y, $(CONFIG_ARCH_PINEAPPLE)))
|
|
ccflags-y += -DRMNET_LA_PLATFORM
|
|
endif
|
|
|
|
obj-m += rmnet_core.o
|
|
|
|
#core sources
|
|
rmnet_core-y := \
|
|
rmnet_config.o \
|
|
rmnet_handlers.o \
|
|
rmnet_descriptor.o \
|
|
rmnet_genl.o \
|
|
rmnet_map_command.o \
|
|
rmnet_map_data.o \
|
|
rmnet_module.o \
|
|
rmnet_vnd.o
|
|
|
|
rmnet_core-y += \
|
|
rmnet_ll.o \
|
|
rmnet_ll_ipa.o
|
|
|
|
#DFC sources
|
|
rmnet_core-y += \
|
|
qmi_rmnet.o \
|
|
wda_qmi.o \
|
|
dfc_qmi.o \
|
|
dfc_qmap.o \
|
|
rmnet_qmap.o \
|
|
rmnet_ll_qmap.o
|
|
|
|
ifneq (, $(filter y, $(CONFIG_ARCH_PINEAPPLE)))
|
|
obj-m += rmnet_ctl.o
|
|
rmnet_ctl-y := \
|
|
rmnet_ctl_client.o \
|
|
rmnet_ctl_ipa.o
|
|
endif
|