summaryrefslogtreecommitdiffhomepage
path: root/dev/boot/BootKit/BootKit.h
diff options
context:
space:
mode:
authorAmlal <amlal@nekernel.org>2025-04-26 11:32:38 +0200
committerAmlal <amlal@nekernel.org>2025-04-26 11:32:38 +0200
commita02a39e77abf2a71bcd023c33c63d405ef1c3081 (patch)
tree09fbf83fda7c79315bcdaece38e419a826bbee50 /dev/boot/BootKit/BootKit.h
parentcddf1926591707121a3c1302a5ef7f5abd030d7e (diff)
kernel, hefs: fixing issues with rb-tree, regarding the traversal of inds.
Signed-off-by: Amlal <amlal@nekernel.org>
Diffstat (limited to 'dev/boot/BootKit/BootKit.h')
-rw-r--r--dev/boot/BootKit/BootKit.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/dev/boot/BootKit/BootKit.h b/dev/boot/BootKit/BootKit.h
index 03902363..68c7424b 100644
--- a/dev/boot/BootKit/BootKit.h
+++ b/dev/boot/BootKit/BootKit.h
@@ -295,8 +295,8 @@ inline Boolean BDiskFormatFactory<BootDev>::Format(const Char* part_name) {
const auto kFsName = "HeFS";
const auto kBlockName = "OS (EPM)";
- epm_boot.FsVersion = kNeFSVersionInteger;
- epm_boot.LbaStart = kNeFSRootCatalogStartAddress;
+ epm_boot.FsVersion = 0;
+ epm_boot.LbaStart = 1024;
epm_boot.LbaEnd = fDiskDev.GetDiskSize() - 1;
epm_boot.SectorSz = BootDev::kSectorSize;
epm_boot.Kind = kEPMNeKernel;