1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-03 05:32:13 +00:00

Kernel: Expose SMBIOS blobs in ProcFS

This commit is contained in:
Liav A 2021-01-29 13:10:18 +02:00 committed by Andreas Kling
parent e4e74c48ea
commit df59b80e23
5 changed files with 252 additions and 0 deletions

View file

@ -31,6 +31,7 @@
#include <Kernel/Arch/i386/CPU.h>
#include <Kernel/CMOS.h>
#include <Kernel/CommandLine.h>
#include <Kernel/DMI.h>
#include <Kernel/Devices/BXVGADevice.h>
#include <Kernel/Devices/FullDevice.h>
#include <Kernel/Devices/I8042Controller.h>
@ -252,6 +253,7 @@ void init_stage2(void*)
}
USB::UHCIController::detect();
DMIExpose::initialize();
E1000NetworkAdapter::detect();
RTL8139NetworkAdapter::detect();