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-atm/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-atm/Makefile')
-rw-r--r-- | package/kernel/lantiq/ltq-atm/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/kernel/lantiq/ltq-atm/Makefile b/package/kernel/lantiq/ltq-atm/Makefile index 89a3328cf8..f675269ca3 100644 --- a/package/kernel/lantiq/ltq-atm/Makefile +++ b/package/kernel/lantiq/ltq-atm/Makefile @@ -36,7 +36,7 @@ endef define Build/Compile cd $(LINUX_DIR); \ ARCH=mips CROSS_COMPILE="$(KERNEL_CROSS)" \ - $(MAKE) BUILD_VARIANT=$(BUILD_VARIANT) M=$(PKG_BUILD_DIR) V=1 modules + $(MAKE) $(KERNEL_MAKE_FLAGS) BUILD_VARIANT=$(BUILD_VARIANT) M=$(PKG_BUILD_DIR) V=1 modules endef $(eval $(call KernelPackage,ltq-atm-danube)) |