Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
You need to find the original ROM, contact your reseller for this. The update.sh script contains the partition info, try a modded rom BUT replace the update.sh script partition lines with the original, give it a go and see what happens
This Partition.sh is for a 1GB Nand drive:if [ ! -f ${SDCARD}/script/Partition.sh ] ; then
string="--> Not find script/Partition.sh in SD Card"
echo $string
gui-echo $pointX $pointY "$string"
pointY=$(($pointY + $height + $height))
string="Fail to update filesystem. Exit!"
echo $string
gui-echo $pointX $pointY "$string"
echo 0 > /proc/boot-splash
exit 0
fi
Seems to me that you can add a partition for using for example 2GB Nand by inserting this block:echo p
echo d
echo 1
echo d
echo 2
echo d
echo 3
echo d
echo 4
echo p
echo n
echo p
echo 1
echo
echo +33M
echo n
echo e
echo 2
echo
echo
echo p
echo n
echo l
echo
echo +368M
echo p
echo n
echo l
echo
echo +648M
echo p
echo n
echo l
echo
echo +105M
echo p
echo n
echo l
echo
echo
echo p
echo w
But if you've done that, you must update the update.sh as well:echo +1024M
echo p
echo n
echo l
echo
I'm not sure how this should be expanded with another partition because it's not quite clear how it numbers. Logically I would go for adding this:string="UDisk Partition ......"
echo $string
gui-echo $pointX $pointY "$string"
chmod 777 ${SDCARD}/script/partition.sh
${SDCARD}/script/partition.sh | fdisk /dev/sda
mknod /dev/sda1 b 8 1
mknod /dev/sda5 b 8 5
mknod /dev/sda6 b 8 6
mknod /dev/sda7 b 8 7
mknod /dev/sda8 b 8 8
And see what it does. Because I don't own a device with this type of firmware I can't this out.mknod /dev/sda9 b 8 9
I tried it . Did not work. Stuck at Please wait.If you have the one with the green headphone jack and the blue led that turns red while charging try the rom from www.ekengroup.com it's under downloads as "m009 new". I would try it but I think I've bricked mine.
Prepare update files . . .
Update filesystem start . . .
--> Not find UDisk (/dev/sda)
Fail to update filesystem. exit!