summaryrefslogtreecommitdiffstats
path: root/meta/classes/module-base.bbclass
diff options
context:
space:
mode:
authorPhil Blundell <philb@gnu.org>2012-09-25 12:55:04 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2012-10-18 12:13:34 +0100
commit0aad4662769530ef3ea045b6ba1afec7cc3f3055 (patch)
tree37bb1e3fdc955408eb411cf24272e95e7b87eb90 /meta/classes/module-base.bbclass
parentc942d527ccce73339cefcabcc299f999a952a17b (diff)
downloadast2050-yocto-poky-0aad4662769530ef3ea045b6ba1afec7cc3f3055.zip
ast2050-yocto-poky-0aad4662769530ef3ea045b6ba1afec7cc3f3055.tar.gz
module.bbclass: Move do_make_scripts() to module-base
It's sometimes useful to have this function available to recipes which don't wish to use module.bbclass for whatever reason. (From OE-Core rev: 7632b44e7f487180811d47fbe9c29aa8e58868a2) Signed-off-by: Phil Blundell <pb@pbcl.net> Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/module-base.bbclass')
-rw-r--r--meta/classes/module-base.bbclass11
1 files changed, 11 insertions, 0 deletions
diff --git a/meta/classes/module-base.bbclass b/meta/classes/module-base.bbclass
index 9379bf8..210c47c 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}"
# kernel modules are generally machine specific
PACKAGE_ARCH = "${MACHINE_ARCH}"
+
+#
+# Ensure the hostprogs are available for module compilation. Modules that
+# inherit this recipe and override do_compile() should be sure to call
+# do_make_scripts() or ensure the scripts are built independently.
+#
+do_make_scripts() {
+ unset CFLAGS CPPFLAGS CXXFLAGS LDFLAGS
+ oe_runmake CC="${KERNEL_CC}" LD="${KERNEL_LD}" AR="${KERNEL_AR}" \
+ -C ${STAGING_KERNEL_DIR} scripts
+}
OpenPOWER on IntegriCloud