diff options
author | Taiyab Haque <quic_thaque@quicinc.com> | 2023-02-02 13:49:20 +0530 |
---|---|---|
committer | alk3pInjection <webmaster@raspii.tech> | 2023-07-15 00:23:20 +0800 |
commit | e21b3e871fae11be6bf299747d90832dad2b6b4e (patch) | |
tree | e500c1aa48f0148a514eb7e28a68149dd52de27a | |
parent | 8d15d8f1460be3e2906e22d83630be46aa70fec1 (diff) |
common: dlkm: Add support for crow
Change-Id: I65491e625f2394bec3552d83a38961a2a9cbf9d6
-rw-r--r-- | dlkm/AndroidKernelModule.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dlkm/AndroidKernelModule.mk b/dlkm/AndroidKernelModule.mk index c2a941b..5121031 100644 --- a/dlkm/AndroidKernelModule.mk +++ b/dlkm/AndroidKernelModule.mk @@ -1,5 +1,5 @@ ifneq ($(KERNEL_MODULES_INSTALL),) -ifneq ($(TARGET_BOARD_PLATFORM),taro) +ifneq ($(call is-board-platform-in-list,taro crow), true) # Get the number of CPU cores. This is the number of parallel jobs to be passed to make command. NCORES := $(shell grep -c ^processor /proc/cpuinfo) |