4e2f1a730c
The daemon responsible for the boot log must never ever block to avoid deadlocks, but doing so while still accepting keyboard input is non-trivial. This commit splits the boot log out from fbcond into a separate daemon to make this a lot easier to implement. This will also allow making fbcond blocking again, which will simplify some things.
20 lines
385 B
TOML
20 lines
385 B
TOML
[package]
|
|
name = "fbbootlogd"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
orbclient = "0.3.27"
|
|
ransid = "0.4"
|
|
redox_event = "0.4"
|
|
redox_syscall = "0.5"
|
|
redox-daemon = "0.1"
|
|
redox-scheme = { git = "https://gitlab.redox-os.org/redox-os/redox-scheme.git" }
|
|
|
|
console-draw = { path = "../console-draw" }
|
|
inputd = { path = "../../inputd" }
|
|
libredox = "0.1.3"
|
|
|
|
[features]
|
|
default = []
|