summaryrefslogtreecommitdiffhomepage
path: root/tooling/mk_img.py
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal@nekernel.org>2025-05-24 10:59:49 +0200
committerAmlal El Mahrouss <amlal@nekernel.org>2025-05-24 10:59:49 +0200
commit386d9a5bffcd66633e4c3c72eb6cb25722796c92 (patch)
tree438158dbf0856bf2563cdc9e4b183e290f4bb03a /tooling/mk_img.py
parente89d4a1402bdd32b8ad7e2ed04278b7ad54740c3 (diff)
feat(kernel): Better syscall routing, also added new tools.
what: - ping, manual have been added. - Rework RtlCurrentPID to SchedGetCurrentProcessID. - Cleanup codebase overall. Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to 'tooling/mk_img.py')
-rwxr-xr-xtooling/mk_img.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tooling/mk_img.py b/tooling/mk_img.py
index 539353fc..28af22e3 100755
--- a/tooling/mk_img.py
+++ b/tooling/mk_img.py
@@ -30,7 +30,7 @@ def copy_to_fat(image_path, source_dir):
if __name__ == "__main__":
if len(sys.argv) != 3:
- print("Usage: mk_img.py <fat32_image> <source_directory>")
+ print("HELP: mk_img.py <fat32_image> <source_directory>")
sys.exit(1)
image_path = sys.argv[1]
@@ -38,4 +38,4 @@ if __name__ == "__main__":
copy_to_fat(image_path, source_dir)
- print("Info: image created successfully.")
+ print("INFO: Image created successfully.")