commit | e84917417e62c0870d9cb3a995de5a80593721bf | [log] [tgz] |
---|---|---|
author | swissChili <swisschili@fastmail.com> | Thu Apr 08 20:38:06 2021 -0700 |
committer | swissChili <swisschili@fastmail.com> | Thu Apr 08 20:38:06 2021 -0700 |
tree | dc6ba40815727e94d12c0e6352bc9149540ade40 | |
parent | 0d248832e9235ab390b4961eecae90b63a226948 [diff] [blame] |
Update jmk, PCI
diff --git a/src/kernel/Jmk b/src/kernel/Jmk index 4133349..8300fd8 100644 --- a/src/kernel/Jmk +++ b/src/kernel/Jmk
@@ -12,6 +12,9 @@ depends(initrd, $(ROOT)/boot/initrd, initrd.img) depends(ata_pio, dri/ata_pio, ata_pio.a) +depends(pci, dri/pci, pci.a) +# AHCI not yet implemented +# depends(ahci, dri/ahci, ahci.a) CFLAGS += -I $(ROOT)/include/kernel @@ -41,7 +44,8 @@ syscall.o \ task.o \ task_api.o \ - lib(ata_pio) + lib(ata_pio) \ + lib(pci) type(custom_link)