lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [day] [month] [year] [list]
Message-ID: <f088e1da-8fae-2acb-6f7a-e414708d8e67@nerdbynature.de>
Date: Wed, 20 Nov 2024 23:31:48 +0100 (CET)
From: Christian Kujau <lists@...dbynature.de>
To: Hans de Goede <hdegoede@...hat.com>, Arnd Bergmann <arnd@...db.de>, 
    Greg Kroah-Hartman <gregkh@...uxfoundation.org>
cc: linux-kernel@...r.kernel.org
Subject: [RFC][PATCH] arm64 support for vboxguest

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 :-)

Comments?

Thanks,
Christian.

Signed-off-by: Christian Kujau <lists@...dbynature.de>

diff --git a/drivers/gpu/drm/vboxvideo/Kconfig b/drivers/gpu/drm/vboxvideo/Kconfig
index 45fe135d6e43..a68708da3853 100644
--- a/drivers/gpu/drm/vboxvideo/Kconfig
+++ b/drivers/gpu/drm/vboxvideo/Kconfig
@@ -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_KMS_HELPER
 	select DRM_VRAM_HELPER
 	select DRM_TTM
diff --git a/drivers/virt/vboxguest/Kconfig b/drivers/virt/vboxguest/Kconfig
index cc329887bfae..11b153e7454e 100644
--- a/drivers/virt/vboxguest/Kconfig
+++ b/drivers/virt/vboxguest/Kconfig
@@ -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
diff --git a/fs/vboxsf/Kconfig b/fs/vboxsf/Kconfig
index b84586ae08b3..d4694026db8b 100644
--- a/fs/vboxsf/Kconfig
+++ b/fs/vboxsf/Kconfig
@@ -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
-- 
BOFH excuse #326:

We need a licensed electrician to replace the light bulbs in the computer room.

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