|
||||
Re: NAND Boot Testing - 01-07: Panel power on/off fixes
Quote:
__________________
If i'v helped you, then please click the button |
|
||||
Re: NAND Boot Testing - 01-07: Panel power on/off fixes
Nate/Lmiller : weird thing just happened.. i got some file corruption on /cache.
cyangen has two dalvik-caches and one had a bunch of nonsense and i would get oob errors on the dmesg log. Im thinking since cache is at the end of nand, you think we have the same issue as hd2 where they cant write to the last 24mb of nand ? So far this happened once and i guess im glad it was just the cache. Had it been the data it would be difficult to troubleshoot. /data/dalvik-cache <= Used by market apps (stored in /data/app) /cache/dalvik-cache <= Used by System apps (stored in /system/app).
__________________
|
|
||||
Re: NAND Boot Testing - 01-07: Panel power on/off fixes
Quote:
fopen /etc/ppp/pap-secrets failed = 2 Means the files are not found. Have you figured out how to adb yet ? this might be a 1 line fix .. adb into the device and do the following ls /system/etc ls /data/ppp Print out that you see. If /data/ppp has files, if it does then check if there is a ppp link inside /system/etc. If no link is found then remount system as rw using the command below. mount -o rw,remount -t yaffs2 /system Once thats done you can make the llink manually ln -s /data/ppp /system/etc/ppp |
|
||||
Re: NAND Boot Testing - 01-07: Panel power on/off fixes
Quote:
|
|
||||
Re: NAND Boot Testing - 01-07: Panel power on/off fixes
Quote:
I do know we cant format the recovery parititon table. Something about it being protected .. :-\ anwyays off to bed.. thanks for the commit.. 21.352783] msm_nand_read_oob 1ff31000 800 10 failed -74, corrected 0 to [ 62.875152] msm_nand_read_oob 1ff3f800 800 10 failed -74, corrected 0 Last edited by [ACL]; 03-07-2011 at 04:33 AM. |
|
||||
Re: NAND Boot Testing - 01-07: Panel power on/off fixes
Quote:
|
|
||||
Re: NAND Boot Testing - 01-07: Panel power on/off fixes
So you guys still can't write to the cache partition?
If so try changing this line on the MAKEDEV's mknod -m 0666 /dev/mtd/mtd4 c 90 6 to mknod -m 0666 /dev/mtd/mtd4 c 90 8 I stated this before but never looked at the push, but I was also uncertain about it... Sorry about that. But maybe the cache getting corrupt is something different... Kinda like the losing of some widgets on the Android home screen? As for not being able to write to the recovery partition are you still using the same starting place as before. 0x4000000? I won't be able to test for a while today for I forgot my phone at home.
__________________
|
|
||||
Re: NAND Boot Testing - 01-07: Panel power on/off fixes
Quote:
Specifically this file: /system/etc/dbus.conf Here is what the Vogue changes them too... chown 1002:1002 /system/etc/dbus.conf chmod 0444 /system/etc/dbus.conf @ACL, How are you creating your andriodinstall.tgz? I'm thinking we are having issues with permissions coming right from the tgz. Here is mine... Probably not right but it works once I run the fixperm script Code:
echo "Making androidupdate.tar" cd androidupdate chown -R 0:0 * tar -cvzf ../androidupdate.tar * chown -R lance:lance * cd .. echo "Moving androidupdate.tar" cp androidupdate.tar ~/Desktop/Android/1.Complete_Build/ANDROID/ echo "Making androidinstall.tar" cd androidinstall chown -R 0:0 * tar -cvzf ../androidinstall.tar * chown -R lance:lance * cd .. echo "Moving androidinstall.tar" cp androidinstall.tar ~/Desktop/Android/1.Complete_Build/ANDROID/ cp install-seq.sh ~/Desktop/Android/1.Complete_Build/ANDROID/ echo "Completed..." |
|
|
|