Move all graphics related drivers to graphics/

This commit is contained in:
bjorn3
2024-02-28 21:36:43 +01:00
parent 0e98dc4a05
commit 887412daf5
20 changed files with 13 additions and 13 deletions
+5 -5
View File
@@ -1,19 +1,14 @@
[workspace]
members = [
"acpid",
"bgad",
"common",
"fbcond",
"pcid",
"ps2d",
"vboxd",
"vesad",
"xhcid",
"usbctl",
"usbhidd",
"inputd",
"virtio-gpud",
"virtio-core",
"audio/ac97d",
@@ -21,6 +16,11 @@ members = [
"audio/pcspkrd",
"audio/sb16d",
"graphics/bgad",
"graphics/fbcond",
"graphics/vesad",
"graphics/virtio-gpud",
"net/alxd",
"net/driver-network",
"net/e1000d",
+1 -1
View File
@@ -8,4 +8,4 @@ orbclient = "0.3.27"
redox-daemon = "0.1"
redox_syscall = "0.4"
pcid = { path = "../pcid" }
pcid = { path = "../../pcid" }
@@ -10,7 +10,7 @@ redox_event = "0.2"
redox_syscall = "0.4"
redox-daemon = "0.1"
inputd = { path = "../inputd" }
inputd = { path = "../../inputd" }
[features]
default = []
@@ -9,8 +9,8 @@ ransid = "0.4"
redox_syscall = "0.4"
redox-daemon = "0.1"
common = { path = "../common" }
inputd = { path = "../inputd" }
common = { path = "../../common" }
inputd = { path = "../../inputd" }
[features]
default = []
@@ -11,10 +11,10 @@ futures = { version = "0.3.28", features = ["executor"] }
anyhow = "1.0.71"
paste = "1.0.13"
common = { path = "../common" }
virtio-core = { path = "../virtio-core" }
pcid = { path = "../pcid" }
inputd = { path = "../inputd" }
common = { path = "../../common" }
virtio-core = { path = "../../virtio-core" }
pcid = { path = "../../pcid" }
inputd = { path = "../../inputd" }
redox-daemon = "0.1"
redox_syscall = "0.4"