summaryrefslogtreecommitdiffstats
path: root/meta/classes/module-base.bbclass
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-29 09:52:59 +0000
commit977d62328723d33b873b02a3e543ba7db865fa7c (patch)
treeb41b7afb89b91d45c0f59c36d8c3f23a355774f1 /meta/classes/module-base.bbclass
parent3f5e982107ce464ebc24ff4698f1e1863417427c (diff)
downloadpoky-977d62328723d33b873b02a3e543ba7db865fa7c.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. (From OE-Core rev: 434277ed156c1685283f6fd681062d265f4fa6d0) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/module-base.bbclass')
-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"
11# kernel modules are generally machine specific 11# kernel modules are generally machine specific
12PACKAGE_ARCH = "${MACHINE_ARCH}" 12PACKAGE_ARCH = "${MACHINE_ARCH}"
13 13
14# 14# Function to ensure the kernel scripts are created. Expected to
15# Ensure the hostprogs are available for module compilation. Modules that 15# be called before do_compile. See module.bbclass for an exmaple.
16# inherit this recipe and override do_compile() should be sure to call
17# do_make_scripts() or ensure the scripts are built independently.
18#
19do_make_scripts() { 16do_make_scripts() {
20 unset CFLAGS CPPFLAGS CXXFLAGS LDFLAGS 17 unset CFLAGS CPPFLAGS CXXFLAGS LDFLAGS
21 make CC="${KERNEL_CC}" LD="${KERNEL_LD}" AR="${KERNEL_AR}" \ 18 make CC="${KERNEL_CC}" LD="${KERNEL_LD}" AR="${KERNEL_AR}" \