diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-11-27 13:45:42 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-11-27 14:28:43 +0000 |
commit | 434277ed156c1685283f6fd681062d265f4fa6d0 (patch) | |
tree | f0a7a32685248d373cffd695dd68a32422442283 /meta/classes/module-base.bbclass | |
parent | b2c948d56241ff7cdea2e9e68b740f305c72f5ca (diff) | |
download | openembedded-core-contrib-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>
Diffstat (limited to 'meta/classes/module-base.bbclass')
-rw-r--r-- | meta/classes/module-base.bbclass | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/meta/classes/module-base.bbclass b/meta/classes/module-base.bbclass index 9dbb4b424b3..1589a90bec4 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}" \ |