|
||||
Re: NAND Boot Testing - 03-08: Full NAND FRX05 Testing (Data not working for some)
Quote:
That being said, I think I may have the modules thing ironed out for multiple kernel versions. Here's the code that I'm testing right now in install-seq.sh: Code:
if [ ! -d /data/modules/`uname -r` ] ; then mkdir /data/modules/`uname -r` cp -a /data/modules /data/modules/`uname -r` cp -R /system/etc/wifi/* /data/modules/`uname -r` rm /system/lib/modules/`uname -r` ln -s /data/modules/`uname -r` /system/lib/modules/`uname -r` elif [ ! -e /system/lib/modules/`uname -r` ] ; then cp -R /system/etc/wifi/* /data/modules/`uname -r` ln -s /data/modules/`uname -r` /system/lib/modules/`uname -r` fi Code:
if [ ! -d /data/modules/`uname -r` ] ; then echo "Modules are not installed. Download the matching" fail "androidupdate.tgz and put it in your andboot folder" elif [ ! -e /system/lib/modules/`uname -r` ] ; then cp -R /system/etc/wifi/* /data/modules/`uname -r` ln -s /data/modules/`uname -r` /system/lib/modules/`uname -r` fi Last edited by natemcnutty; 03-11-2011 at 08:36 PM. |
|
||||
Re: NAND Boot Testing - 03-08: Full NAND FRX05 Testing (Data not working for some)
Quote:
As for the androidupdate.tgz, I'm hoping we move away from having anything but modules in those. It's useful for now to make system changes and all that, but eventually those should be cooked into the system rather than applied from the update. |
This post has been thanked 1 times. |
|
||||
Re: NAND Boot Testing - 03-08: Full NAND FRX05 Testing (Data not working for some)
Well, data is looking awesome, but I back to the drawing board on that code for modules
Edit: Holy crap is this thing smooth... Last edited by natemcnutty; 03-11-2011 at 09:00 PM. |
This post has been thanked 3 times. |
|
||||
Re: NAND Boot Testing - 03-08: Full NAND FRX05 Testing (Data not working for some)
Nice. Smooth. Sexy.
Job well done! Observations: FR05, camera no worky... Gmail Sync'ed... Calendar Sync'ed... GPS location in the ocean... Youtube -- "There was a problem while playing" Message USB Drive works! |
This post has been thanked 1 times. |
|
||||
Re: NAND Boot Testing - 03-08: Full NAND FRX05 Testing (Data not working for some)
Quote:
nate: Thanks alot for tackling that module thing. i got my pot of coffee ready so im hopefully finishing up this recovery soon. THe downside right now is that everyone will need to reflash eventually:-p .. yup.. until we get around the multi kernel thing we need to wipe everything, but lmiller had success with the backup and restore so its not so bad .. This is the latest screenshot off the recovery .. It's no magldr, but it will suffice for us. I'm keeping the backend script based so we all can maintain it. Only part that will require recompiles is the UI itself.
__________________
|
This post has been thanked 2 times. |
|
||||
Re: NAND Boot Testing - 03-08: Full NAND FRX05 Testing (Data not working for some)
Thanks, I added those to the first post. If you'd like to keep a running tab of working/not working, I can link that in the first post as well. If not, I can just keep updating the first post with everyone's experiences
|
|
||||
Re: NAND Boot Testing - 03-11: FRX05 on NAND (data working again!)
So ACL/LMiller, I was wondering if we should consider creating a new git for the android install and android update files. For android install, we would only need to maintain the files that deviate from FRX05. This way we can keep track of sysinit.rc and maybe try using /system/init instead of the init.android in initrd
What do you guys think? |
|
||||
Re: NAND Boot Testing - 03-11: FRX05 on NAND (data working again!)
Quote:
Eventually im hoping we can include our work in the xdandroid git. So i can ask stine to create a small project for us in there so we can be officially part of xdandroid. If not, well then we can always just make our own. I'll email him and let yall know. This way to create frx5, all we would need to do is pull the files over the base img and we should be golden. how does that sound? |
|
||||
Re: NAND Boot Testing - 03-11: FRX05 on NAND (data working again!)
Quote:
|
|
|
|