diff options
Diffstat (limited to 'meta/classes/kernel.bbclass')
-rw-r--r-- | meta/classes/kernel.bbclass | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/meta/classes/kernel.bbclass b/meta/classes/kernel.bbclass index ab984e3e88..1d8dff9ada 100644 --- a/meta/classes/kernel.bbclass +++ b/meta/classes/kernel.bbclass | |||
@@ -188,7 +188,9 @@ kernel_do_install() { | |||
188 | fi | 188 | fi |
189 | 189 | ||
190 | # Necessary for building modules like compat-wireless. | 190 | # Necessary for building modules like compat-wireless. |
191 | cp include/generated/bounds.h $kerneldir/include/generated/bounds.h | 191 | if [ -f include/generated/bounds.h ]; then |
192 | cp include/generated/bounds.h $kerneldir/include/generated/bounds.h | ||
193 | fi | ||
192 | 194 | ||
193 | # Remove the following binaries which cause strip or arch QA errors | 195 | # Remove the following binaries which cause strip or arch QA errors |
194 | # during do_package for cross-compiled platforms | 196 | # during do_package for cross-compiled platforms |