We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e2bb9ce commit 9befd29Copy full SHA for 9befd29
crates/lib/src/status.rs
@@ -69,7 +69,7 @@ pub(crate) fn composefs_booted() -> Result<Option<&'static str>> {
69
return Ok(v.as_deref());
70
}
71
let cmdline = crate::kernel_cmdline::Cmdline::from_proc()?;
72
- let Some(kv) = cmdline.find_str("composefs") else {
+ let Some(kv) = cmdline.find_str(COMPOSEFS_CMDLINE) else {
73
return Ok(None);
74
};
75
let Some(v) = kv.value else { return Ok(None) };
0 commit comments