From dfaf137915094e7ba72f7d7f1f57dc5158d1b6ab Mon Sep 17 00:00:00 2001 From: Amlal El Mahrouss Date: Tue, 9 Jul 2024 20:51:20 +0200 Subject: MHR-36: A set of major fixes for bootloader and kernel alongside new implementations. - Implement realloc for kernel scheduler improvements. - Fixed readAll on bootloader's BFileReader. - Add resources for zeta installation. - Add STB header. - Process Heap which replaced the previous User Heap. Signed-off-by: Amlal El Mahrouss --- Boot/BootKit/BootKit.hxx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'Boot/BootKit/BootKit.hxx') diff --git a/Boot/BootKit/BootKit.hxx b/Boot/BootKit/BootKit.hxx index a4453138..3c0ea09c 100644 --- a/Boot/BootKit/BootKit.hxx +++ b/Boot/BootKit/BootKit.hxx @@ -109,6 +109,7 @@ public: kEmptyDirectory, kNoSuchEntry, kIsDirectory, + kTooSmall, kCount, }; @@ -332,7 +333,7 @@ inline Boolean BDiskFormatFactory::Format(const char* partName, /// @note A catalog roughly equal to a sector. - constexpr auto cMinimumDiskSize = 10; // at minimum. + constexpr auto cMinimumDiskSize = 4; // at minimum. /// @note also look at EPM headers, for free part blocks. -- cgit v1.2.3