mirror of
git://nv-tegra.nvidia.com/linux-nv-oot.git
synced 2025-12-22 09:11:26 +03:00
bluetooth: realtek: Add option to disable driver
The RealTek drivers do not build against all Linux distributions because some Linux distributions have back-ported upstream changes and so the KERNEL_VERSION checks in the driver do not work for these distributions. Add compilation flags for these drivers so that we can skip the building of these drivers for certain Linux distributions. Bug 5180190 Change-Id: I48101b5b9e199c6887a2cbde916d7df5ae1c53a7 Signed-off-by: Paritosh Dixit <paritoshd@nvidia.com> Reviewed-on: https://git-master.nvidia.com/r/c/linux-nv-oot/+/3325283 GVS: buildbot_gerritrpt <buildbot_gerritrpt@nvidia.com> Reviewed-by: svcacv <svcacv@nvidia.com> Reviewed-by: Jon Hunter <jonathanh@nvidia.com>
This commit is contained in:
committed by
mobile promotions
parent
f2f943a0d3
commit
8e353eecd4
@@ -1,5 +1,5 @@
|
|||||||
# SPDX-License-Identifier: GPL-2.0-only
|
# SPDX-License-Identifier: GPL-2.0-only
|
||||||
# SPDX-FileCopyrightText: Copyright (c) 2022-2024 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
|
# SPDX-FileCopyrightText: Copyright (c) 2022-2025 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
|
||||||
|
|
||||||
LINUXINCLUDE += -I$(srctree.nvidia-oot)/include
|
LINUXINCLUDE += -I$(srctree.nvidia-oot)/include
|
||||||
LINUXINCLUDE += -I$(srctree.nvidia-oot)/drivers/gpu/host1x/hw/
|
LINUXINCLUDE += -I$(srctree.nvidia-oot)/drivers/gpu/host1x/hw/
|
||||||
@@ -12,8 +12,10 @@ ifdef CONFIG_PSTORE
|
|||||||
obj-m += block/tegra_oops_virt_storage/
|
obj-m += block/tegra_oops_virt_storage/
|
||||||
endif
|
endif
|
||||||
ifdef CONFIG_BT
|
ifdef CONFIG_BT
|
||||||
|
ifneq ($(NV_OOT_BLUETOOTH_REALTEK_SKIP_BUILD),y)
|
||||||
obj-m += bluetooth/realtek/
|
obj-m += bluetooth/realtek/
|
||||||
endif
|
endif
|
||||||
|
endif
|
||||||
obj-m += c2c/
|
obj-m += c2c/
|
||||||
obj-m += clink/
|
obj-m += clink/
|
||||||
obj-m += cpuidle/
|
obj-m += cpuidle/
|
||||||
|
|||||||
Reference in New Issue
Block a user