|
@@ -31,6 +31,32 @@ def _get_module_list(target, variant):
|
|
|
|
|
|
return [":{}_{}".format(tv, mod) for mod in ret]
|
|
|
|
|
|
+def _define_platform_config_rule(module, target, variant):
|
|
|
+ tv = "{}_{}".format(target, variant)
|
|
|
+ native.genrule(
|
|
|
+ name = "{}/{}_defconfig_generate_perf".format(module, tv),
|
|
|
+ outs = ["{}/{}_defconfig.generated_perf".format(module, tv)],
|
|
|
+ srcs = [
|
|
|
+ "{}/{}_gki_defconfig".format(module, target),
|
|
|
+ ],
|
|
|
+ cmd = "cat $(SRCS) > $@",
|
|
|
+ )
|
|
|
+ native.genrule(
|
|
|
+ name = "{}/{}_defconfig_generate_gki".format(module, tv),
|
|
|
+ outs = ["{}/{}_defconfig.generated_gki".format(module, tv)],
|
|
|
+ srcs = [
|
|
|
+ "{}/{}_gki_defconfig".format(module, target),
|
|
|
+ ],
|
|
|
+ cmd = "cat $(SRCS) > $@",
|
|
|
+ )
|
|
|
+ native.genrule(
|
|
|
+ name = "{}/{}_defconfig_generate_consolidate".format(module, tv),
|
|
|
+ outs = ["{}/{}_defconfig.generated_consolidate".format(module, tv)],
|
|
|
+ srcs = [
|
|
|
+ "{}/{}_consolidate_defconfig".format(module, target),
|
|
|
+ ],
|
|
|
+ cmd = "cat $(SRCS) > $@",
|
|
|
+ )
|
|
|
|
|
|
def _define_modules_for_target_variant(target, variant):
|
|
|
tv = "{}_{}".format(target, variant)
|
|
@@ -46,7 +72,11 @@ def _define_modules_for_target_variant(target, variant):
|
|
|
if target in _icnss2_enabled_target:
|
|
|
icnss2_enabled = 1
|
|
|
|
|
|
+ print("tv=", tv)
|
|
|
if cnss2_enabled:
|
|
|
+ module = "cnss2"
|
|
|
+ _define_platform_config_rule(module, target, variant)
|
|
|
+ defconfig = ":{}/{}_defconfig_generate_{}".format(module, tv, variant)
|
|
|
ddk_module(
|
|
|
name = "{}_cnss2".format(tv),
|
|
|
srcs = native.glob([
|
|
@@ -62,7 +92,7 @@ def _define_modules_for_target_variant(target, variant):
|
|
|
]),
|
|
|
includes = ["cnss", "cnss_utils"],
|
|
|
kconfig = "cnss2/Kconfig",
|
|
|
- defconfig = "cnss2/{}_defconfig".format(tv),
|
|
|
+ defconfig = defconfig,
|
|
|
conditional_srcs = {
|
|
|
"CONFIG_CNSS2_QMI": {
|
|
|
True: [
|
|
@@ -91,6 +121,9 @@ def _define_modules_for_target_variant(target, variant):
|
|
|
)
|
|
|
|
|
|
if icnss2_enabled:
|
|
|
+ module = "icnss2"
|
|
|
+ _define_platform_config_rule(module, target, variant)
|
|
|
+ defconfig = ":{}/{}_defconfig_generate_{}".format(module, tv, variant)
|
|
|
ddk_module(
|
|
|
name = "{}_icnss2".format(tv),
|
|
|
srcs = native.glob([
|
|
@@ -103,7 +136,8 @@ def _define_modules_for_target_variant(target, variant):
|
|
|
]),
|
|
|
includes = ["icnss2", "cnss_utils"],
|
|
|
kconfig = "icnss2/Kconfig",
|
|
|
- defconfig = "icnss2/{}_defconfig".format(tv),
|
|
|
+ copts = ["-Wno-format"],
|
|
|
+ defconfig = defconfig,
|
|
|
conditional_srcs = {
|
|
|
"CONFIG_ICNSS2_QMI": {
|
|
|
True: [
|
|
@@ -121,14 +155,16 @@ def _define_modules_for_target_variant(target, variant):
|
|
|
":wlan-platform-headers",
|
|
|
],
|
|
|
)
|
|
|
-
|
|
|
+ module = "cnss_genl"
|
|
|
+ _define_platform_config_rule(module, target, variant)
|
|
|
+ defconfig = ":{}/{}_defconfig_generate_{}".format(module, tv, variant)
|
|
|
ddk_module(
|
|
|
name = "{}_cnss_nl".format(tv),
|
|
|
srcs = [
|
|
|
"cnss_genl/cnss_nl.c",
|
|
|
],
|
|
|
kconfig = "cnss_genl/Kconfig",
|
|
|
- defconfig = "cnss_genl/{}_defconfig".format(tv),
|
|
|
+ defconfig = defconfig,
|
|
|
out = "cnss_nl.ko",
|
|
|
kernel_build = "//msm-kernel:{}".format(tv),
|
|
|
deps = [
|
|
@@ -137,6 +173,9 @@ def _define_modules_for_target_variant(target, variant):
|
|
|
],
|
|
|
)
|
|
|
|
|
|
+ module = "cnss_prealloc"
|
|
|
+ _define_platform_config_rule(module, target, variant)
|
|
|
+ defconfig = ":{}/{}_defconfig_generate_{}".format(module, tv, variant)
|
|
|
ddk_module(
|
|
|
name = "{}_cnss_prealloc".format(tv),
|
|
|
srcs = native.glob([
|
|
@@ -145,7 +184,7 @@ def _define_modules_for_target_variant(target, variant):
|
|
|
]),
|
|
|
includes = ["cnss_utils"],
|
|
|
kconfig = "cnss_prealloc/Kconfig",
|
|
|
- defconfig = "cnss_prealloc/{}_defconfig".format(tv),
|
|
|
+ defconfig = defconfig,
|
|
|
out = "cnss_prealloc.ko",
|
|
|
kernel_build = "//msm-kernel:{}".format(tv),
|
|
|
deps = [
|
|
@@ -154,6 +193,9 @@ def _define_modules_for_target_variant(target, variant):
|
|
|
],
|
|
|
)
|
|
|
|
|
|
+ module = "cnss_utils"
|
|
|
+ _define_platform_config_rule(module, target, variant)
|
|
|
+ defconfig = ":{}/{}_defconfig_generate_{}".format(module, tv, variant)
|
|
|
ddk_module(
|
|
|
name = "{}_cnss_utils".format(tv),
|
|
|
srcs = native.glob([
|
|
@@ -161,7 +203,7 @@ def _define_modules_for_target_variant(target, variant):
|
|
|
"cnss_utils/*.h"
|
|
|
]),
|
|
|
kconfig = "cnss_utils/Kconfig",
|
|
|
- defconfig = "cnss_utils/{}_defconfig".format(tv),
|
|
|
+ defconfig = defconfig,
|
|
|
out = "cnss_utils.ko",
|
|
|
kernel_build = "//msm-kernel:{}".format(tv),
|
|
|
deps = [
|
|
@@ -170,6 +212,8 @@ def _define_modules_for_target_variant(target, variant):
|
|
|
],
|
|
|
)
|
|
|
|
|
|
+ module = "cnss_utils"
|
|
|
+ defconfig = ":{}/{}_defconfig_generate_{}".format(module, tv, variant)
|
|
|
ddk_module(
|
|
|
name = "{}_wlan_firmware_service".format(tv),
|
|
|
srcs = native.glob([
|
|
@@ -178,12 +222,14 @@ def _define_modules_for_target_variant(target, variant):
|
|
|
"cnss_utils/*.h"
|
|
|
]),
|
|
|
kconfig = "cnss_utils/Kconfig",
|
|
|
- defconfig = "cnss_utils/{}_defconfig".format(tv),
|
|
|
+ defconfig = defconfig,
|
|
|
out = "wlan_firmware_service.ko",
|
|
|
kernel_build = "//msm-kernel:{}".format(tv),
|
|
|
deps = ["//msm-kernel:all_headers"],
|
|
|
)
|
|
|
|
|
|
+ module = "cnss_utils"
|
|
|
+ defconfig = ":{}/{}_defconfig_generate_{}".format(module, tv, variant)
|
|
|
if plat_ipc_qmi_svc_enabled:
|
|
|
ddk_module(
|
|
|
name = "{}_cnss_plat_ipc_qmi_svc".format(tv),
|
|
@@ -193,12 +239,12 @@ def _define_modules_for_target_variant(target, variant):
|
|
|
"cnss_utils/*.h"
|
|
|
]),
|
|
|
kconfig = "cnss_utils/Kconfig",
|
|
|
- defconfig = "cnss_utils/{}_defconfig".format(tv),
|
|
|
+ defconfig = defconfig,
|
|
|
out = "cnss_plat_ipc_qmi_svc.ko",
|
|
|
kernel_build = "//msm-kernel:{}".format(tv),
|
|
|
deps = ["//msm-kernel:all_headers"],
|
|
|
)
|
|
|
-
|
|
|
+ tv = "{}_{}".format(target, variant)
|
|
|
copy_to_dist_dir(
|
|
|
name = "{}_modules_dist".format(tv),
|
|
|
data = _get_module_list(target, variant),
|
|
@@ -212,4 +258,5 @@ def _define_modules_for_target_variant(target, variant):
|
|
|
|
|
|
def define_modules():
|
|
|
for (t, v) in get_all_variants():
|
|
|
+ print("v=", v)
|
|
|
_define_modules_for_target_variant(t, v)
|