1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-20 14:45:07 +00:00

Kernel/CommandLine: Add option to disable physical networking hardware

This is useful for debugging sessions mostly.
This commit is contained in:
Liav A 2021-06-04 08:02:14 +03:00 committed by Ali Mohammad Pur
parent 1c94b5e8eb
commit 2e2201e8e1
3 changed files with 15 additions and 7 deletions

View file

@ -85,13 +85,15 @@ UNMAP_AFTER_INIT RefPtr<NetworkAdapter> NetworkingManagement::determine_network_
bool NetworkingManagement::initialize()
{
PCI::enumerate([&](const PCI::Address& address, PCI::ID) {
// Note: PCI class 2 is the class of Network devices
if (PCI::get_class(address) != 0x02)
return;
if (auto adapter = determine_network_device(address); !adapter.is_null())
m_adapters.append(adapter.release_nonnull());
});
if (!kernel_command_line().is_physical_networking_disabled()) {
PCI::enumerate([&](const PCI::Address& address, PCI::ID) {
// Note: PCI class 2 is the class of Network devices
if (PCI::get_class(address) != 0x02)
return;
if (auto adapter = determine_network_device(address); !adapter.is_null())
m_adapters.append(adapter.release_nonnull());
});
}
auto loopback = LoopbackAdapter::create();
m_adapters.append(loopback);
m_loopback_adapter = loopback;