Using secure boot status to determin its awailability for installation.

This commit is contained in:
2026-05-28 00:43:31 +02:00
parent 187129d314
commit f0a8e704c0
4 changed files with 39 additions and 12 deletions
+4
View File
@@ -72,6 +72,10 @@ impl StageResult {
self.add_val(val_name, ConfigValue::Bool(v))
}
pub fn add_val_u64(self, val_name: &str, v: u64) -> Self {
self.add_val(val_name, ConfigValue::U64(v))
}
pub fn get_val(&self, val_name: &str) -> Option<ConfigValue> {
let v = self
.config