diff options
-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 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 |
12 | PACKAGE_ARCH = "${MACHINE_ARCH}" | 12 | PACKAGE_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 | # | ||
19 | do_make_scripts() { | 16 | do_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}" \ |