Skip to content

Commit e350862

Browse files
committed
added mmcblk to mount kmod autodetction
Signed-off-by: Zen <[email protected]>
1 parent 23ca147 commit e350862

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/ugrd/fs/mounts.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
__author__ = 'desultory'
2-
__version__ = '4.12.1'
2+
__version__ = '4.12.2'
33

44
from pathlib import Path
55
from zenlib.util import contains, pretty_print
@@ -599,6 +599,8 @@ def resolve_blkdev_kmod(self, device) -> list[str]:
599599
return ['virtio_blk']
600600
elif device_name.startswith('sd'):
601601
return ['sd_mod']
602+
elif device_name.startswith('mmcblk'):
603+
return ['mmc_block']
602604
elif device_name.startswith('sr'):
603605
return ['sr_mod']
604606
else:

0 commit comments

Comments
 (0)