From 0e5217d1a7af44a88341c5551fe79b8983bb7433 Mon Sep 17 00:00:00 2001 From: Amlal El Mahrouss Date: Thu, 24 Apr 2025 07:30:49 +0200 Subject: dev, BootNet: improved the protocol headers and implementation. Signed-off-by: Amlal El Mahrouss --- dev/boot/modules/BootNet/BootNet.h | 23 +---------------------- 1 file changed, 1 insertion(+), 22 deletions(-) (limited to 'dev/boot/modules/BootNet/BootNet.h') diff --git a/dev/boot/modules/BootNet/BootNet.h b/dev/boot/modules/BootNet/BootNet.h index b38ed0e9..0b319387 100644 --- a/dev/boot/modules/BootNet/BootNet.h +++ b/dev/boot/modules/BootNet/BootNet.h @@ -9,25 +9,4 @@ #pragma once -#include - -#define kBootNetINetMagic "NETB" -#define kBootNetINetMagicLength (4) - -#define kBootNetNameLen (256U) - -/// @brief the internet header is used to download updates OTA. -typedef struct BOOTNET_INTERNET_HEADER -{ - 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' - - Kernel::Char Name[kBootNetNameLen]; /// example: Modjo - Kernel::Int32 Length; /// the patch length. - Kernel::Char Target[kBootNetNameLen]; /// the target file. - Kernel::Boolean ImpliesProgram : 1; /// does it imply an EEPROM reprogram? - Kernel::Boolean Preflight : 1; /// is it a preflight packet. - Kernel::Char Data[1]; /// non preflight packet has a patch blob for a **PatchTarget** -} ATTRIBUTE(packed) BOOTNET_INTERNET_HEADER; +#include -- cgit v1.2.3