diff options
| author | Amlal El Mahrouss <amlal@nekernel.org> | 2025-03-27 20:35:24 +0100 |
|---|---|---|
| committer | Amlal El Mahrouss <amlal@nekernel.org> | 2025-03-27 20:35:24 +0100 |
| commit | a3da0eaaf7569948f83c65ff7997c4d1fc868603 (patch) | |
| tree | 735b9feba07568c802365169761efe0bc730f16b /dev/kernel/FSKit/IndexableProperty.h | |
| parent | e263653c2c1d1858827ac45061ecaefd9047fbb2 (diff) | |
BootZ: Introduce NetBoot module & consolidate STANDALONE macro
- Renamed __BOOTLDR_STANDALONE__ → __BOOTZ_STANDALONE__ across all modules.
- Introduced NetBoot module to support fallback booting via packets.
- Updated amd64-desktop build to bundle netboot.sys as part of system image.
- NetBoot now properly zeroes out its header and performs sanity check on PatchLength.
- Boot flow now attempts to fallback to NetBoot if neoskrnl.exe fails to start.
- Reorganized disk formatting logic for clarity and better failure recovery.
- HeFS & NeFS minimum disk size lowered (64GiB → 256MiB and 4GiB → 8MiB).
- Renamed `IndexProperty` to `Index` in FSKit::Indexer.
- Moved HintKit → hint/, updated includes and guards.
- Removed deprecated LPC.{cc,h}, replaced by ProcessCodes.h.
- Modernized SystemCalls.h typedefs: SCIObject → Ref, ThreadObject → ThreadRef, etc.
- Updated userland tools `make_app` and `open` with copyright and behavior fixes.
This prepares the BootZ infrastructure for headless/network environments.
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to 'dev/kernel/FSKit/IndexableProperty.h')
| -rw-r--r-- | dev/kernel/FSKit/IndexableProperty.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/dev/kernel/FSKit/IndexableProperty.h b/dev/kernel/FSKit/IndexableProperty.h index 6a79bc1b..054b2433 100644 --- a/dev/kernel/FSKit/IndexableProperty.h +++ b/dev/kernel/FSKit/IndexableProperty.h @@ -17,7 +17,7 @@ namespace NeOS { namespace Indexer { - struct IndexProperty final + struct Index final { public: Char Drive[kDriveNameLen]; @@ -41,7 +41,7 @@ namespace NeOS NE_COPY_DEFAULT(IndexableProperty); public: - IndexProperty& Leak() noexcept; + Index& Leak() noexcept; public: void AddFlag(Int16 flag); @@ -49,8 +49,8 @@ namespace NeOS Int16 HasFlag(Int16 flag); private: - IndexProperty fIndex; - UInt32 fFlags; + Index fIndex; + UInt32 fFlags; }; /// @brief Index a file into the indexer instance. |
