diff options
Diffstat (limited to 'meta/classes/module-base.bbclass')
-rw-r--r-- | meta/classes/module-base.bbclass | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/meta/classes/module-base.bbclass b/meta/classes/module-base.bbclass index 9379bf87fa..210c47ccd9 100644 --- a/meta/classes/module-base.bbclass +++ b/meta/classes/module-base.bbclass | |||
@@ -26,3 +26,14 @@ KERNEL_AR = "${HOST_PREFIX}ar${KERNEL_ARSUFFIX} ${HOST_AR_KERNEL_ARCH}" | |||
26 | 26 | ||
27 | # kernel modules are generally machine specific | 27 | # kernel modules are generally machine specific |
28 | PACKAGE_ARCH = "${MACHINE_ARCH}" | 28 | PACKAGE_ARCH = "${MACHINE_ARCH}" |
29 | |||
30 | # | ||
31 | # Ensure the hostprogs are available for module compilation. Modules that | ||
32 | # inherit this recipe and override do_compile() should be sure to call | ||
33 | # do_make_scripts() or ensure the scripts are built independently. | ||
34 | # | ||
35 | do_make_scripts() { | ||
36 | unset CFLAGS CPPFLAGS CXXFLAGS LDFLAGS | ||
37 | oe_runmake CC="${KERNEL_CC}" LD="${KERNEL_LD}" AR="${KERNEL_AR}" \ | ||
38 | -C ${STAGING_KERNEL_DIR} scripts | ||
39 | } | ||