@
sergeynik
and what about the following.
take EmergencyUpdate.esd, EmergencyUpdateAYes.esd and EmergencyUpdateBNo.esd from 767 firmware and copy them into /mnt/efs-system/engdefs/.
I have prepared a script but i don't have 3GP in hand to test it

Basically here it is
#!/bin/ksh
sdcard=`ls /mnt|grep sdcard.*t`
dstPath=/mnt/$sdcard
mount -uw $dstPath
cd $dstPath
echo -ne "Begin emergency update menu install.\r\n" >> $dstPath/install.log
/bin/mount -uw /mnt/efs-system
cp $dstPath/EmergencyUpdate.esd /mnt/efs-system/engdefs/EmergencyUpdate.esd
cp $dstPath/EmergencyUpdateAYes.esd /mnt/efs-system/engdefs/EmergencyUpdateAYes.esd
cp $dstPath/EmergencyUpdateBNo.esd /mnt/efs-system/engdefs/EmergencyUpdateBNo.esd
echo -ne "Emergency update menu installation successful\r\n" >> $dstPath/install.log
/bin/rm -f /tmp/copie_scr.sh
echo > /tmp/copie_scr.sh
@[url=http://turbo-quattro.com/member.php?9-sergeynik][font=arial]sergeynik[/font][/url]
and what about the following.
take EmergencyUpdate.esd, EmergencyUpdateAYes.esd and EmergencyUpdateBNo.esd from 767 firmware and copy them into /mnt/efs-system/engdefs/.
I have prepared a script but i don't have 3GP in hand to test it :(
Basically here it is :)
#!/bin/ksh
sdcard=`ls /mnt|grep sdcard.*t`
dstPath=/mnt/$sdcard
mount -uw $dstPath
cd $dstPath
echo -ne "Begin emergency update menu install.\r\n" >> $dstPath/install.log
/bin/mount -uw /mnt/efs-system
cp $dstPath/EmergencyUpdate.esd /mnt/efs-system/engdefs/EmergencyUpdate.esd
cp $dstPath/EmergencyUpdateAYes.esd /mnt/efs-system/engdefs/EmergencyUpdateAYes.esd
cp $dstPath/EmergencyUpdateBNo.esd /mnt/efs-system/engdefs/EmergencyUpdateBNo.esd
echo -ne "Emergency update menu installation successful\r\n" >> $dstPath/install.log
/bin/rm -f /tmp/copie_scr.sh
echo > /tmp/copie_scr.sh