2b8dd96a5c
Consolidate ~30 absorbed base patches into surviving carriers. Add new init service files, driver sources, and network/storage modules for the base recipe. Move absorbed patches to local/patches/base/absorbed/.
22 lines
599 B
Diff
22 lines
599 B
Diff
--- drivers/hwd/src/backend/acpi.rs
|
|
+++ b/drivers/hwd/src/backend/acpi.rs
|
|
@@ -1,5 +1,5 @@
|
|
use amlserde::{AmlSerde, AmlSerdeValue};
|
|
-use std::{error::Error, fs, process::Command};
|
|
+use std::{error::Error, fs};
|
|
|
|
use super::Backend;
|
|
|
|
@@ -11,11 +11,6 @@
|
|
fn new() -> Result<Self, Box<dyn Error>> {
|
|
let rxsdt = fs::read("/scheme/kernel.acpi/rxsdt")?;
|
|
|
|
- // Spawn acpid
|
|
- //TODO: pass rxsdt data to acpid?
|
|
- #[allow(deprecated, reason = "we can't yet move this to init")]
|
|
- daemon::Daemon::spawn(Command::new("acpid"));
|
|
-
|
|
Ok(Self { rxsdt })
|
|
}
|
|
|