Your certainly welcome. We're all here to share and learn, and I happily do whatever I can.First of all, many many thanks gbhil!!
Your walkthroughs are excellent!
Question :
I want to replace my bootscreen files, but the folder and files are read only.
I am rooted and have verified it via Terminal, but how can I go about replacing the files?
Path to bootscreen files: data\system\media\bootscreen
I already have a new .gif ready to swap and test.
Any help is much appreciated!!
cp isn't in the shell. You'll need busybox, or push/pull through the adb shell. Mocado's rom has busybox in the shell, and is eaiser to setup than trying to track down busybox (that works) and getting it installed.update: I put in a copy command, but recieved and error cp: Not Found
Is cp not in the shell?
ex: cp /data/local/boot.gif /system/media/bootscreen
Your certainly welcome. We're all here to share and learn, and I happily do whatever I can.
"mount -o remount,rw -t yaffs2 /dev/block/mtdblock3 /system"
without the quotes of course. This will remount the system as RW for root. Please be sure to share your findings.
mount -o remount,rw -t yaffs2 /dev/block/mtdblock3 /system
mkdir /sdcard/boot_back/
cp /system/media/bootscreen/*.* /sdcard/boot_back/
rm /system/media/bootscreen/sprint.gif
adb shell
su
mount -o remount,rw -t yaffs2 /dev/block/mtdblock3 /system
push sprint.gif /system/media/bootscreen/sprint.gif
Don't be sorry man. We are all here to learn and share. You can flash the RA and backup by doing this:sorry for the noob question, but how do I get and backup with RA recovery?
To start, I'm going to replace boot.gif. I just personalized it and kept everything else intact. The animation is the exact frame and length as the other, infact mine is a 1/3 the file size so it will probably load quicker.
adb shell
push recovery-RA-heroc-v1.2.3.img /sdcard/
su
flash_image recovery /sdcard/recovery-RA-heroc-v1.2.3.img
reboot recovery
exit
exit
one thing, I've already ran 'mount -o remount,rw -t yaffs2 /dev/block/mtdblock3 /system' and have not been able to delete any of the files. going to try again tho..
su
# rm -r /system/media/bootscreen
rm -r /system/media/bootscreen
# /data/local /system/media
/data/local /system/media
/data/local: permission denied
Got the Modaco rom to work as well after doing a Nandroid Backup, but I still can't get wireless tether to play nice with my DS. I set the SSID and WEP Key on the phone and entered that on the DS but it still doesn't want to connect. Are there any settings on the wireless tether that prevent something like a DS from not connecting?
Hmm try
adb push boot.gif /system/media/bootscreen/boot.gif
But I think you're going to have to rename it sprint.gif or edit the xml file.
both files boot.gif and sprint.gif are in the tools directoryC:\Android\android-sdk-windows\tools>adb shell
$ adb push boot.gif /system/media/bootscreen/boot.gif
adb push boot.gif /system/media/bootscreen/boot.gif
adb: permission denied
$ su
su
# adb push boot.gif /system/media/bootscreen/boot.gif
adb push boot.gif /system/media/bootscreen/boot.gif
adb: not found
# boot.gif /system/media/bootscreen/boot.gif
boot.gif /system/media/bootscreen/boot.gif
boot.gif: not found
# /data/local/sprint.gif /system/media.bootscreen
/data/local/sprint.gif /system/media.bootscreen
/data/local/sprint.gif: permission denied
# /data/local/sprint.gif /system/media.bootscreen/sprint.gif
/data/local/sprint.gif /system/media.bootscreen/sprint.gif
/data/local/sprint.gif: permission denied
