scripts: Avoid warning from mkdosfs command

Fix lowercase label to avoid "mkfs.fat: Warning: lowercase labels
might not work properly on some systems".

Signed-off-by: Ravi kumar Veeramally <ravikumar.veeramally@intel.com>
This commit is contained in:
Ravi kumar Veeramally
2023-01-27 13:55:11 +02:00
committed by Bo Chen
parent 1ee2922dbc
commit 8e682bcb00
2 changed files with 2 additions and 2 deletions

View File

@@ -301,7 +301,7 @@ impl DiskConfig for UbuntuDiskConfig {
.expect("Expected writing out network-config to succeed");
std::process::Command::new("mkdosfs")
.args(["-n", "cidata"])
.args(["-n", "CIDATA"])
.args(["-C", cloudinit_file_path.as_str()])
.arg("8192")
.output()