diff options
author | Mathias Kresin <dev@kresin.me> | 2020-12-27 21:59:28 +0100 |
---|---|---|
committer | Mathias Kresin <dev@kresin.me> | 2021-02-18 08:43:08 +0100 |
commit | d2d32dcd5f4bb2d028452419fb2e014b7b31a37a (patch) | |
tree | 0c333b5187ce634aa0137f58ad986b418bc0d5c7 /package/kernel/lantiq/ltq-ifxos/Makefile | |
parent | ba07cc0cbb3d486366e4ae3b79e69f972d8c2c5d (diff) | |
download | upstream-d2d32dcd5f4bb2d028452419fb2e014b7b31a37a.tar.gz upstream-d2d32dcd5f4bb2d028452419fb2e014b7b31a37a.tar.bz2 upstream-d2d32dcd5f4bb2d028452419fb2e014b7b31a37a.zip |
kernel: lantiq: fix Module.symvers handling
If an external module uses exported symbols from another external
module, Kbuild needs to have full knowledge of all symbols to
avoid spitting out warnings about undefined symbols.
Use PKG_EXTMOD_SUBDIRS to point to the build directory which contains
the Module.symvers.
Pass KERNEL_MAKE_FLAGS to the external module build, to inject
KBUILD_EXTRA_SYMBOLS. KBUILD_EXTRA_SYMBOLS holds a space separated list
of Module.symvers, which list all exported symbols.
Signed-off-by: Mathias Kresin <dev@kresin.me>
Diffstat (limited to 'package/kernel/lantiq/ltq-ifxos/Makefile')
-rw-r--r-- | package/kernel/lantiq/ltq-ifxos/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/package/kernel/lantiq/ltq-ifxos/Makefile b/package/kernel/lantiq/ltq-ifxos/Makefile index 4a368309d3..e98cb21eff 100644 --- a/package/kernel/lantiq/ltq-ifxos/Makefile +++ b/package/kernel/lantiq/ltq-ifxos/Makefile @@ -16,6 +16,7 @@ PKG_HASH:=ed7fe39311d7a4a13d23ed0ae2445c0d825b472b5a98da9b72bcaabcf5ed2d5f PKG_MAINTAINER:=John Crispin <john@phrozen.org> PKG_LICENSE:=GPL-2.0 BSD-2-Clause PKG_LICENSE_FILES:=LICENSE +PKG_EXTMOD_SUBDIRS:=src PKG_FIXUP:=autoreconf |