upgrade stuck on "Upgrading file-system"

anbrick

Member
Dec 15, 2010
6
0
I have tried several of tipstirs roms, they all get stuck at the same spot. "Upgrading file-system" I found a thread on slatedroid that said let the battery run totally out, but that didn't work either.

This is obviously a chinese hunk-a-sh...errrrr clone. I thought it was a flytouch generic. The version said WMT2.1.1 when I checked, so I thought the ROMs would work here. Here is a link form the ebay auction I bought it from. Any advice would be helpful. It seems like its bricked.

_http://cgi.ebay.com/ws/eBayISAPI.dll?ViewItem&rt=nc&nma=true&item=230556032889&si=VfcyuDIEj9GnosPaAYb0cOI9AYM%253D&viewitem=&sspagename=STRK%3AMEWNX%3AIT
 

anbrick

Member
Dec 15, 2010
6
0
sorry for the link above. This thing looks just like the pics in the forum, sliver back, blue led when on, red when charging. The ebay add said it was 450 mhz. I tried using the firmware for the VIA 8505, it gets stuck at upgrading file-system. Occassionally the ROM gets past thise but says it could not erase file system. fail! exit! maybe kernel does not support NAND Flash.

again, any help is greatly appreciated. At this point getting it back to out of the box state would be more than gracious.
 

anbrick

Member
Dec 15, 2010
6
0

prototype18

Member
Dec 16, 2010
11
0
hey there, hope the android honchos can help us. I've tried just about every ROM tipstir has here, I get stuck at upgrading file system or the error when it tries to flash NAND.

Here is a picture of what appears to be the same tablet as mine. hopefully this link is better.

Other Laptops & Notebooks - Google Android 7 inch MID Tablet PC With CAMERA WIFI 256MB RAM 400-450 MHZ processor was listed for R1,150.00 on 3 Dec at 21:16 by iElectronics101 in Pretoria / Tshwane (ID:29538602)

I have the same EXACT tablet, and I am having the same exact issue you're stating.

I tried all of tipsters roms, and it's failing when it tries to upgrade the filesystem.

Says it cannot find udisk on /dev/sda and then fails and hangs...

Theres gotta be a fix for this.
 
Dec 17, 2010
4
0
I have the same EXACT tablet, and I am having the EXACT problem. mine has firmware 1.6, build WMT2.1.1
I too have tried all of tipsters roms and failed. . .


It says: "Could not erase file system. fail! exit! maybe kernel does not support NAND Flash."

please help. . .
 

prototype18

Member
Dec 16, 2010
11
0
No matter what I try to do, I still fail when it tries to upgrade the filesystem.

I even downloaded the factory rom from chinavasion.com and still have the same result.
 

anbrick

Member
Dec 15, 2010
6
0
It looks really cool sitting on my desk right now. LOL. Any android yodas out there have any advice for us? Its a rather expensive paper weight right now.
 
Dec 17, 2010
4
0
ok people, i have another of the same tablet. i figured, if we can copy the whole system of this tablet
and somehow install it to the bricked (i hope not !!!) tablet, it SHOULD work right? But i don't know
how to do it or if it is even possible. S.O.T (Save Our TAblet!!!)
 

prototype18

Member
Dec 16, 2010
11
0
There must be something new about our tablets hardware or software that's making it fail when it tries to upgrade the filesystem.

I even went into the script folder and tried to mess around with the update.sh file, but still to no avail. If I got past the failed upgrading filesystem not find udisk on (/dev/sda) then it would fail at the Kernel upgrade.

So I think we just need to be a collective body and convince the rooters here to help us out, because obviously there is demand.

One of the guys told me our tablet has different mount points... I just don't understand how /dev/sda isn't the primary storage device on the tablet...

PLEASE HELP!
 
Dec 17, 2010
4
0
i did some tinkering around the archives, i found the source of the error code in the ramxxxx archive, but i'm not a programmer... too bad i don't know what to do with them. . .

#!/bin/sh

hostname -F /etc/hostname
killall syslogd &
killall klogd &
#!/bin/sh
height=20
pointX=30
pointY=50

mount -t yaffs2 /dev/mtdblock9 /mnt/mtd

if [ $? -ne 0 ] ; then
pointY=$(($pointY + $height + $height))
string="--> Mount File-System partition Fail! Exit!" -----> ONE!!!
echo $string
gui-echo $pointX $pointY "$string"
exit 0
else
string="Mount File-System partition OK"
echo $string
# gui-echo $pointX $pointY "$string"
# pointY=$(($pointY + $height))
fi

Language=`getenv release_language`
if [ $? -ne 0 ] ; then
Language=english
fi

