[pci] Move PCIe and ACPI code to their own libs
This pulls them out of srv.init (and src/include where the kernel uses them) and puts them into their own libs for sharing.
This commit is contained in:
14
src/libraries/pci/pci.module
Normal file
14
src/libraries/pci/pci.module
Normal file
@@ -0,0 +1,14 @@
|
||||
# vim: ft=python
|
||||
|
||||
module("pci",
|
||||
kind = "lib",
|
||||
deps = [ "libc", "util" ],
|
||||
sources = [
|
||||
"device.cpp",
|
||||
"group.cpp",
|
||||
],
|
||||
public_headers = [
|
||||
"pci/bus_addr.h",
|
||||
"pci/device.h",
|
||||
"pci/group.h",
|
||||
])
|
||||
Reference in New Issue
Block a user