View Single Post
Posts: 1,523 | Thanked: 1,997 times | Joined on Jul 2011 @ not your mom's FOSS basement
#531
@freemangordon:

Necessary changes to the script IMHO, as the explicitely created new node/ loopback device /tmp/n950loop was not writable on my aptosid (=Debian sid) VM:

Code:
#edit that as appropriate for your system
LOOPBACK_DEVICE=/dev/loop0
test -w /
if [ $? != 0 ]; then
    echo 'You must run this script as root'
    exit 1
fi
umount $LOOPBACK_DEVICE
# losetup -d $LOOPBACK_DEVICE
rm -f $LOOPBACK_DEVICE
rm -rf $RX71TMP
# mknod $LOOPBACK_DEVICE b 7 99
if [ $? != 0 ]; then
    echo 'Unable to create loopback device '$LOOPBACK_DEVICE
    exit 1
fi
Just use any available and empty /dev/loop[n] device.

And as Nokia removed the Beta 2 firmware, we need to adapt for:
Win_OCF_39-5_RM680-RM680-OEM1.exe 953 MiB ffe09a83dc5c09afd28ba9152d049290
- or, even better, switch to the binary file that's available and omit some extraction -
Linux_OCF_39-5_RM680-RM680-OEM1.bin 945 MiB 7adf7e021647afa9349a8a4294021296

Sounds good?

Last edited by don_falcone; 2011-11-19 at 09:47.
 

The Following User Says Thank You to don_falcone For This Useful Post: