We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 32a92d8 + e8ec719 commit b5f47ffCopy full SHA for b5f47ff
lib/src/install/baseline.rs
@@ -210,7 +210,16 @@ pub(crate) fn install_create_rootfs(
210
// and we need to error out.
211
anyhow::bail!("No install configuration found, and no filesystem specified")
212
};
213
- println!("Using block setup: {block_setup}");
+ let serial = device.serial.as_deref().unwrap_or("<unknown>");
214
+ let model = device.model.as_deref().unwrap_or("<unknown>");
215
+ let size = device
216
+ .size
217
+ .as_deref()
218
+ .ok_or_else(|| anyhow::anyhow!("Missing size for blockdev"))?;
219
+ println!("Block setup: {block_setup}");
220
+ println!(" Size: {size}",);
221
+ println!(" Serial: {serial}");
222
+ println!(" Model: {model}");
223
224
let root_size = opts
225
.root_size
0 commit comments