Meta: Enable networking by default on RISC-V

This commit is contained in:
Idan Horowitz 2024-04-23 20:30:12 +03:00 committed by Andrew Kaster
parent dfa2c98497
commit c96730c984
Notes: sideshowbarker 2024-07-16 20:51:53 +09:00

View file

@ -674,7 +674,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 in [Arch.Aarch64, Arch.RISCV64]:
if config.architecture == Arch.Aarch64:
config.network_backend = None
config.network_default_device = None
else: