sm8750: init kernel modules repo

This commit is contained in:
2025-08-11 12:21:01 +02:00
parent 2681143b87
commit facad83b01
8851 changed files with 6894561 additions and 0 deletions

View File

@@ -0,0 +1,42 @@
load(":synx_module_build.bzl", "create_module_registry")
SYNX_KERNEL_ROOT = "synx-kernel"
synx_modules = create_module_registry([":synx_headers"])
register_synx_module = synx_modules.register
register_synx_module(
name = "synx-driver",
path = "msm",
srcs = [
"synx/synx.c",
"synx/synx_global.c",
"synx/synx_util.c",
"synx/synx_debugfs.c",
"synx/synx_debugfs_util.c",
"synx/synx_compat.c",
],
# Configs are handled by config_options = []
config_deps = {
"CONFIG_QTI_HW_FENCE" : [
"//vendor/qcom/opensource/mm-drivers/hw_fence:%b_msm_hw_fence",
"//vendor/qcom/opensource/mm-drivers/hw_fence:hw_fence_headers",
],
},
)
register_synx_module(
name = "ipclite",
path = "msm",
srcs = [
"synx/ipclite.c",
],
)
register_synx_module(
name = "ipclite_test",
path = "msm",
srcs = [
"synx/test/ipclite_test.c",
],
)