mirror of
https://github.com/SerenityOS/serenity.git
synced 2025-01-23 01:41:59 -05:00
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.
This commit is contained in:
parent
564e619f57
commit
0dca6990b3
1 changed files with 1 additions and 1 deletions
|
@ -675,7 +675,7 @@ def set_up_network_hardware(config: Configuration):
|
||||||
if provided_ethernet_device_type is not None:
|
if provided_ethernet_device_type is not None:
|
||||||
config.ethernet_device_type = provided_ethernet_device_type
|
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_backend = None
|
||||||
config.network_default_device = None
|
config.network_default_device = None
|
||||||
else:
|
else:
|
||||||
|
|
Loading…
Reference in a new issue