multilib_global.bbclass: handle kernel-module-* for multilib

bitbake would report failed dependency of kernel-module-* when testing
multilib. kernel-module-* are recommended by some other recipes.

Do not extend name for kernel-module-* related packages.

[YOCTO #1456]

(From OE-Core rev: 30ac343888dc801614922045b374537c6c54f312)

Signed-off-by: Dongxiao Xu <dongxiao.xu@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Dongxiao Xu 2011-09-07 16:33:41 +08:00 committed by Richard Purdie
parent 84760050ab
commit 8d5c35bf99
1 changed files with 2 additions and 0 deletions

View File

@ -17,6 +17,8 @@ python multilib_virtclass_handler_global () {
addhandler multilib_virtclass_handler_global
def multilib_extend_name(variant, name):
if name.startswith("kernel-module"):
return name
if name.startswith("virtual/"):
subs = name.split("/", 1)[1]
if not subs.startswith(variant):