mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-12-26 04:35:41 +03: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
Notes:
sideshowbarker
2024-07-17 09:49:33 +09:00
Author: https://github.com/spholz Commit: https://github.com/SerenityOS/serenity/commit/0dca6990b3 Pull-request: https://github.com/SerenityOS/serenity/pull/23347 Reviewed-by: https://github.com/ADKaster ✅
@ -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:
|
||||
|
Loading…
Reference in New Issue
Block a user