summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--meta/classes/kernel.bbclass8
-rw-r--r--meta/classes/module-base.bbclass2
2 files changed, 9 insertions, 1 deletions
diff --git a/meta/classes/kernel.bbclass b/meta/classes/kernel.bbclass
index 5e8b6cf343..b75a462180 100644
--- a/meta/classes/kernel.bbclass
+++ b/meta/classes/kernel.bbclass
@@ -217,6 +217,14 @@ do_compile_kernelmodules() {
217 unset CFLAGS CPPFLAGS CXXFLAGS LDFLAGS MACHINE 217 unset CFLAGS CPPFLAGS CXXFLAGS LDFLAGS MACHINE
218 if (grep -q -i -e '^CONFIG_MODULES=y$' ${B}/.config); then 218 if (grep -q -i -e '^CONFIG_MODULES=y$' ${B}/.config); then
219 oe_runmake -C ${B} ${PARALLEL_MAKE} modules CC="${KERNEL_CC}" LD="${KERNEL_LD}" ${KERNEL_EXTRA_ARGS} 219 oe_runmake -C ${B} ${PARALLEL_MAKE} modules CC="${KERNEL_CC}" LD="${KERNEL_LD}" ${KERNEL_EXTRA_ARGS}
220
221 # Module.symvers gets updated during the
222 # building of the kernel modules. We need to
223 # update this in the shared workdir since some
224 # external kernel modules has a dependency on
225 # other kernel modules and will look at this
226 # file to do symbol lookups
227 cp Module.symvers ${STAGING_KERNEL_BUILDDIR}/
220 else 228 else
221 bbnote "no modules to compile" 229 bbnote "no modules to compile"
222 fi 230 fi
diff --git a/meta/classes/module-base.bbclass b/meta/classes/module-base.bbclass
index 8be26c4f5e..cf4b02ee02 100644
--- a/meta/classes/module-base.bbclass
+++ b/meta/classes/module-base.bbclass
@@ -1,7 +1,7 @@
1inherit kernel-arch 1inherit kernel-arch
2 2
3# This is instead of DEPENDS = "virtual/kernel" 3# This is instead of DEPENDS = "virtual/kernel"
4do_configure[depends] += "virtual/kernel:do_shared_workdir" 4do_configure[depends] += "virtual/kernel:do_compile_kernelmodules"
5 5
6export OS = "${TARGET_OS}" 6export OS = "${TARGET_OS}"
7export CROSS_COMPILE = "${TARGET_PREFIX}" 7export CROSS_COMPILE = "${TARGET_PREFIX}"