Skip to content

Commit 5cf8f93

Browse files
ckujaubrauner
authored andcommitted
vbox: Enable VBOXGUEST and VBOXSF_FS on ARM64
Now that VirtualBox is able to run as a host on arm64 (e.g. the Apple M3 processors) we can enable VBOXSF_FS (and in turn VBOXGUEST) for this architecture. Tested with various runs of bonnie++ and dbench on an Apple MacBook Pro with the latest Virtualbox 7.1.4 r165100 installed. Signed-off-by: Christian Kujau <[email protected]> Link: https://lore.kernel.org/r/[email protected] Reviewed-by: Hans de Goede <[email protected]> Signed-off-by: Christian Brauner <[email protected]>
1 parent 6a4ef7a commit 5cf8f93

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

drivers/virt/vboxguest/Kconfig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# SPDX-License-Identifier: GPL-2.0-only
22
config VBOXGUEST
33
tristate "Virtual Box Guest integration support"
4-
depends on X86 && PCI && INPUT
4+
depends on (ARM64 || X86) && PCI && INPUT
55
help
66
This is a driver for the Virtual Box Guest PCI device used in
77
Virtual Box virtual machines. Enabling this driver will add

fs/vboxsf/Kconfig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
config VBOXSF_FS
22
tristate "VirtualBox guest shared folder (vboxsf) support"
3-
depends on X86 && VBOXGUEST
3+
depends on (ARM64 || X86) && VBOXGUEST
44
select NLS
55
help
66
VirtualBox hosts can share folders with guests, this driver

0 commit comments

Comments
 (0)