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 d4936ee commit ca69d21Copy full SHA for ca69d21
blsforme/src/bootenv.rs
@@ -41,7 +41,7 @@ pub struct BootEnvironment {
41
pub esp: Option<PathBuf>,
42
43
/// Firmware in use
44
- pub(crate) firmware: Firmware,
+ pub firmware: Firmware,
45
46
pub(crate) esp_mountpoint: Option<PathBuf>,
47
pub(crate) xboot_mountpoint: Option<PathBuf>,
blsforme/src/manager.rs
@@ -131,6 +131,11 @@ impl<'a> Manager<'a> {
131
})
132
}
133
134
+ /// Access the automatic cmdline
135
+ pub fn cmdline(&self) -> &[String] {
136
+ &self.cmdline
137
+ }
138
+
139
/// Set the system kernels to use for sync operations
140
pub fn with_entries(self, entries: impl Iterator<Item = Entry<'a>>) -> Self {
141
Self {
0 commit comments