summaryrefslogtreecommitdiffhomepage
path: root/dev/kernel/src/FS
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal@nekernel.org>2025-03-31 11:00:59 +0200
committerAmlal El Mahrouss <amlal@nekernel.org>2025-03-31 11:00:59 +0200
commitaa595fad9c8062910778bd6fa01ee487eab1a3e9 (patch)
tree2faa45d3984d15b2742a3657af6ab31f25bcfab3 /dev/kernel/src/FS
parentb91ada1d1fec572ee5d7ae9b98ff54ac929c7a72 (diff)
boot: fix framebuffer init and restore boot on real hardware
Framebuffer mode selection now defaults gracefully when the expected resolution is unavailable. EFI binaries now boot successfully on physical hardware using a fixed image base and simplified jump logic. Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to 'dev/kernel/src/FS')
-rw-r--r--dev/kernel/src/FS/NeFS.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/dev/kernel/src/FS/NeFS.cc b/dev/kernel/src/FS/NeFS.cc
index 3b7fb79e..6b73dc09 100644
--- a/dev/kernel/src/FS/NeFS.cc
+++ b/dev/kernel/src/FS/NeFS.cc
@@ -503,7 +503,7 @@ bool NeFileSystemParser::Format(_Input _Output DriveTrait* drive, _Input const L
// Write a new EPM entry.
constexpr auto kFsName = "NeFS";
- constexpr auto kBlockName = "ZkaOS:";
+ constexpr auto kBlockName = "NeKernel:";
rt_copy_memory(reinterpret_cast<VoidPtr>(const_cast<Char*>(kFsName)), epm_boot->Fs, rt_string_len(kFsName));