
Added support for monaco target in rmnet driver. Change-Id: Ie5b4e722b35d6a1c5bbf66c13b863692b974fe44 Signed-off-by: Anagh G <quic_anaghg@quicinc.com>
37 行
658 B
Makefile
37 行
658 B
Makefile
ifneq (, $(filter y, $(CONFIG_ARCH_PINEAPPLE) $(CONFIG_ARCH_BLAIR) $(CONFIG_ARCH_MONACO)))
|
|
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) $(CONFIG_ARCH_BLAIR)))
|
|
obj-m += rmnet_ctl.o
|
|
rmnet_ctl-y := \
|
|
rmnet_ctl_client.o \
|
|
rmnet_ctl_ipa.o
|
|
endif
|