Please flash the factory image again, uncheck 'save configuration'.
I did that. I also tried 3 firmwares including V9, you see the result.
[/quote]
Except it's simply impossible to get into that state unless your flashes are not completing properly.....
Let me try to explain:
Inside the .tar.gz, there is actually another image file.
That image, en whole, is flashed to NAND memory.
It is not flashed in part.
if [ -e uramdisk.image.gz ]; then
md5=`md5sum uramdisk.image.gz | awk {'print $1'}`
md5_r=`cat md5_info`
if [ $md5 == $md5_r ];then
flash_erase /dev/mtd1 0x0 0x100 >/dev/null 2>&1
nandwrite -p -s 0x0 /dev/mtd1 uramdisk.image.gz >/dev/null 2>&1
if [ -e /dev/mtd4 ]; then
flash_erase /dev/mtd4 0x0 0x100 >/dev/null 2>&1
nandwrite -p -s 0x0 /dev/mtd4 uramdisk.image.gz >/dev/null 2>&1
fi
else
echo $md5 > /config/md5_error
echo $md5_r >> /config/md5_error
echo "Error md5! $md5 $md5_r" >> /tmp/upgrade_result
fi
fi
This code says "completely erase the partition /dev/mtd1 and copy uramdisk.image.gz there", followed by "if there is a 2nd partition, copy it there as well", and "if the md5 check does not match, do nothing.".
No where in here is there anything that says "Copy part of the files out of an image and put them in the filesystem."
The entire image is embedded in the one file, uramdisk.image.gz -- the web pages, the cgminer, everything.
It is literally impossible to get in the state you portray unless you have a failed flash.
If you'd like to give me access to login to your machine via teamviewer, I'll be happy to take a look.
Jason
[/quote]
This is now resolved -- local browser cache needed to be cleared to read the new html pages after changing firmware.
Jason