summaryrefslogtreecommitdiffhomepage
path: root/Private/FirmwareKit
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal.elmahrouss@icloud.com>2024-04-17 11:11:11 +0200
committerAmlal El Mahrouss <amlal.elmahrouss@icloud.com>2024-04-17 11:11:11 +0200
commit762ba62476b3cfc54ffe84f4861cca5f432c8d6a (patch)
treed610eb6603402e56257f6cedc8138cfd6f0abf51 /Private/FirmwareKit
parentc0099ab36bf9606c5503ceb0fa0d5b64f71c7203 (diff)
kernel: cleanup AMD64 bootloader, update icons.
Signed-off-by: Amlal El Mahrouss <amlal.elmahrouss@icloud.com>
Diffstat (limited to 'Private/FirmwareKit')
-rw-r--r--Private/FirmwareKit/EPM.hxx9
1 files changed, 5 insertions, 4 deletions
diff --git a/Private/FirmwareKit/EPM.hxx b/Private/FirmwareKit/EPM.hxx
index 048324f5..5cc743be 100644
--- a/Private/FirmwareKit/EPM.hxx
+++ b/Private/FirmwareKit/EPM.hxx
@@ -33,7 +33,7 @@ typedef struct BlockGUID {
struct PACKED BootBlock {
NewOS::Char Magic[kEPMMagicLength];
NewOS::Char Name[kEPMNameLength];
- BlockGUID Uuid;
+ BlockGUID Uuid;
NewOS::Int32 Version;
NewOS::Int64 NumBlocks;
NewOS::Int64 SectorSz;
@@ -104,11 +104,12 @@ typedef struct PartitionBlock PartitionBlockType;
#endif
#endif
-///! @brief partition must start after this address.
-#define kEPMStartPartitionBlk 0
+///! @brief partition must start at this address.
+///! Anything below is reserved for Data backup by the Main OS.
+#define kEPMStartPartitionBlk (0)
///! @brief Current EPM revision (2)
-#define kEPMRevision 2
+#define kEPMRevision (21)
/// END SPECS