Add new sector status: introduce SectorStatusGenerable to indicate content that can be generated using a known algorithm

This commit is contained in:
2026-03-16 17:28:54 +00:00
parent 98ec0c4add
commit 7ee97105b5

View File

@@ -252,7 +252,8 @@ typedef enum
SectorStatusTwin = 0x7, ///< Pointer references a twin sector table.
SectorStatusUnrecorded = 0x8, ///< Sector physically unrecorded; repeated reads non-deterministic.
SectorStatusEncrypted = 0x9, ///< Content encrypted and stored encrypted in image.
SectorStatusUnencrypted = 0xA ///< Content originally encrypted but stored decrypted in image.
SectorStatusUnencrypted = 0xA, ///< Content originally encrypted but stored decrypted in image.
SectorStatusGenerable = 0xB ///< Content can be generated using a known algorithm.
} SectorStatus;
/**