aboutsummaryrefslogtreecommitdiffstats
path: root/meta-oe/recipes-support/vboxguestdrivers
AgeCommit message (Collapse)Author
2018-11-26vboxguestdrivers: upgrade to 5.2.22Martin Jansa
VirtualBox 5.2.22 (released November 09 2018) This is a maintenance release. The following items were fixed and/or added: Audio: fixed a regression in the Core Audio backend causing a hang when returning from host sleep when processing input buffers Audio: fixed a potential crash in the HDA emulation if a stream has no valid mixer sink attached -- thanks to Rink Springer (rink@…) (bug #17664) Windows hosts: fixed an incompatibility with recent versions of Windows 10 (bug #17977) Windows hosts: fixed a number of bridged networking driver crashes (bug #18046) Linux Additions: disable 3D for recent guests using Wayland (bug #18116) Linux Additions: fix for rebuilding kernel modules for new kernels on RPM guests Linux Additions: further fixes for Linux 4.19 Linux Additions: fixed errors rebuilding initrd files with dracut on EL 6 (bug #18055) Linux Additions: fixed 5.2.20 regression: guests not remembering the screen size after shutdown and restart (bug #18078) VirtualBox 5.2.20 (released October 16 2018) This is a maintenance release. The following items were fixed and/or added: VMM: fixed task switches triggered by INTn instruction (bug #17979) Storage: fixed connecting to certain iSCSI targets (bug #17507) Storage: fixed handling of flush requests when configured to be ignored when the host I/O cache is used (bug #17573) Drag and drop: implemented support for UNC paths (bug #17146) Drag and drop: fixed resuming operation when restoring from a saved state (bug #17649) Drag and drop: fixed copying files with long file names (> 248 characters) from guests to Windows hosts (bug #17447) Drag and drop: fixed handling files with Unicode names on Windows guests (bug #15501) Drag and drop: fixed copying empty (0-byte) files to / from guests (bugs #14863 + #17443) Drag and drop: fixed copying over files from hosts to Linux guests (bug #16025) Networking: restore connectivity for guests bridged to host adapters that were unavailable temporarily (Windows hosts, bug #17090) Guest Control: fixed hang when using --wait-stdout and/or --wait-stderr (bug #17386). Needs updating Guest Additions Video recording: fixed starting video recording on VM power up (bug #17307) Linux Additions: various build fixes for kernel modules on recent distributions, and made sure modules end up in initramfs files Linux Additions: build fixes for 4.19, thank you Larry Finger Linux Additions: various small fixes for video driver Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2018-09-08vboxguestdrivers: Update to 5.2.18Khem Raj
* Fix build with 4.18 kernel Signed-off-by: Khem Raj <raj.khem@gmail.com>
2018-03-16vboxguestdrivers: upgrade to 5.2.8Martin Jansa
* 5.1.26 doesn't build with 4.15 kernel Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Armin Kuster <akuster808@gmail.com>
2018-03-01vboxguestdrivers: upgrade to 5.2.6Martin Jansa
* 5.1.26 doesn't build with 4.15 kernel Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Armin Kuster <akuster808@gmail.com>
2017-08-31recipes: remove blacklisted recipesMartin Jansa
* as PNBLACKLIST message says, these recipes are blacklisted for long time and nobody showed any interest to fix them * remove all unused .patch and .inc files as well Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2017-08-31vboxguestdrivers: Upgrade to 5.1.26Khem Raj
Fixes build with kernel 4.12 along the way Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2017-04-05recipes: add removal date to PNBLACKLIST messagesMartin Jansa
* based on discussion in pndeprecated thread: https://patchwork.openembedded.org/patch/137573/ update the messages to warn possible users that the recipe will be removed before the end of the next development cycle (before Yocto 2.4 is released). * updated with: sed -i 's/^\(PNBLACKLIST.*".*\)"/\1 - the recipe will be removed on 2017-09-01 unless the issue is fixed"/g' `git grep PNBLACKLIST | sed 's/:.*//g' | sort -u | xargs` * then noticed couple recipes being blacklisted only based on DISTRO_FEATURES, so removed those: meta-networking/recipes-support/lksctp-tools/lksctp-tools_1.0.17.bb meta-oe/recipes-connectivity/bluez/bluez-hcidump_2.5.bb meta-oe/recipes-connectivity/bluez/bluez4_4.101.bb meta-oe/recipes-connectivity/bluez/gst-plugin-bluetooth_4.101.bb meta-oe/recipes-navigation/foxtrotgps/foxtrotgps_1.1.1.bb meta-oe/recipes-navigation/gypsy/gypsy.inc meta-oe/recipes-navigation/navit/navit.inc meta-oe/recipes-support/opensync/libsyncml_0.5.4.bb * if it isn't fixed by this date, it's fair game to be removed whenever someone gets around to i Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2017-03-31vboxguestdrivers: upgrade to 5.1.18 to fix compatibility with 4.10 kernelMartin Jansa
* 5.1.14 fails with default linux-yocto version: CC [M] qemux86-oe-linux/vboxguestdrivers/5.1.14-r0/vbox_module/vboxsf/lnkops.o qemux86-oe-linux/vboxguestdrivers/5.1.14-r0/vbox_module/vboxsf/lnkops.c:93:23: error: 'generic_readlink' undeclared here (not in a function) .readlink = generic_readlink, ^~~~~~~~~~~~~~~~ Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2017-03-31vboxguestdrivers: make sure that do_compile fails when some module failed to ↵Martin Jansa
build * otherwise we get the failure from do_install with useless log: DEBUG: Executing shell function do_install install: cannot stat 'vboxsf.ko': No such file or directory WARNING: exit code 1 from a shell command. * instead of the real issue like 5.1.14 currently has with default linux-yocto version: CC [M] qemux86-oe-linux/vboxguestdrivers/5.1.14-r0/vbox_module/vboxsf/lnkops.o qemux86-oe-linux/vboxguestdrivers/5.1.14-r0/vbox_module/vboxsf/lnkops.c:93:23: error: 'generic_readlink' undeclared here (not in a function) .readlink = generic_readlink, ^~~~~~~~~~~~~~~~ Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2017-02-13vboxguestdrivers: upgrade to 5.1.14 to fix compatibility with 4.9 kernelMartin Jansa
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2016-09-26vboxguestdrivers: upgrade to 5.1.6 to fix build with default kernel from ↵Martin Jansa
oe-core 4.8 Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2016-09-15iscsitarget,netmap-moduls,vboxguestdrivers: Blacklist, not compatible with ↵Martin Jansa
default kernel version 4.8 Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2016-09-05vboxguestdrivers: Add recipe for vbox 5.xKhem Raj
Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2016-06-23vboxguestdrivers: obey LDFLAGSChristopher Larson
We need to obey LDFLAGS to get the correct hash style for external toolchains. Signed-off-by: Christopher Larson <chris_larson@mentor.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2016-02-15vboxguestdrivers: upgrade to 4.3.36Martin Jansa
* 4.3.30 isn't compatible with newer kernels and fails with: 4.3.30-r0/vbox_module/vboxsf/lnkops.c: In function 'sf_follow_link': 4.3.30-r0/vbox_module/vboxsf/lnkops.c:43:5: error: implicit declaration of function 'nd_set_link' [-Werror=implicit-function-declaration] nd_set_link(nd, error ? ERR_PTR(error) : path); ^ 4.3.30-r0/vbox_module/vboxsf/lnkops.c: In function 'sf_put_link': 4.3.30-r0/vbox_module/vboxsf/lnkops.c:49:18: error: implicit declaration of function 'nd_get_link' [-Werror=implicit-function-declaration] char *page = nd_get_link(nd); ^ * see: https://www.virtualbox.org/ticket/14227 Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2015-08-24vboxguestdrivers: upgrade 4.3.22 -> 4.3.30Yi Zhao
Signed-off-by: Yi Zhao <yi.zhao@windriver.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2015-06-17vboxguestdrivers: fix kernel modules install dir for multilibYi Zhao
Signed-off-by: Yi Zhao <yi.zhao@windriver.com>
2015-03-06vboxguestdrivers: import recipe from meta-luneosMartin Jansa
* useful to run our qemu* builds inside VirtualBox Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>