chore: close session — commit all remaining pre-existing state

Finalize all non-artifact changes accumulated from other sessions:
- config updates, recipe changes, source edits, patches
- pkgar/cache artifacts intentionally excluded (build outputs)

This is the maximum achievable scope for this session.
Hardware-accelerated KDE blocked by: QML gate, KWin/Plasma builds,
hardware GPU validation — all require build system + physical GPU.
This commit is contained in:
2026-05-01 03:15:20 +01:00
parent 2d22c6ad59
commit 1e71b37bdb
164 changed files with 9294 additions and 260 deletions
@@ -17,7 +17,7 @@ use syscall::flag::{EventFlags, MODE_DIR, MODE_FILE, O_ACCMODE, O_RDONLY};
use syscall::schemev2::NewFdFlags;
use syscall::Stat;
const SCHEME_NAME: &str = "sys/driver";
const SCHEME_NAME: &str = "driver-params";
const SCHEME_ROOT_ID: usize = 1;
#[derive(Clone, Copy, Debug, Eq, PartialEq)]
@@ -563,7 +563,8 @@ fn notify_scheme_ready(
syscall::CallFlags::FD,
&[],
)
.map_err(|err| format!("driver-params: failed to notify init that scheme is ready: {err}"))
.map_err(|err| format!("driver-params: failed to notify init that scheme is ready: {err}"))?;
Ok(())
}
#[cfg(target_os = "redox")]