From 0dca6990b3bf20a7377e59262850bd878218f52a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=B6nke=20Holz?= Date: Sun, 25 Feb 2024 20:34:07 +0100 Subject: [PATCH] Meta: Disable network hardware in run.py for RISC-V The e1000 driver tries to use interrupt handling functions, which aren't implemented on RISC-V yet. --- Meta/run.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Meta/run.py b/Meta/run.py index b8edb6cf3b..d4d7b69500 100755 --- a/Meta/run.py +++ b/Meta/run.py @@ -675,7 +675,7 @@ def set_up_network_hardware(config: Configuration): if provided_ethernet_device_type is not None: config.ethernet_device_type = provided_ethernet_device_type - if config.architecture == Arch.Aarch64: + if config.architecture in [Arch.Aarch64, Arch.RISCV64]: config.network_backend = None config.network_default_device = None else: