diff options
author | Sascha Hauer <s.hauer@pengutronix.de> | 2024-02-19 09:31:35 +0100 |
---|---|---|
committer | Sascha Hauer <s.hauer@pengutronix.de> | 2024-02-20 11:46:30 +0100 |
commit | 834131b9bae1f2675bfa14e805058df7855fb1fc (patch) | |
tree | 77709a2b5795becab445c15d3a1b798c7ba589e0 | |
parent | 9946237b7152b3d0bf651847e279fb1c8a247694 (diff) | |
download | barebox-834131b9bae1.tar.gz barebox-834131b9bae1.tar.xz |
partition: add PARTITION_LINUX_DATA_GUID define
Link: https://lore.barebox.org/20240219083140.2713047-8-s.hauer@pengutronix.de
Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
-rw-r--r-- | include/efi/partition.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/efi/partition.h b/include/efi/partition.h index 0ca2a72eb9..40ff4c557f 100644 --- a/include/efi/partition.h +++ b/include/efi/partition.h @@ -45,6 +45,9 @@ #define PARTITION_BASIC_DATA_GUID \ GUID_INIT( 0xEBD0A0A2, 0xB9E5, 0x4433, \ 0x87, 0xC0, 0x68, 0xB6, 0xB7, 0x26, 0x99, 0xC7) +#define PARTITION_LINUX_DATA_GUID \ + GUID_INIT( 0x0FC63DAF, 0x8483, 0x4772, \ + 0x8E, 0x79, 0x3D, 0x69, 0xD8, 0x47, 0x7D, 0xE4) #define PARTITION_LINUX_RAID_GUID \ GUID_INIT( 0xa19d880f, 0x05fc, 0x4d3b, \ 0xa0, 0x06, 0x74, 0x3f, 0x0f, 0x84, 0x91, 0x1e) |