summaryrefslogtreecommitdiffstats
path: root/src/live/parttypes.py
Commit message (Collapse)AuthorAgeFilesLines
* live: add parttypes.pyJose M. Guisado2023-02-081-0/+55
Adds parttypes.py module with utility functions to get partition types (parttypes) from python-libfdisk. Supports standard partition types, either DOS or GPT. DOS labels use a hex code to define partition types, python-libfdisk exposes get_parttype_from_code to look up for DOS partition types from a given hexcode. GPT label uses a string (UUID) for each supported partition type, python-libfdisk exposes get_parttype_from_string to look up for GPT partition types from a given string.