summaryrefslogtreecommitdiffhomepage
path: root/src/boot/README.md
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal@nekernel.org>2026-03-11 05:54:48 +0100
committerGitHub <noreply@github.com>2026-03-11 05:54:48 +0100
commit7e35509e3387691f23b54883ca7e4e303bad9c4f (patch)
treeb8c86fefc71b9d4c400429a3c1e723beeae6f766 /src/boot/README.md
parent7cee4def2634d3c4aed59c3ab66b65bbbf1ec751 (diff)
parent342e27527797d5dd6f0ba3baa23c0bbc786892e1 (diff)
Merge pull request #137 from ne-foss-org/kernel-bootkit-posix-additions
[CHORE] ARM64 port improvements, POSIXKit additions, and SysChk/BootNet improvements.
Diffstat (limited to 'src/boot/README.md')
-rw-r--r--src/boot/README.md11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/boot/README.md b/src/boot/README.md
new file mode 100644
index 00000000..2468efe6
--- /dev/null
+++ b/src/boot/README.md
@@ -0,0 +1,11 @@
+# The BootZ Bootloader
+
+A multi-platform bootloader written in C++ with modules support.
+
+## Design Rationale:
+
+BootZ like NeKernel is designed to be modular and production-ready.
+
+BootZ reads a `kernel` image before trying to run it. If it fails to find one, it will summon a `bootnet` module.
+
+Error Handling is very important as well, that's why we try before commiting (see BootKit.h)