-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
virt: Add vboxguest driver for Virtual Box Guest integration
This commit adds a driver for the Virtual Box Guest PCI device used in Virtual Box virtual machines. Enabling this driver will add support for Virtual Box Guest integration features such as copy-and-paste, seamless mode and OpenGL pass-through. This driver also offers vboxguest IPC functionality which is needed for the vboxfs driver which offers folder sharing support. Signed-off-by: Hans de Goede <hdegoede@redhat.com> Reviewed-by: Larry Finger <Larry.Finger@lwfinger.net> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
- Loading branch information
Hans de Goede
authored and
Greg Kroah-Hartman
committed
Dec 18, 2017
1 parent
579db9d
commit 0ba002b
Showing
8 changed files
with
2,253 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,3 +3,4 @@ | |
# | ||
|
||
obj-$(CONFIG_FSL_HV_MANAGER) += fsl_hypervisor.o | ||
obj-y += vboxguest/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
config VBOXGUEST | ||
tristate "Virtual Box Guest integration support" | ||
depends on X86 && PCI && INPUT | ||
help | ||
This is a driver for the Virtual Box Guest PCI device used in | ||
Virtual Box virtual machines. Enabling this driver will add | ||
support for Virtual Box Guest integration features such as | ||
copy-and-paste, seamless mode and OpenGL pass-through. | ||
|
||
This driver also offers vboxguest IPC functionality which is needed | ||
for the vboxfs driver which offers folder sharing support. | ||
|
||
If you enable this driver you should also enable the VBOXVIDEO option. | ||
|
||
Although it is possible to build this module in, it is advised | ||
to build this driver as a module, so that it can be updated | ||
independently of the kernel. Select M to build this driver as a | ||
module. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
vboxguest-y := vboxguest_linux.o vboxguest_core.o vboxguest_utils.o | ||
|
||
obj-$(CONFIG_VBOXGUEST) += vboxguest.o |
Oops, something went wrong.