diff options
| author | Amlal <amlal@nekernel.org> | 2025-04-26 11:32:38 +0200 |
|---|---|---|
| committer | Amlal <amlal@nekernel.org> | 2025-04-26 11:32:38 +0200 |
| commit | a02a39e77abf2a71bcd023c33c63d405ef1c3081 (patch) | |
| tree | 09fbf83fda7c79315bcdaece38e419a826bbee50 /dev/boot | |
| parent | cddf1926591707121a3c1302a5ef7f5abd030d7e (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')
| -rw-r--r-- | dev/boot/BootKit/BootKit.h | 4 |
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; |
