Skip to content

Commit

Permalink
Merge pull request #245 from pengutronix/barebox-env
Browse files Browse the repository at this point in the history
image-hd: gpt: add type GUID shortcut for barebox-env
  • Loading branch information
michaelolbrich authored Apr 4, 2024
2 parents fc9286c + 67b2a26 commit 6545138
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,8 @@ Partition options:
* ``R``, ``raid``: Linux RAID (a19d880f-05fc-4d3b-a006-743f0f84911e)
* ``V``, ``lvm``: Linux LVM (e6d6d379-f507-44c2-a23c-238f2a3df928)
* ``F``, ``fat32``: FAT32 / Basic Data Partition (ebd0a0a2-b9e5-4433-87c0-68b6b72699c7)
* ``B``, ``barebox-state``: Barebox State (4778ed65-bf42-45fa-9c5b-287a1dc4aab1)
* ``barebox-state`` (previously ``B``): Barebox State (4778ed65-bf42-45fa-9c5b-287a1dc4aab1)
* ``barebox-env``: Barebox Environment (6c3737f2-07f8-45d1-ad45-15d260aab24d)

Furthermore, for ``{arch}`` being one of ``alpha``,
``arc``, ``arm``, ``arm64``, ``ia64``, ``loongarch64``,
Expand Down
2 changes: 1 addition & 1 deletion image-hd.c
Original file line number Diff line number Diff line change
Expand Up @@ -276,8 +276,8 @@ static const struct gpt_partition_type_shortcut_t gpt_partition_type_shortcuts[]
{ "lvm" , "e6d6d379-f507-44c2-a23c-238f2a3df928" },
{ "F" , "ebd0a0a2-b9e5-4433-87c0-68b6b72699c7" },
{ "fat32" , "ebd0a0a2-b9e5-4433-87c0-68b6b72699c7" },
{ "B" , "4778ed65-bf42-45fa-9c5b-287a1dc4aab1" },
{ "barebox-state" , "4778ed65-bf42-45fa-9c5b-287a1dc4aab1" },
{ "barebox-env" , "6c3737f2-07f8-45d1-ad45-15d260aab24d" },
/* Discoverable Partitions Specification GUID, see
* https://uapi-group.org/specifications/specs/discoverable_partitions_specification/
*/
Expand Down

0 comments on commit 6545138

Please sign in to comment.