diff options
author | Rainer Keller <rainer.keller@theqtcompany.com> | 2015-07-15 14:19:58 +0200 |
---|---|---|
committer | Rainer Keller <rainer.keller@theqtcompany.com> | 2015-08-12 13:50:53 +0000 |
commit | 62e8fadcaa3ec57c442779bf523d25313c9b1f2c (patch) | |
tree | 8c7e9928cc2ece01d5f2b663a60701489f77dd05 /recipes | |
parent | 299aa675369abe4f1eae062bd4f468a006449033 (diff) | |
download | meta-boot2qt-62e8fadcaa3ec57c442779bf523d25313c9b1f2c.tar.gz |
Check if VirtualBox kernel modules do exist
The Makefile is broken. It will report success even if the modules could
not be compiled due to gcc errors. Yocto will then continue with the
modules missing from the package.
Change-Id: I0efcdc736c158cb857549eb64ebd6bc86a26b7e6
Reviewed-by: Samuli Piippo <samuli.piippo@theqtcompany.com>
Diffstat (limited to 'recipes')
-rw-r--r-- | recipes/virtualbox/virtualbox-guest-additions_4.2.14.bb | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/recipes/virtualbox/virtualbox-guest-additions_4.2.14.bb b/recipes/virtualbox/virtualbox-guest-additions_4.2.14.bb index 04fffec..4f52478 100644 --- a/recipes/virtualbox/virtualbox-guest-additions_4.2.14.bb +++ b/recipes/virtualbox/virtualbox-guest-additions_4.2.14.bb | |||
@@ -47,7 +47,9 @@ do_compile_prepend() { | |||
47 | 47 | ||
48 | do_install() { | 48 | do_install() { |
49 | install -m 0755 -d ${D}/lib/modules/${KERNEL_VERSION}/kernel/drivers/vbox | 49 | install -m 0755 -d ${D}/lib/modules/${KERNEL_VERSION}/kernel/drivers/vbox |
50 | install -m 0644 *.ko ${D}/lib/modules/${KERNEL_VERSION}/kernel/drivers/vbox | 50 | install -m 0644 vboxsf.ko ${D}/lib/modules/${KERNEL_VERSION}/kernel/drivers/vbox |
51 | install -m 0644 vboxguest.ko ${D}/lib/modules/${KERNEL_VERSION}/kernel/drivers/vbox | ||
52 | install -m 0644 vboxvideo.ko ${D}/lib/modules/${KERNEL_VERSION}/kernel/drivers/vbox | ||
51 | } | 53 | } |
52 | 54 | ||
53 | PKG_${PN} = "kernel-module-vbox" | 55 | PKG_${PN} = "kernel-module-vbox" |