diff options
| -rwxr-xr-x | tooling/mk_img.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tooling/mk_img.py b/tooling/mk_img.py index 253e5a6c..b4fdfa1e 100755 --- a/tooling/mk_img.py +++ b/tooling/mk_img.py @@ -18,7 +18,7 @@ def copy_to_fat(image_path, source_dir): try: files_to_copy = glob.glob(os.path.join(source_dir, "*")) # Now build the command - command = ["mcopy", "-spom", "-i", image_path] + files_to_copy + ["::"] + command = ["mcopy", "-spm", "-i", image_path] + files_to_copy + ["::"] subprocess.run(command, check=True) print(f"Successfully copied contents of '{source_dir}' into '{image_path}'") |
