summaryrefslogtreecommitdiffhomepage
path: root/dev/kernel/CompilerKit
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal@nekernel.org>2025-05-16 13:35:50 +0200
committerAmlal El Mahrouss <amlal@nekernel.org>2025-05-16 13:35:50 +0200
commitc589f92ed0f6e462a976c64d533c1d8a21b2a3ba (patch)
treed08e2dffd0baff10d2660091decbb36064e16c56 /dev/kernel/CompilerKit
parent85c3784b85e701389adfc43e7c222cc90bed953d (diff)
feat(kernel): User doesn't store the password directly anymore, it is hashed
under a 64-bit FNV algorithm. why? - Better security, so that we're sure that no one else knows about the password. also: - Rename super to MGMT (Management), as it manages a NeKernel machine. - Added a copy of cxxdrv in the nekernel source tree. - Working on the custom manual parser for NeKernel. (PoC) Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to 'dev/kernel/CompilerKit')
-rw-r--r--dev/kernel/CompilerKit/Version.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/dev/kernel/CompilerKit/Version.h b/dev/kernel/CompilerKit/Version.h
index 93378863..4250531a 100644
--- a/dev/kernel/CompilerKit/Version.h
+++ b/dev/kernel/CompilerKit/Version.h
@@ -2,8 +2,8 @@
#pragma once
-#define BOOTLOADER_VERSION "v0.0.1"
-#define KERNEL_VERSION "v0.0.1"
+#define BOOTLOADER_VERSION "v0.0.2-bootz"
+#define KERNEL_VERSION "v0.0.2-krnl"
-#define BOOTLOADER_VERSION_BCD 0x0001
-#define KERNEL_VERSION_BCD 0x0001
+#define BOOTLOADER_VERSION_BCD (0x0002)
+#define KERNEL_VERSION_BCD (0x0002)