summaryrefslogtreecommitdiffhomepage
path: root/dev/kernel/FirmwareKit/NeBoot
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal@nekernel.org>2025-09-02 08:10:50 +0200
committerGitHub <noreply@github.com>2025-09-02 08:10:50 +0200
commitaead694f3cada63e4dc2d79653a5b0efe0d9f49f (patch)
tree419c04a35244ca0f34dd537e5ee052fb732ebabc /dev/kernel/FirmwareKit/NeBoot
parent36f7cf9ca4eb917ffd09fdfa6abf04ee10f3dc7e (diff)
parent1661e5d91d8e7984f916e3ccf78311b4b8c00940 (diff)
Merge pull request #60 from nekernel-org/dev
v0.0.4e4 — Langley
Diffstat (limited to 'dev/kernel/FirmwareKit/NeBoot')
-rw-r--r--dev/kernel/FirmwareKit/NeBoot/BootNet.h22
1 files changed, 11 insertions, 11 deletions
diff --git a/dev/kernel/FirmwareKit/NeBoot/BootNet.h b/dev/kernel/FirmwareKit/NeBoot/BootNet.h
index ad8f07c5..0f406b57 100644
--- a/dev/kernel/FirmwareKit/NeBoot/BootNet.h
+++ b/dev/kernel/FirmwareKit/NeBoot/BootNet.h
@@ -20,22 +20,22 @@ struct _BOOTNET_INTERNET_HEADER;
/// sent (if m_preflight = 0)
/// @note Can be used to patch ROMs too (if ImpliesProgram = 1)
typedef struct _BOOTNET_INTERNET_HEADER {
- Kernel::Char NB1; /// magic char 1 'O'
- Kernel::Char NB2; /// magic char 2 'N'
- Kernel::Char NB3; /// magic char 3 'E'
- Kernel::Char NB4; /// magic char 4 'T'
+ Kernel::Char NB1; /// magic char 1 'O'
+ Kernel::Char NB2; /// magic char 2 'N'
+ Kernel::Char NB3; /// magic char 3 'E'
+ Kernel::Char NB4; /// magic char 4 'T'
- Kernel::UInt16 Version;
+ Kernel::UInt16 Version;
- Kernel::Char Name[kBootNetNameLen]; /// example: Modjo
+ Kernel::Char Name[kBootNetNameLen]; /// example: Modjo
- Kernel::Int32 Length; /// the patch length.
- Kernel::Char Target[kBootNetNameLen]; /// the target file.
+ Kernel::Int32 Length; /// the patch length.
+ Kernel::Char Target[kBootNetNameLen]; /// the target file.
- Kernel::Boolean ImpliesProgram : 1; /// does it imply reprogramming?
+ Kernel::Boolean ImpliesProgram : 1; /// does it imply reprogramming?
- Kernel::Boolean Preflight : 1; /// is it a preflight packet.
- Kernel::Char Data[1]; /// non preflight packet has a patch blob for a **PatchTarget**
+ Kernel::Boolean Preflight : 1; /// is it a preflight packet.
+ Kernel::Char Data[1]; /// non preflight packet has a patch blob for a **PatchTarget**
} PACKED BOOTNET_INTERNET_HEADER;
using BOOTNET_INTERNET_HEADER_PTR = BOOTNET_INTERNET_HEADER*;