Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 752e0cc7 authored by Rohit Sekhar's avatar Rohit Sekhar
Browse files

Add 'techpack/data/' from commit 'f761ec9a'

git-subtree-dir: techpack/data
git-subtree-mainline: 83128fe2
git-subtree-split: f761ec9a
parents 83128fe2 f761ec9a
Loading
Loading
Loading
Loading

techpack/data/Makefile

0 → 100644
+7 −0
Original line number Diff line number Diff line
ifeq ($(CONFIG_ARCH_LITO), y)
include $(srctree)/techpack/data/config/lito.conf
LINUXINCLUDE	+= -include $(srctree)/techpack/data/config/litodataconf.h
endif

obj-y += drivers/rmnet/perf/
obj-y += drivers/rmnet/shs/
+2 −0
Original line number Diff line number Diff line
export CONFIG_RMNET_PERF=y
export CONFIG_RMNET_SHS=y
+4 −0
Original line number Diff line number Diff line
/* SPDX-License-Identifier: GPL-2.0-only */

#define CONFIG_RMNET_PERF 1
#define CONFIG_RMNET_SHS 1
+11 −0
Original line number Diff line number Diff line
#Build rmnet perf & shs
DATA_DLKM_BOARD_PLATFORMS_LIST := msmnile
DATA_DLKM_BOARD_PLATFORMS_LIST += kona
DATA_DLKM_BOARD_PLATFORMS_LIST += lito
ifneq ($(TARGET_BOARD_AUTO),true)
ifeq ($(call is-board-platform-in-list,$(DATA_DLKM_BOARD_PLATFORMS_LIST)),true)
BOARD_VENDOR_KERNEL_MODULES += $(KERNEL_MODULES_OUT)/rmnet_shs.ko
BOARD_VENDOR_KERNEL_MODULES += $(KERNEL_MODULES_OUT)/rmnet_perf.ko
endif
endif
+1 −0
Original line number Diff line number Diff line
include $(call all-subdir-makefiles)
Loading