summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal@nekernel.org>2026-03-08 21:21:24 +0100
committerAmlal El Mahrouss <amlal@nekernel.org>2026-03-08 21:21:24 +0100
commit07c21809ce5e0f593ad35b1197836078a53cbc24 (patch)
tree4f5ea38346096c819b9ad95a1656d91e694505b2
parente1d47575791cb08d505fcaa2c52d2b84e2a7f695 (diff)
[CHORE] Move updater to its own repository, adding kmnt.py, and drivers directory.
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
-rw-r--r--doc/requirements/NE_ARCH.md2
-rw-r--r--drivers/.keep1
-rw-r--r--tools/kmnt.py6
-rwxr-xr-xupdater.sh2
-rw-r--r--updater/__init__.py (renamed from tools/__init__.py)0
-rwxr-xr-xupdater/updater.py (renamed from tools/updater.py)0
6 files changed, 9 insertions, 2 deletions
diff --git a/doc/requirements/NE_ARCH.md b/doc/requirements/NE_ARCH.md
index ae2c7fd..d50ccae 100644
--- a/doc/requirements/NE_ARCH.md
+++ b/doc/requirements/NE_ARCH.md
@@ -1,4 +1,4 @@
-# __ne_arch: Architecture Identification Macro.
+# __ne_arch: The architecture Identification Macro.
## Abstract:
diff --git a/drivers/.keep b/drivers/.keep
new file mode 100644
index 0000000..8b13789
--- /dev/null
+++ b/drivers/.keep
@@ -0,0 +1 @@
+
diff --git a/tools/kmnt.py b/tools/kmnt.py
new file mode 100644
index 0000000..7180a0a
--- /dev/null
+++ b/tools/kmnt.py
@@ -0,0 +1,6 @@
+# -*- coding: utf-8 -*-
+
+import sys
+
+if __name__ == "__main__":
+ sys.exit(0)
diff --git a/updater.sh b/updater.sh
index c22c9a9..6512d2f 100755
--- a/updater.sh
+++ b/updater.sh
@@ -1,6 +1,6 @@
#! /bin/sh
-python3 ./tools/__init__.py
+python3 ./updater/__init__.py
diff --git a/tools/__init__.py b/updater/__init__.py
index eeef556..eeef556 100644
--- a/tools/__init__.py
+++ b/updater/__init__.py
diff --git a/tools/updater.py b/updater/updater.py
index b86fcec..b86fcec 100755
--- a/tools/updater.py
+++ b/updater/updater.py