We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 23ca147 commit e350862Copy full SHA for e350862
src/ugrd/fs/mounts.py
@@ -1,5 +1,5 @@
1
__author__ = 'desultory'
2
-__version__ = '4.12.1'
+__version__ = '4.12.2'
3
4
from pathlib import Path
5
from zenlib.util import contains, pretty_print
@@ -599,6 +599,8 @@ def resolve_blkdev_kmod(self, device) -> list[str]:
599
return ['virtio_blk']
600
elif device_name.startswith('sd'):
601
return ['sd_mod']
602
+ elif device_name.startswith('mmcblk'):
603
+ return ['mmc_block']
604
elif device_name.startswith('sr'):
605
return ['sr_mod']
606
else:
0 commit comments