ksud: Add command to shrink image

This commit is contained in:
weishu
2024-01-30 13:23:49 +08:00
parent d43b40572d
commit 7cb5fb47e1
2 changed files with 13 additions and 0 deletions

View File

@@ -673,3 +673,12 @@ pub fn list_modules() -> Result<()> {
println!("{}", serde_json::to_string_pretty(&modules)?);
Ok(())
}
pub fn shrink_image() -> Result<()> {
Command::new("resize2fs")
.arg("-M")
.arg(defs::MODULE_IMG)
.stdout(Stdio::piped())
.status()?;
Ok(())
}