diff options
author | Joerg Schirottke <master@kanotix.com> | 2014-01-03 13:35:49 +0100 |
---|---|---|
committer | Holger Paradies <retabell@gmx.de> | 2014-01-03 14:38:22 +0100 |
commit | af92bf2111d76356b2298adc6901fbd1a15f0cbb (patch) | |
tree | 592148957c3afc87d82c024c37bd203dddd33401 /backend/modules/partitions | |
parent | 73fed2db83d2431850ecc82239b02294899d3572 (diff) | |
download | acritoxinstaller-af92bf2111d76356b2298adc6901fbd1a15f0cbb.zip acritoxinstaller-af92bf2111d76356b2298adc6901fbd1a15f0cbb.tar.gz |
allow Linux filesystem data GUID
Diffstat (limited to 'backend/modules/partitions')
-rw-r--r-- | backend/modules/partitions | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/backend/modules/partitions b/backend/modules/partitions index 6d890c1..b586d17 100644 --- a/backend/modules/partitions +++ b/backend/modules/partitions @@ -157,7 +157,7 @@ function list_linux_partitions() for part in $(list_all_partitions) do case "$(blkid -p -s PART_ENTRY_TYPE -o value "$part")" in - 0x83|ebd0a0a2-b9e5-4433-87c0-68b6b72699c7) + 0x83|ebd0a0a2-b9e5-4433-87c0-68b6b72699c7|0fc63daf-8483-4772-8e79-3d69d8477de4) [ "$(get_filesystem_type $part)" = "Linux" ] && echo "$part" ;; esac |