DW=`getenv dw`
if [ $? -ne 0 ] ; then
DW=0
fi

if [ -f /mnt/mtd/.restore/data.tar ] || [ -f /mnt/mtd/.restore/cache.tar ] ; then
string="Factory data reseting. Please wait ..."
echo $string
#gui-echo $pointX $pointY "$string"
#pointY=$(($pointY + $height + $height))
if [ $Language = "simplified_chinese" ] ; then
if [ $DW = "0" ] ; then
/usr/sbin/restoring_scn_bottom
else
/usr/sbin/restoring_scn_top
fi
else
if [ $Language = "traditional_chinese" ] ; then
/usr/sbin/restoring_tcn_top
else
/usr/sbin/restoring_en_bottom
fi
fi
fi

if [ -f /mnt/mtd/.restore/data.tar ] ; then
mount -t yaffs2 /dev/mtdblock10 /mnt/data
if [ $? -ne 0 ] ; then
pointY=$(($pointY + $height))
string="--> Mount Data partition Fail!. Exit!" -----> TWO
echo $string
gui-echo $pointX $pointY "$string"
exit 0
else
string="Mount Data partition OK"
echo $string
# gui-echo $pointX $pointY "$string"
# pointY=$(($pointY + $height))
fi

tar xvf /mnt/mtd/.restore/data.tar -C /mnt/data
string="Restore data OK!"
echo $string
# gui-echo $pointX $pointY "$string"
# pointY=$(($pointY + $height))
if [ -d /mnt/mtd/.restore/app ] && [ -d /mnt/data/app ] ; then
cp -a /mnt/mtd/.restore/app/* /mnt/data/app
fi
if [ -d /mnt/mtd/.restore/etc ] ; then
cp -a /mnt/mtd/.restore/etc /mnt/data/wmtpref/
fi
chmod 777 -R /mnt/data
umount /mnt/data
fi

if [ -f /mnt/mtd/.restore/cache.tar ] ; then
mount -t yaffs2 /dev/mtdblock11 /mnt/cache
if [ $? -ne 0 ] ; then
pointY=$(($pointY + $height))
string="--> Mount Cache partition Fail!. Exit!" -----> THREE
echo $string
gui-echo $pointX $pointY "$string"
exit 0
else
string="Mount Cache partition OK"
echo $string
# gui-echo $pointX $pointY "$string"
# pointY=$(($pointY + $height))
fi

tar xvf /mnt/mtd/.restore/cache.tar -C /mnt/cache
string="Restore cache OK!"
echo $string
# gui-echo $pointX $pointY "$string"
# pointY=$(($pointY + $height))
chmod 777 -R /mnt/cache
umount /mnt/cache
fi


i found a site that identifies exactly what should go to each particular mnts: http://devio.us/~nextvolume/via_arm/viewtopic.php?id=12&t_id=2


/proc/mtd
dev: size erasesize name
mtd0: 00d00000 00010000 "filesystem-SF"
mtd1: 00280000 00010000 "kernel-SF"
mtd2: 00050000 00010000 "u-boot-SF"
mtd3: 00010000 00010000 "u-boot env. cfg. 1-SF"
mtd4: 00010000 00010000 "u-boot env. cfg. 2-SF"
mtd5: 00010000 00010000 "w-load-SF"
mtd6: 00600000 00080000 "kernel-NAND"
mtd7: 00600000 00080000 "logo-NAND"
mtd8: 01400000 00080000 "recovery-data"
mtd9: 0c800000 00080000 "filesystem-NAND" ------> ONE
mtd10: 26a00000 00080000 "filesystem-data" ------> two
mtd11: 06400000 00080000 "filesystem-cache" ------> THREE
mtd12: 44a00000 00080000 "user-data-NAND"




/proc/partitions
major minor #blocks name

7 0 1011916 loop0
31 0 13312 mtdblock0
31 1 2560 mtdblock1
31 2 320 mtdblock2
31 3 64 mtdblock3
31 4 64 mtdblock4
31 5 64 mtdblock5
31 6 6144 mtdblock6
31 7 6144 mtdblock7
31 8 20480 mtdblock8
31 9 204800 mtdblock9
31 10 632832 mtdblock10
31 11 102400 mtdblock11
31 12 1124352 mtdblock12

Please help. don't know what to do. . .this is supposed to be a gift for my sister and i'm scared that i bricked it. please, help us...
 

Sagan2010

Member
Dec 20, 2010
24
0
I found a working rom....it's loading now ePad Flytouch ROOTED ROM


Edit:....DOH.....spoke too soon...I get stuck on upgrading file-system but this time with a progress bar that keeps going....and going....and going...and going.
 
Last edited:
Top