]> git.ipfire.org Git - thirdparty/openembedded/openembedded-core-contrib.git/commit
module.bbclass: use Module.symvers for dependants
authorAndré Draszik <git@andred.net>
Thu, 18 Aug 2016 07:56:24 +0000 (08:56 +0100)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Thu, 8 Sep 2016 07:25:18 +0000 (08:25 +0100)
commit88f1bc77c22091fccb00e80839adfdf34534187f
tree487fc6a9243b4f8a5010b435df5bdfaea46a5460
parent872a83be6e86005f6426c90073ece56de4534ac0
module.bbclass: use Module.symvers for dependants

When compiling multiple external kernel modules, where one
depends on the other, there are two problems at the
moment:
1) we get compile time warnings from the kernel build
   system due to missing symbols (from modpost).
2) Any modules generated are missing dependency
   information (in the .modinfo elf section) for any
   dependencies outside the current source tree and
   outside the kernel itself.

This is expected, but the kernel build system has a way to
deal with this - the dependent module is expected to
specify KBUILD_EXTRA_SYMBOLS (as a space-separated list)
to point to any and all Module.symvers of kernel modules
that are dependencies.

While 1) by itself is not really a big issue, 2) prevents
the packaging process from generating cross-source tree
package dependencies.

As a first step to solve the missing dependencies in
packages created, we:
1) install Module.symvers of all external kernel module
   builds (into a location that is automatically packaged
   into the -dev package)
2) make use of KBUILD_EXTRA_SYMBOLS and pass the location
   of all Module.symvers of all kernel-module-* packages
   we depend on

This solves both problems mentioned above.

Signed-off-by: André Draszik <git@andred.net>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
meta/classes/module.bbclass