diff options
| author | Amlal El Mahrouss <amlal@nekernel.org> | 2025-11-19 09:33:29 +0100 |
|---|---|---|
| committer | Amlal El Mahrouss <amlal@nekernel.org> | 2025-11-19 09:33:29 +0100 |
| commit | 92a98b1b45192125562c5b90fc7d02317f94016e (patch) | |
| tree | 74cafe9b5590a211dd2c04226332065c706ff58a /dev/kernel/FirmwareKit/VEPM.h | |
| parent | f29e7e30fde2b994c86024659b41f56b64dce911 (diff) | |
feat: kernel: new CRuntimeOverrides file, and documentation
improvements.
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to 'dev/kernel/FirmwareKit/VEPM.h')
| -rw-r--r-- | dev/kernel/FirmwareKit/VEPM.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/dev/kernel/FirmwareKit/VEPM.h b/dev/kernel/FirmwareKit/VEPM.h index 49b6335e..129d3b61 100644 --- a/dev/kernel/FirmwareKit/VEPM.h +++ b/dev/kernel/FirmwareKit/VEPM.h @@ -10,25 +10,37 @@ #include <FirmwareKit/EFI.h> #include <FirmwareKit/EPM.h> +/// =========================================================== /// /// @brief The Virtual Explicit Partition Map scheme extension. +/// =========================================================== /// #if defined(__NE_VEPM__) #ifdef kEPMMagic #undef kEPMMagic #endif // kEPMMagic +/// =========================================================== /// +/// @brief VEPM Ident String. +/// =========================================================== /// #define kEPMMagic "EPMVM" +/// =========================================================== /// /// @brief VEPM GUID. /// @note This is the GUID used to identify a VEPM partition. +/// =========================================================== /// inline EPM_GUID kVEPMGuidEPM = { 0x9a1b3f2e, 0x4c3f, 0x4d52, {0xa7, 0x83, 0x9c, 0x21, 0x7b, 0x5e, 0x4d, 0xac}}; +/// =========================================================== /// /// @brief VEPM GUID. /// @note This is the GUID used to identify a VEPM partition (EFI version) +/// =========================================================== /// inline EFI_GUID kVEPMGuidEFI = { 0x9a1b3f2e, 0x4c3f, 0x4d52, {0xa7, 0x83, 0x9c, 0x21, 0x7b, 0x5e, 0x4d, 0xac}}; +/// =========================================================== /// +/// @brief VEPM GUID String. +/// =========================================================== /// #define kVEPMGuidStr "9a1b3f2e-4c3f-4d52-a783-9c217b5e4dac" #endif // __NE_VEPM__ |
