feat: graphics/net PnP, keyboard driver improvements

This commit is contained in:
2026-03-04 21:10:34 +01:00
parent ba7b7dca87
commit fcb6f8e247
18 changed files with 836 additions and 244 deletions
+8 -2
View File
@@ -8,10 +8,16 @@
namespace Drivers {
// Initialize Intel GPU driver and update the cursor framebuffer if found.
// Probe PCI devices for Early-phase drivers (GPU).
void ProbeEarly();
// Post-probe: wire up GPU framebuffer to cursor subsystem.
void InitializeGraphics();
// Initialize network driver (E1000, falling back to E1000E) and the net stack.
// Probe PCI devices for Normal-phase drivers (xHCI, E1000, E1000E).
void ProbeNormal();
// Post-probe: initialize network stack.
void InitializeNetwork();
}