1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-30 18:38:12 +00:00

Kernel: Start adding support for E1000 network adapters.

This commit is contained in:
Andreas Kling 2019-03-10 15:25:33 +01:00
parent 0c806bfa25
commit 405413c354
12 changed files with 271 additions and 3 deletions

View file

@ -23,6 +23,7 @@
#include "PTYMultiplexer.h"
#include "DevPtsFS.h"
#include "BXVGADevice.h"
#include "E1000NetworkAdapter.h"
#define SPAWN_LAUNCHER
//#define SPAWN_GUITEST2
@ -160,6 +161,8 @@ VFS* vfs;
new BXVGADevice;
auto e1000 = E1000NetworkAdapter::autodetect();
Retained<ProcFS> new_procfs = ProcFS::create();
new_procfs->initialize();