summaryrefslogtreecommitdiffstats
path: root/meta/classes/kernel.bbclass
diff options
context:
space:
mode:
Diffstat (limited to 'meta/classes/kernel.bbclass')
-rw-r--r--meta/classes/kernel.bbclass4
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/classes/kernel.bbclass b/meta/classes/kernel.bbclass
index fd1c8e31c1..70a782fbaf 100644
--- a/meta/classes/kernel.bbclass
+++ b/meta/classes/kernel.bbclass
@@ -84,7 +84,7 @@ do_compile_kernelmodules() {
84 if (grep -q -i -e '^CONFIG_MODULES=y$' .config); then 84 if (grep -q -i -e '^CONFIG_MODULES=y$' .config); then
85 oe_runmake modules CC="${KERNEL_CC}" LD="${KERNEL_LD}" 85 oe_runmake modules CC="${KERNEL_CC}" LD="${KERNEL_LD}"
86 else 86 else
87 oenote "no modules to compile" 87 bbnote "no modules to compile"
88 fi 88 fi
89} 89}
90addtask compile_kernelmodules after do_compile before do_install 90addtask compile_kernelmodules after do_compile before do_install
@@ -97,7 +97,7 @@ kernel_do_install() {
97 if (grep -q -i -e '^CONFIG_MODULES=y$' .config); then 97 if (grep -q -i -e '^CONFIG_MODULES=y$' .config); then
98 oe_runmake DEPMOD=echo INSTALL_MOD_PATH="${D}" modules_install 98 oe_runmake DEPMOD=echo INSTALL_MOD_PATH="${D}" modules_install
99 else 99 else
100 oenote "no modules to install" 100 bbnote "no modules to install"
101 fi 101 fi
102 102
103 # 103 #