diff options
| author | Amlal <amlal@zka.com> | 2024-07-12 01:03:21 +0200 |
|---|---|---|
| committer | Amlal <amlal@zka.com> | 2024-07-12 01:03:21 +0200 |
| commit | a268a7d3551523fb82b1495808f3ea2516b6fdaa (patch) | |
| tree | 0a7fab583aafca52bccf5bac143517f559b3a247 /Boot/NetBoot/NetBoot.hxx | |
| parent | 0a076b2bcc21d4fc94b83569e1b5198f9e4acd0b (diff) | |
[IMP && FIX] Various patches and implementations.
Most importantly:
- JSON parser.
Signed-off-by: Amlal <amlal@zka.com>
Diffstat (limited to 'Boot/NetBoot/NetBoot.hxx')
| -rw-r--r-- | Boot/NetBoot/NetBoot.hxx | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/Boot/NetBoot/NetBoot.hxx b/Boot/NetBoot/NetBoot.hxx index a3039838..1a474501 100644 --- a/Boot/NetBoot/NetBoot.hxx +++ b/Boot/NetBoot/NetBoot.hxx @@ -14,13 +14,13 @@ /// @brief the internet header is used to download updates OTA. typedef struct NetBootInternetHeader { - CharacterTypeUTF8 NB1; /// magic char 1 'N' - CharacterTypeUTF8 NB2; /// magic char 2 'E' - CharacterTypeUTF8 NB3; /// magic char 3 'T' - CharacterTypeUTF8 NB4; /// magic char 4 'B' + Kernel::Char NB1; /// magic char 1 'N' + Kernel::Char NB2; /// magic char 2 'E' + Kernel::Char NB3; /// magic char 3 'T' + Kernel::Char NB4; /// magic char 4 'B' - CharacterTypeUTF8 PatchName[255]; /// example: ColdChoco - Kernel::Int32 PatchLength; /// the patch length. - CharacterTypeUTF8 PatchTarget[255]; /// the target file. - Kernel::Boolean ImpliesROM; /// does it implies EEPROM patching? + Kernel::Char PatchName[255]; /// example: ColdChoco + Kernel::Int32 PatchLength; /// the patch length. + Kernel::Char PatchTarget[255]; /// the target file. + Kernel::Boolean ImpliesROM; /// does it imply an EEPROM reprogram? } NetBootInternetHeader; |
