Quote:
Originally Posted by geekmaster
I just did "mount /dev/mmcblk0p2 /mnt/mmc" on my PW, and the ONLY extra line I saw in my mounts was "/dev/mmcblk0p2 on /mnt/mmc type ext3 (rw,relatime,data=writeback)".
I still need to try it on my K5, but I do not expect any loop mount, or I would probably have noticed it long ago...
|
I guess, there is a difference between
Code:
mount -o offset=1075838976 /dev/mmcblk0p4 /somehwere
and
Code:
mount /dev/mmcblk0p2 /mnt/mmc
Did you try
mount with
-o offset=<offset>?
Quote:
Originally Posted by man mount | grep -A1 offset
This type of mount knows about four options, namely loop, offset,
sizelimit and encryption, that are really options to losetup(8). If
|