Quote:
Originally Posted by robot
I was unable to create loop device to mount an image:
Code:
#mknod /dev/loop0 b 7 0
#mount -o loop,noatime $sd/debian.img $mnt
mount can't setup loop device: no such files or directory
but...
Code:
#losetup: /dev/loop0
losetup: /dev/loop0: Devise or resource busy
|
loop0 is already in use by another mount.
/dev/block/loop1 exists, but is not in use. What if you just tried to use loop1 for the mount?
Code:
/system/esi/bin/busybox losetup /dev/block/loop1 yourimagefile.img
mount /dev/block/loop1 /valid/mount/point/directory
?
Does that work?