summaryrefslogtreecommitdiffhomepage
path: root/tooling
diff options
context:
space:
mode:
Diffstat (limited to 'tooling')
-rwxr-xr-xtooling/mk_img.py10
1 files changed, 1 insertions, 9 deletions
diff --git a/tooling/mk_img.py b/tooling/mk_img.py
index 8227a217..539353fc 100755
--- a/tooling/mk_img.py
+++ b/tooling/mk_img.py
@@ -24,14 +24,6 @@ def copy_to_fat(image_path, source_dir):
command = ["mcopy", "-spm", "-i", image_path] + files_to_copy + ["::"]
subprocess.run(command, check=True)
-
- print(f"Info: Successfully copied contents of '{source_dir}' into '{image_path}'")
- except FileNotFoundError:
- print("Error: mcopy is not installed. Please install mtools.")
- sys.exit(1)
- except subprocess.CalledProcessError as e:
- print(f"Error: mcopy failed with error code {e.returncode}.")
- sys.exit(1)
except Exception as e:
print(f"Error: failed: {e}")
sys.exit(1)
@@ -46,4 +38,4 @@ if __name__ == "__main__":
copy_to_fat(image_path, source_dir)
- print("NeKernel image created successfully.")
+ print("Info: image created successfully.")