summaryrefslogtreecommitdiffhomepage
path: root/tooling
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
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')
-rwxr-xr-xtooling/mk_app.py4
-rwxr-xr-xtooling/mk_fwrk.py4
-rwxr-xr-xtooling/mk_img.py4
3 files changed, 6 insertions, 6 deletions
diff --git a/tooling/mk_app.py b/tooling/mk_app.py
index 9418cf05..a40c6dee 100755
--- a/tooling/mk_app.py
+++ b/tooling/mk_app.py
@@ -71,10 +71,10 @@ def create_directory_structure(base_path, project_name):
if __name__ == "__main__":
if len(sys.argv) != 2:
- print("Usage: mk_app.py <project_name>")
+ print("HELP: mk_app.py <project_name>")
sys.exit(os.EX_CONFIG)
base_path = os.getcwd() # Use the current working directory as the base path
create_directory_structure(base_path, sys.argv[1])
- print("Info: Application created successfully.")
+ print("INFO: Application created successfully.")
diff --git a/tooling/mk_fwrk.py b/tooling/mk_fwrk.py
index 3c73e88e..78659686 100755
--- a/tooling/mk_fwrk.py
+++ b/tooling/mk_fwrk.py
@@ -83,10 +83,10 @@ def create_directory_structure(base_path_fwrk, project_file_name, project_name):
if __name__ == "__main__":
if len(sys.argv) != 2:
- print("Usage: mk_fwrk.py <project_name>")
+ print("HELP: mk_fwrk.py <project_name>")
sys.exit(os.EX_CONFIG)
base_path = os.getcwd() # Use the current working directory as the base path
create_directory_structure(base_path, sys.argv[1], sys.argv[1] + '.fwrk')
- print("Info: Framework created successfully.")
+ print("INFO: Framework created successfully.")
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.")