List PCI devices on boot
All checks were successful
Build documentation / build-and-deploy (push) Successful in 2m33s

This commit is contained in:
2026-03-09 23:32:25 +01:00
parent 034f2efd14
commit 03ae17d1c9
8 changed files with 65218 additions and 3 deletions

View File

@@ -11,6 +11,11 @@ o += device/device.o \
device/partitions.o
ifeq ($(platform),amd64)
c += device/ps2_kb.c
o += device/ps2_kb.o
c += device/ps2_kb.c \
device/pci.c \
device/pci_defs.c
o += device/ps2_kb.o \
device/pci.o \
device/pci_defs.o
endif