Hi ashfame
... When you said util-linux version of losetup and lsblk, did you mean something other than "util-linux.tcz"? ...
Yes, that's exactly what I meant.
As far as this is concerned:
sudo mount -o loop,offset=8192 piCore-11.0.img mountpoint
It should be:
sudo mount -o loop,offset=$((512 * 8192)),sizelimit=$((512 * $Sectors)) piCore-11.0.img mountpoint
offset and sizelimit is in bytes so it needs to be multiplied by the sector size (512).
sizelimit is required because the image has multiple partitions. Without it you will get an overlapping loop device error when you
try to mount the second partition. You can get the correct value for $Sectors by running:
fdisk -l piCore-11.0.img
There will be a column called Sectors.
Regardless, you will still need util-linux for this to work. Using losetup as I showed in reply #1 takes care of offset/sizelimit for you
and simplifies the resulting mount commands.