From a02a39e77abf2a71bcd023c33c63d405ef1c3081 Mon Sep 17 00:00:00 2001 From: Amlal Date: Sat, 26 Apr 2025 11:32:38 +0200 Subject: kernel, hefs: fixing issues with rb-tree, regarding the traversal of inds. Signed-off-by: Amlal --- dev/boot/BootKit/BootKit.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'dev/boot/BootKit') 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::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; -- cgit v1.2.3