index : archinstall32 | |
Archlinux32 installer | gitolite user |
summaryrefslogtreecommitdiff |
author | demostanis <40673815+demostanis@users.noreply.github.com> | 2022-05-29 07:34:32 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-29 09:34:32 +0200 |
commit | 7daf9b32d0c32d9fa1ba5aa9750376ad47c6d7e6 (patch) | |
tree | 67024342795fc2f563d70b8df28fe591c6059022 /archinstall | |
parent | 2de153003ed5de1018639070fabc9c9e583c49d1 (diff) |
-rw-r--r-- | archinstall/lib/disk/helpers.py | 2 |
diff --git a/archinstall/lib/disk/helpers.py b/archinstall/lib/disk/helpers.py index 47cc81c4..85c0390f 100644 --- a/archinstall/lib/disk/helpers.py +++ b/archinstall/lib/disk/helpers.py @@ -244,7 +244,7 @@ def all_blockdevices(mappers=False, partitions=False, error=False) -> Dict[str, instances[path] = Partition(path, block_device=BlockDevice(get_parent_of_partition(pathlib.Path(path)))) elif path_info.get('PTTYPE', False) is not False or path_info.get('TYPE') == 'loop': instances[path] = BlockDevice(path, path_info) - elif path_info.get('TYPE') == 'squashfs': + elif path_info.get('TYPE') in ('squashfs', 'erofs'): # We can ignore squashfs devices (usually /dev/loop0 on Arch ISO) continue else: |