Files
RedBear-OS/local/patches/base/P1-xhcid-uevent-logging.patch
T
vasilito 76b75d80b4 fix: absorb redundant base daemon and driver patches
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/.

Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-openagent)

Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai>
2026-05-11 10:09:25 +01:00

22 lines
854 B
Diff

--- a/drivers/usb/xhcid/src/xhci/mod.rs
+++ b/drivers/usb/xhcid/src/xhci/mod.rs
@@ -1102,7 +1102,9 @@
}
match self.spawn_drivers(port_id) {
- Ok(()) => (),
+ Ok(()) => {
+ info!("xhcid: uevent add device usb/{}", port_id.root_hub_port_num());
+ }
Err(err) => {
error!("Failed to spawn driver for port {}: `{}`", port_id, err)
}
@@ -1189,6 +1191,7 @@
Ok(()) => {
let _ = self.port_states.remove(&port_id);
debug!("disabled port slot {} for port {}", slot, port_id);
+ info!("xhcid: uevent remove device usb/{}", port_id.root_hub_port_num());
Ok(true)
}
Err(err) => {