@@ -1,7 +1,7 @@
# SPDX-License-Identifier: GPL-2.0
config DRM_VBOXVIDEO
tristate "Virtual Box Graphics Card"
- depends on DRM && X86 && PCI
+ depends on DRM && (ARM64 || X86) && PCI
select DRM_CLIENT_SELECTION
select DRM_KMS_HELPER
select DRM_VRAM_HELPER
@@ -1,7 +1,7 @@
# SPDX-License-Identifier: GPL-2.0-only
config VBOXGUEST
tristate "Virtual Box Guest integration support"
- depends on X86 && PCI && INPUT
+ depends on (ARM64 || 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
@@ -1,6 +1,6 @@
config VBOXSF_FS
tristate "VirtualBox guest shared folder (vboxsf) support"
- depends on X86 && VBOXGUEST
+ depends on (ARM64 || X86) && VBOXGUEST
select NLS
help
VirtualBox hosts can share folders with guests, this driver
My last email[0] still had "RFC" in the subject line, but no comments were received. So, in an attempt of stupi^W boldness, this is the same patch again, with RFC removed and ready for mainline, maybe? Hello, now that VirtualBox able to run as a host on arm64 (e.g. the Apple M3 processors) I was wondering if there are any plans to port the vboxguest driver to that platform? I added ARM64 to the Kconfig files (see below) on vboxguest and vboxsf, and also for vboxvideo, and it compiled just like that and at least vboxsf appears to work just fine. I don't know how to test vboxvideo yet (the module loads just fine), but if we at least enable to option in the Kconfig file at least people would be able to test it :-) Thanks, Christian. [0] https://lore.kernel.org/lkml/f088e1da-8fae-2acb-6f7a-e414708d8e67@nerdbynature.de/ Signed-off-by: Christian Kujau <lists@nerdbynature.de> vbox: Enable VBOXGUEST on ARM64