mirror of
git://nv-tegra.nvidia.com/linux-nv-oot.git
synced 2025-12-24 18:21:35 +03:00
The name of rtcpu's debug kernel module, debug.ko, is not very descriptive and for users it is unclear what subsystem this 'debug' kernel module is used by. So rename this to 'rtcpu-debug.ko' so that it is clear this belongs to the camera subsystem. Bug 4078936 Change-Id: I77da43fb0d54d1ea058f4c3d6c313f49a85b7cfa Signed-off-by: Jon Hunter <jonathanh@nvidia.com> Reviewed-on: https://git-master.nvidia.com/r/c/linux-nv-oot/+/2890897 Reviewed-by: Matti Ryttylainen <mryttylainen@nvidia.com> Reviewed-by: Frank Chen <frankc@nvidia.com> Reviewed-by: Ankur Pawar <ankurp@nvidia.com> Tested-by: Ankur Pawar <ankurp@nvidia.com> GVS: Gerrit_Virtual_Submit <buildbot_gerritrpt@nvidia.com>
19 lines
606 B
Makefile
19 lines
606 B
Makefile
# SPDX-License-Identifier: GPL-2.0-only
|
|
# Copyright (c) 2022-2023, NVIDIA CORPORATION & AFFILIATES. All rights reserved.
|
|
|
|
LINUX_VERSION := $(shell expr $(VERSION) \* 256 + $(PATCHLEVEL))
|
|
LINUX_VERSION_6_2 := $(shell expr 6 \* 256 + 2)
|
|
|
|
# capture-ivc is currently broken for Linux v6.2 and so skip for Linux v6.2+
|
|
ifeq ($(shell test $(LINUX_VERSION) -lt $(LINUX_VERSION_6_2); echo $$?),0)
|
|
obj-m += capture-ivc.o
|
|
endif
|
|
obj-m += ivc-bus.o
|
|
obj-m += camchar.o
|
|
obj-m += camera-diagnostics.o
|
|
obj-m += rtcpu-debug.o
|
|
obj-m += clk-group.o
|
|
obj-m += hsp-mailbox-client.o
|
|
obj-m += reset-group.o
|
|
obj-m += device-group.o
|