mirror of
git://nv-tegra.nvidia.com/linux-nv-oot.git
synced 2025-12-22 09:11:26 +03:00
nvidia-oot: disable offending drivers for v6.0
Some of the drivers from nvidia-oot are not compatible with v6.0 kernel API and data structure. Disable those drivers to unblock the kstable-v6.0 release. Revert this patch after fixing build issues with v6.0 kernel. Bug 3767126 Signed-off-by: Shanker Donthineni <sdonthineni@nvidia.com> Change-Id: I6b1499c8e92213a3722c506cfbad66f724b6f14c Reviewed-on: https://git-master.nvidia.com/r/c/linux-nv-oot/+/2786883 Tested-by: mobile promotions <svcmobile_promotions@nvidia.com> Reviewed-by: mobile promotions <svcmobile_promotions@nvidia.com>
This commit is contained in:
committed by
mobile promotions
parent
ae365a0502
commit
d12271255e
2
Makefile
2
Makefile
@@ -2,4 +2,6 @@
|
|||||||
# Copyright (c) 2022, NVIDIA CORPORATION. All rights reserved.
|
# Copyright (c) 2022, NVIDIA CORPORATION. All rights reserved.
|
||||||
|
|
||||||
obj-m += drivers/
|
obj-m += drivers/
|
||||||
|
ifeq ($(shell test $$VERSION -lt 6; echo $$?),0)
|
||||||
obj-m += sound/soc/tegra/
|
obj-m += sound/soc/tegra/
|
||||||
|
endif
|
||||||
|
|||||||
@@ -3,7 +3,9 @@
|
|||||||
|
|
||||||
LINUXINCLUDE += -I$(srctree.nvidia-oot)/include
|
LINUXINCLUDE += -I$(srctree.nvidia-oot)/include
|
||||||
|
|
||||||
|
ifeq ($(shell test $$VERSION -lt 6; echo $$?),0)
|
||||||
obj-m += block/tegra_virt_storage/
|
obj-m += block/tegra_virt_storage/
|
||||||
|
endif
|
||||||
obj-m += crypto/
|
obj-m += crypto/
|
||||||
obj-m += devfreq/
|
obj-m += devfreq/
|
||||||
obj-m += dma/
|
obj-m += dma/
|
||||||
@@ -29,5 +31,7 @@ obj-m += thermal/
|
|||||||
obj-m += watchdog/
|
obj-m += watchdog/
|
||||||
obj-m += video/tegra/
|
obj-m += video/tegra/
|
||||||
obj-m += virt/tegra/
|
obj-m += virt/tegra/
|
||||||
|
ifeq ($(shell test $$VERSION -lt 6; echo $$?),0)
|
||||||
obj-m += media/
|
obj-m += media/
|
||||||
|
endif
|
||||||
|
|
||||||
|
|||||||
@@ -3,4 +3,6 @@
|
|||||||
|
|
||||||
obj-m += ethernet/
|
obj-m += ethernet/
|
||||||
obj-m += tegra_hv_net.o
|
obj-m += tegra_hv_net.o
|
||||||
|
ifeq ($(shell test $$VERSION -lt 6; echo $$?),0)
|
||||||
obj-m += can/
|
obj-m += can/
|
||||||
|
endif
|
||||||
|
|||||||
Reference in New Issue
Block a user