aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2013-11-27 13:45:42 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2013-11-27 14:28:43 +0000
commit434277ed156c1685283f6fd681062d265f4fa6d0 (patch)
treef0a7a32685248d373cffd695dd68a32422442283
parentb2c948d56241ff7cdea2e9e68b740f305c72f5ca (diff)
downloadopenembedded-core-434277ed156c1685283f6fd681062d265f4fa6d0.tar.gz
module-base: Fix misleading comment
The comment was originally written for module.bbclass and is now slightly misleading. This updates it to match the current code. Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r--meta/classes/module-base.bbclass7
1 files changed, 2 insertions, 5 deletions
diff --git a/meta/classes/module-base.bbclass b/meta/classes/module-base.bbclass
index 9dbb4b424b..1589a90bec 100644
--- a/meta/classes/module-base.bbclass
+++ b/meta/classes/module-base.bbclass
@@ -11,11 +11,8 @@ KERNEL_OBJECT_SUFFIX = ".ko"
# 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.
-#
+# Function to ensure the kernel scripts are created. Expected to
+# be called before do_compile. See module.bbclass for an exmaple.
do_make_scripts() {
unset CFLAGS CPPFLAGS CXXFLAGS LDFLAGS
make CC="${KERNEL_CC}" LD="${KERNEL_LD}" AR="${KERNEL_AR}" \