
Add support for synx modules to be built with Bazel DDK framework for pineapple. Change-Id: I375ea8a722f2afdfd5a9354854675030ebd38d96 Signed-off-by: Ram Nagesh <quic_ramnages@quicinc.com>
16 linhas
443 B
Python
16 linhas
443 B
Python
load("//external_modules/synx-kernel:synx_modules.bzl", "synx_modules")
|
|
load("//external_modules/synx-kernel:synx_module_build.bzl", "define_consolidate_gki_modules")
|
|
|
|
def define_pineapple():
|
|
define_consolidate_gki_modules(
|
|
target = "pineapple",
|
|
registry = synx_modules,
|
|
modules = [
|
|
"synx",
|
|
"ipclite",
|
|
],
|
|
config_options = [
|
|
"TARGET_SYNX_ENABLE",
|
|
],
|
|
)
|