mirror of
git://nv-tegra.nvidia.com/linux-nv-oot.git
synced 2025-12-22 17:25:35 +03:00
Disable mods in android common kernel (ACK). ACK places restrictions on the use of symbols exported by the fs subsystem. These symbols have to be explicity imported using MODULE_IMPORT_NS. To avoid build errors, disable mods functionality as of now. Bug 3974840 Change-Id: I28bcb574ba722415a62a68f81d6579e2fd8a1d51 Signed-off-by: Ankita Garg <ankitag@nvidia.com> (cherry picked from commit ff77fe1566b536cb2243b6158ec6cf7e90f614bc) Reviewed-on: https://git-master.nvidia.com/r/c/linux-nv-oot/+/2910059 Reviewed-by: svcacv <svcacv@nvidia.com> Reviewed-by: Laxman Dewangan <ldewangan@nvidia.com> GVS: Gerrit_Virtual_Submit <buildbot_gerritrpt@nvidia.com>
19 lines
577 B
Makefile
19 lines
577 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
# Copyright (c) 2022-2023, NVIDIA CORPORATION. All rights reserved.
|
|
|
|
LINUX_VERSION := $(shell expr $(VERSION) \* 256 + $(PATCHLEVEL))
|
|
LINUX_VERSION_6_3 := $(shell expr 6 \* 256 + 3)
|
|
|
|
ifeq ($(findstring ack_src,$(NV_BUILD_KERNEL_OPTIONS)),)
|
|
obj-m += mods/
|
|
endif
|
|
obj-m += nvsciipc/
|
|
ifdef CONFIG_PCI
|
|
obj-m += tegra-pcie-dma-test.o
|
|
endif
|
|
# bluedroid_pm is currently broken for Linux v6.3 and so skip for Linux v6.3+
|
|
ifeq ($(shell test $(LINUX_VERSION) -lt $(LINUX_VERSION_6_3); echo $$?),0)
|
|
obj-m += bluedroid_pm.o
|
|
endif
|
|
obj-m += nvscic2c-pcie/
|