Add setting.txt gen command

This commit is contained in:
2026-03-02 02:43:38 -05:00
parent 326bb56ece
commit 449097967c
2 changed files with 82 additions and 0 deletions

View File

@@ -188,6 +188,9 @@ fn main() -> Result<()> {
},
nand::setting::Commands::Encrypt { input, output } => {
nand::setting::encrypt_setting(input, output)?;
},
nand::setting::Commands::Gen { serno, region } => {
nand::setting::generate_setting(serno, region)?;
}
}
},