mirror of
https://git.yoctoproject.org/poky
synced 2026-05-08 05:09:24 +00:00
layer.conf: Whitelist lttng-tools->lttng-modules dependency
The API between lttng-tools and lttng-modules is safe, whitelist it as the dependency fixes tools failures. This needs a hack in the multilib class as right now there is no way to know if a given recipe is a kernel module or not. This needs to be revisited. (From OE-Core rev: 584e713bf7f6885a13c440cd45c0f469feb3a694) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
@@ -118,6 +118,9 @@ def preferred_ml_updates(d):
|
||||
d.renameVar(prov, provexp)
|
||||
|
||||
def translate_provide(prefix, prov):
|
||||
# Really need to know if kernel modules class is inherited somehow
|
||||
if prov == "lttng-modules":
|
||||
return prov
|
||||
if not prov.startswith("virtual/"):
|
||||
return prefix + "-" + prov
|
||||
if prov == "virtual/kernel":
|
||||
|
||||
Reference in New Issue
Block a user