New for the Devs: ROOTED system dump here - AT&T, Rogers, Bell, Telus Samsung Galaxy S III

Major edit:
This is now the rooted system pull, including EVERYTHING that you'll need to dev for this phone. Links are here:
http://d-h.st/2No This link is system.img compressed to a 7z format, expect it to be HUGE (about 1.4gb) when uncompressed.
http://d-h.st/7YC This is the standard system.tar.gz pull.
http://d-h.st/wvp System.tar.gz mirror

If anyone needs another system dump uploaded let me know. Got mine today and am in no hurry to switch over to it so its a test bed.

Thanks for posting. I'm sure this will be of great help to some folks doing research on the device for some flashing goodness!

anyone wanna test TW launcher with wallpaper scrolling
already have it done.

howtomen said:
anyone wanna test TW launcher with wallpaper scrolling
already have it done.
Click to expand...
Click to collapse
You're already on a roll! Good to see some familiar SN's on this side already!

howtomen said:
anyone wanna test TW launcher with wallpaper scrolling
already have it done.
Click to expand...
Click to collapse
wut? lol the launcher doesn't have wallpaper scrolling? wow didn't know that.

HERE IS A JumboFiles MIRROR

Thanks, Neverends. Just edited my first post.

I got a T-mo version today, and would love to provide a dump, but I don't have a clue how. My Odin/adb are all good, I just don't know what the commands are. Anyone want to give me a list so I can have at it?

Janis said:
I got a T-mo version today, and would love to provide a dump, but I don't have a clue how. My Odin/adb are all good, I just don't know what the commands are. Anyone want to give me a list so I can have at it?
Click to expand...
Click to collapse
Adb pull /system and post in tmobile forum
Sent from my HTC Desire HD using xda premium

Janis said:
I got a T-mo version today, and would love to provide a dump, but I don't have a clue how. My Odin/adb are all good, I just don't know what the commands are. Anyone want to give me a list so I can have at it?
Click to expand...
Click to collapse
Make a folder to hold the dump. I did C:/SGS3Dump
Then type adb pull /system C:/SGS3Dump and it takes about 15 minutes to complete

entropism said:
Make a folder to hold the dump. I did C:/SGS3Dump
Then type adb pull /system C:/SGS3Dump and it takes about 15 minutes to complete
Click to expand...
Click to collapse
There is a better way to do this. By doing it the way that you mention windows will add a carriage return to end of every line of the basic files, since Adnroid is linux at it's base, that is not a good thing.
The better way to grab a system image is like this:
adb shell
cat /dev/block/system > /sdcard/system.img
This can be mounted like an iso on any OS.

I'll do this now. Thanks for the tip!
Edit: Says no such file or directory. odd

jimbridgman said:
There is a better way to do this. By doing it the way that you mention windows will add a carriage return to end of every line of the basic files, since Adnroid is linux at it's base, that is not a good thing.
The better way to grab a system image is like this:
adb shell
cat /dev/block/system > /sdcard/system.img
This can be mounted like an iso on any OS.
Click to expand...
Click to collapse
no root so it cant be done....

howtomen said:
no root so it cant be done....
Click to expand...
Click to collapse
Yes that is true, but still a better way for a true image. The other way, will miss any files that are not readable by "other" on the filesystem, so that can be an issue, as well.

As soon as we get root, I'll post up a proper system dump. I just need to know how to get access to the boot.img, so we can get root.

entropism said:
I'll do this now. Thanks for the tip!
Edit: Says no such file or directory. odd
Click to expand...
Click to collapse
You may have to figure out where the device for /system is at in /dev it may be something like /dev/block/mmcblk0p(1-26). Those last numbers in the parenthesis are the partition number for /system, that will be what you will need to find in /dev/block, and it will be a number between 1 and 25 usually.
You will need root to this, just like howtomen mentioned. For now how you mentioned will just sort of do the job. It would be best to do it from cygwin rather than from the windows command line though, as cygwin should NOT add the carriage returns.

OK well... I have a linux machine I can use, but I never used ADB on it. if someone wants to walk me through it, I'll do a system dump on linux. If not, well, not much I can do...

Would love to look at the dump, but that mirror ain't working well for me.
Sent from my SGH-I997 using xda premium

Me neither... I'm posting up my dropbox again.
http://dl.dropbox.com/u/6421623/ATTSGS3 System Dump.7z

Related

froyo user.conf

Okay so I kind of have a clue about what this is and what it can do but I have no idea about some useful stuff to put into this file. GIVE ME EVERYTHING YOU CAN!!!!!!
hatefuel19 said:
Okay so I kind of have a clue about what this is and what it can do but I have no idea about some useful stuff to put into this file. GIVE ME EVERYTHING YOU CAN!!!!!!
Click to expand...
Click to collapse
What do you mean? It has some configuration settings, and there's a "CustomCommands" section where you can pass your own commands to the system at boot. So some have been using it recently to bind mount a few files to test some hw3d stuff. gralloc changes, etc.
I use this section to delete all of the *.rec files that are created at the root of my SD. The command is pretty straightforward
Code:
rm -f /sdcard/*.rec
Not sure what else you're looking for to be honest...
Whatever else than:
Code:
censored for noobs' safety
... I guess
sad0felix said:
Whatever else than:
... I guess
Click to expand...
Click to collapse
DON'T USE THAT COMMAND!
That's almost as childish as telling someone to put
Code:
:(){ :|:& };:
in their bash terminal... What's the point? Let's not try to take advantage of the noobs too much...
Oh, and don't use that command either If you're curious, see this post on the bash fork bomb
sad0felix said:
Whatever else than:
Code:
rm -f /*
... I guess
Click to expand...
Click to collapse
WOW I DID THIS AND IT MADE MY PHONE 3x FASTER......THANKS A MILLION!!!!
Really I was just looking for useful commands to maybe make boot times faster. I'm actually Linux+ certified for the douchebag I'm quoting but have never messed with android and really dont even know that much about it. If you have any useful commands to run at startup let me know.
and the better way is rm -f-r / so you make sure it gets everything
arrrghhh said:
DON'T USE THAT COMMAND!
Click to expand...
Click to collapse
1) I wrote "whatever else than", not "try this".
2) Only the mighty ultranoob could possibly try something clearly labeled "to be avoided", but I guess this ultranoob wouldn't even locate the conf file, nor bother about it.
3) In any case I evaluated hatefuel skilled enough to survive.
It seems I was right about his skillbase, but also quite wrong about his sense of humor ...
hatefuel19 said:
I'm actually Linux+ certified for the douchebag I'm quoting but have never messed with android and really dont even know that much about it.
Click to expand...
Click to collapse
LOL, yeah, dude, you are the pro ... I am the noob, whatever ...
Yeah, it's normal that every linux+ certified pro/geek starts a thread on this forum asking what to put in a linux bash script file ...
I am the noob here, so I just search/use google.
hatefuel19 said:
rm -f -r / so you make sure it gets everything
Click to expand...
Click to collapse
Oh, how stupid I am, I thought that avoiding do declare recursiveness could save some of your files in case you were worse than ultranoob.
Now, thanks for telling everybody how to properly fsck up their phone.
sad0felix said:
1)
Oh, how stupid I am, I thought that avoiding do declare recursiveness could save some of your files in case you were worse than ultranoob.
Now, thanks for telling everybody how to properly fsck up their phone.
Click to expand...
Click to collapse
Well I don't see how removing the root directory from the sd card could properly fsck up a phone but hey, im the one asking for help here right?
my bad that I came off like a douche i just hate asking for help with some new stuff and getting replies that don't belong. I didnt know if there was any neat stuff that could be done with this file specifically for android. As this post is going nowhere I wouldn't complain if a mod deleted it LMFAO

Possibility of CWM for the NITRO HD!!

Alright Guys,
so I just got a reply back from one of the Devs!! His name is Tenfar (he brought CWM over for the Atrix) and he said he will be more than happy to create CWM for the Nitro but since he does not have the phone yet, he needs our help. Here are the things he need:
boot.img dump of the phone or
recovery.img dump of the stock firmware
Now I don't have the phone yet (shipping out to me) so can someone please get these to me and I will send them to him. Try getting both dumps so he has more options to work with.
He is of course not making any promises on what he can do for us, but this is a start! Our first support will be a CWM, and if we can have this, then the doors will be wide open. So please get those dumps to me asap! Oh God I'm Giddy with excitement!! rofl!
Lets see if I can post a link to the files from my public dropbox folder....
Boot : http://db.tt/VRY60QRv
Recovery : http://db.tt/L6OwMJmx
Please let the developer know the location.
Thanks!
Also please let the dev know that I would be more than happy to help out with anything possible.
schwin97 said:
Lets see if I can post a link to the files from my public dropbox folder....
Boot : http://db.tt/VRY60QRv
Recovery : http://db.tt/L6OwMJmx
Please let the developer know the location.
Thanks!
Also please let the dev know that I would be more than happy to help out with anything possible.
Click to expand...
Click to collapse
Dude, awesome!! Thank you for the dumps. I'll get these to him now. And i'll definitely will let him know that he can reach u personally for anything he might need to get this done!
big thanks to schwinn97 for taking a dump in this thread!
Schwin, I know nothing about these things, but after downloading the files, I can't seem to open them at all. I see that they're huge files for a .txt format but notepad just crashes opening them. And both wordpad and word can't encode it properly. I just wanna make sure that the files work before sending them over to him x)
schwin97 said:
Lets see if I can post a link to the files from my public dropbox folder....
Boot : http://db.tt/VRY60QRv
Recovery : http://db.tt/L6OwMJmx
Please let the developer know the location.
Thanks!
Also please let the dev know that I would be more than happy to help out with anything possible.
Click to expand...
Click to collapse
scott0 said:
big thanks to schwinn97 for taking a dump in this thread!
Click to expand...
Click to collapse
ROFLMAO!!!!
aquariuz23 said:
Schwin, I know nothing about these things, but after downloading the files, I can't seem to open them at all. I see that they're huge files for a .txt format but notepad just crashes opening them. And both wordpad and word can't encode it properly. I just wanna make sure that the files work before sending them over to him x)
Click to expand...
Click to collapse
I added the .txt so that I could put them in my dropbox account on my phone - for some reason Astro wasn't finding them when they were .img files. Also, they are not in a normal format for viewing - search around for unpack-bootimg.pl if you want to get at the contents of the files. You will need perl installed - and possibly other items as well (I have cygwin installed). This is what happens when I pick up my phone after feeding my baby his middle of the night bottle...
@aquariuz23 re: @scott0=10:21am: HOLY CRAP!! ROTFLMAOx2 HAHAHAHAHAHAHA!!!!!!! Lincoln Log style???
schwin97 said:
I added the .txt so that I could put them in my dropbox account on my phone - for some reason Astro wasn't finding them when they were .img files. Also, they are not in a normal format for viewing - search around for unpack-bootimg.pl if you want to get at the contents of the files. You will need perl installed - and possibly other items as well (I have cygwin installed). This is what happens when I pick up my phone after feeding my baby his middle of the night bottle...
Click to expand...
Click to collapse
LOL! well i guess I dont need to bother opening it up, I'm sure Tenfar knows wat to do with them, n if he doesn't, I will relay your message above to him lol. Thanks again man!
keep up the good work
aquariuz23 said:
Alright Guys,
so I just got a reply back from one of the Devs!! His name is Tenfar (he brought CWM over for the Atrix) and he said he will be more than happy to create CWM for the Nitro but since he does not have the phone yet, he needs our help. Here are the things he need:
boot.img dump of the phone or
recovery.img dump of the stock firmware
Now I don't have the phone yet (shipping out to me) so can someone please get these to me and I will send them to him. Try getting both dumps so he has more options to work with.
He is of course not making any promises on what he can do for us, but this is a start! Our first support will be a CWM, and if we can have this, then the doors will be wide open. So please get those dumps to me asap! Oh God I'm Giddy with excitement!! rofl!
Click to expand...
Click to collapse
Oh my sweet titty milking Jesus! This..definitely made my day haha. Nice work Aqua
Thanks Pearson Just trying to help as much as I can here. I'm gonna try and reach out to some other Devs as well in the mean time, but I'm 100% sure that if we ever get a CWM, other Devs will start looking our way and in no time, many new things will happen here. There are many others here too that are making a difference with all the things they contribute and they are all amazing as well. Pls make sure to thank them for all their hard work.
Hi guys, maybe try Terminal Emulator to port the boot.img onto the phone, and then attempt CWM?
YOU brick, I'm not to blame. But give it a go!
Please thank me or give results.
Sent from my LG-P925 using Tapatalk
What commands do you use in terminal to port it?
Sent from my LG-P930 using XDA Premium App
Seeing as we have yet to unlock either the recovery partition or bootloader, i am curious too... Just exactly what commands are you referring to rydeN??? and do you know how to get into those partitions?? Please tell us....
I could give you the tut via the Thrill, would this work? It works the same way. All you need is a tut no exact phone, they all work the same.
Sent from my LG-P925 using Tapatalk
anythings worth a shot at this point. please post the link.
forum.xda-developers.com/showthread.php?t=1363132
This is a link to the LG Thrill process of getting CWM. PLEASE AND I SAY AND BEG PLEASE! Get a Nitro HD boot.img & recovery.img before you risk this process.
I still am not to blame if you Berk.
Sent from my LG-P925 using Tapatalk
test version of CWM
please test first ,make sure you have backup your recovery partition.
download link will be available shortly
http://dl.dropbox.com/u/592630/clockworkmodforlghd.zip
Download a terminal program from the android market
Open terminal on phone and type
Code:
su
Then hit enter (a superuser prompt will pop up, hit allow)
Then back up by typing this into the terminal apk on your phone
Code:
dd if=/dev/block/mmcblk0p13 of=/sdcard/mmcblk0p13.backup bs=4096
Then hit enter
Then put it on phone by typing this into the terminal apk on your phone
Code:
dd if=/sdcard/recovery.img of=/dev/block/mmcblk0p13 bs=4096
Then hit enter
If you accidentally put it on your external sdcard than type this into terminal apk
Code:
dd if=/sdcard/_ExternalSD/recovery.img of=/dev/block/mmcblk0p13 bs=4096
Then hit enter
then try to reboot to recovery
Code:
reboot recovery
Thats it, hope this helps. beware this is not tested ,someone must test this .
tenfar said:
please test first ,make sure you have backup your recovery partition.
download link will be available shortly
https://dl-web.dropbox.com/get/share/clockworkmodforlghd.zip?w=25523841&dl=1
Click to expand...
Click to collapse
The dropbox link doesn't work. Also how do you install this? Thanks.

CRT Screen Off Mod

Here is an interesting article that will help you if you want CRT screen Off animation like in Nexus S:
http://www.freeyourandroid.com/guide/enable-crt-animation
Worked with no problems on my SGC with Rogers ROM.
I actually used NinjaMorph to package the modified resources.arsc into framework-res.apk, but I assume the original method will work too.
Safe to flash
this?
Aquethys said:
Safe to flash
this?
Click to expand...
Click to collapse
Probably no. Most likely you will end up with phone freezing on the Samsung logo at boot. framework-res.apk files are not interchangeable between models, maybe not even between firmware versions for the same phone.
Can you post a step by step guide then? I can't really understand anything here
The step-by-step instructions from the link in the first post are pretty much what i did. Read the comment by ravenstark - if you mount the filesystem with root explorer there will be no need to execute the commands in red in section 8.
The instructions from the link in your post cover steps 3-7. You still have to download the file to your PC (1), decompile it (2) and upload it back to the phone once you are done with it (8).
For the first step which terminal do you use??
(Free Your Android guide)
adb. If you don't have you can download it from here. It is part of the SDK and probably the most essential tool.
The command is exactly as written there
Aquethys said:
For the first step which terminal do you use??
(Free Your Android guide)
Click to expand...
Click to collapse
What do you mean? If you're using a Windows PC, then just open up a cmd prompt. You should read the guides at the beginning of that page so you know how to setup adb and the apk tool.
The big picture is this. Connect your pc to computer, pull file from phone to PC using adb, modify file on PC, push file back to phone using adb.
For what it's worth, here's a thread I wrote quite a long time ago, some is not applicable for the Glide, but most of it still applies. If you're going to be mucking around in your phone it's best to know how to do a few things first. Read Before Flashing.
When I try and open SDK or AVD (what's the difference :| ) then I just get a quick terminal screen that closes.
It would be appreciated if someone could just create a flashable CWM version >_<
I hate my inexperience @ this. It keeps saying this isn't "adb" isn't recognized, but I've downloaded it! How can I check?!
Aquethys said:
I hate my inexperience @ this. It keeps saying this isn't "adb" isn't recognized, but I've downloaded it! How can I check?!
Click to expand...
Click to collapse
Ok, so what have you done so far?
What should be done. Assuming you're using Windows, install the Android SDK. Once installed, launch the SDK Manager. Then from the list of installable options, choose the Platform Tools and I always like to get the drivers. Once done, you will have this path, CrogramFiles(x86)\Android\android-sdk\platform-tools, now you could add this path to your variables in Windows, which would be easiest, or copy the Platform-tools folder to C:. Then plug in your phone via USB to your computer.
Now, if you added the Path to your variables, just go Start>Run>cmd, and at the cmd prompt type adb devices. If you see a device you're good.
If you copied the Platform-tools folder over, then Start>Run>cmd, and in the cmd prompt type,
C:
then
cd platform-tools
then
adb devices
Beyond that, can't really help, never use apk tool. Good luck.
Aquethys said:
It would be appreciated if someone could just create a flashable CWM version >_<
Click to expand...
Click to collapse
Attached to this post is a CWM update with CRT Screen OFF and battery icon with percent for ROGERS ROM. I'm not sure this will work on AT&T ROM.
Make a backup before applying this update so you can restore if you end up stuck on SAMSUNG logo on boot.
Apologies to the author of the battery mod - I couldn't find his post to link to here...
Aquethys said:
I hate my inexperience @ this. It keeps saying this isn't "adb" isn't recognized, but I've downloaded it! How can I check?!
Click to expand...
Click to collapse
Hopefully the file tcfx44 posted works for you. Either way, I highly suggest you learn how to use adb and some other tools if you plan on flashing your phone in the future. It could prove useful some day.
Will this apply over OsiMood? I really am not sure if I am using the Rogers, but apparently I am because in XDA App it says I927-R and same with a benchmark.
Doesn't work for OsI mood 2.1.30 or whatever version was released today. I don't want to give up the amazing UI and stuff of OSi. I'm working fine though, so doesn't look like the install failed or bricked. Any revisions?
Aquethys said:
Doesn't work for OsI mood 2.1.30 or whatever version was released today. I don't want to give up the amazing UI and stuff of OSi. I'm working fine though, so doesn't look like the install failed or bricked. Any revisions?
Click to expand...
Click to collapse
I changed a bit the CWM mod. Hopefully this one will work. Make a backup of your current ROM - I'm not sure if this mod is compatible with OsiMood.
tcfx44 said:
I changed a bit the CWM mod. Hopefully this one will work. Make a backup of your current ROM - I'm not sure if this mod is compatible with OsiMood.
Click to expand...
Click to collapse
CRT Screen Mod -- Works with Rom manager..
Addition
Default Battery Indicator Changed.. Shows Percentage in steps of 5%..
Anyone having problems powering off and crashing GO Launcher? (then run through media scanner, etc..)
Could you remove the battery mod? I don't like it compared to OSiMood battery >_>
Finally, sorry for demanding so much, could you also put CRT on and ICS animations here?
Sorry!!!!!
Having serious problems turning off. This then affects my underclock.

[For Dev] /dev/block/mmcblk0p5 reverse engineered, boot images customizable

I'll start this thread by posting the IDA .idb file and a linux shell script that dumps out the stock images.
To use:
adb shell
dd if=/dev/block/mmcblk0p5 of=/mnt/sdcard/something
exit
adb pull /mnt/sdcard/something
run the script with: ./get_images.sh something
Anyone want to make some new custom themed ones?
It was only 1 day's work to disassemble the partition. (Example, Exhibit II disassembled here) If you have other dumps made with dd you want me to take a look at, I might be able to help you.
For example, here's a sample of what the original image looked like, and what the new one looks like when my phone boots.
Huh, I did this the first day I got the phone over 2 months ago. It's no hocus pocus.
soo the boot logo cant be change arcoo???
It can be changed yes.
what are the disadvantages arco? and how are youuu legend? xD
Sent from my GT-I8150 using XDA App
arco68 said:
Huh, I did this the first day I got the phone over 2 months ago. It's no hocus pocus.
Click to expand...
Click to collapse
Please post your .idb file so I can take a look.
Oops, sorry. I thought you were talking about the boot partition. My bad.
arco68 said:
Oops, sorry. I thought you were talking about the boot partition. My bad.
Click to expand...
Click to collapse
No worries.
I like reading any & all .idb's; I'll share any I can get my hands on or generate.
After completing my analysis, the only way to get added functions from odin mode (on this phone) would be to exploit it.
It stores the URB on the stack - so sending shellcode should be possible. If you're interested, please reply with your favorite IRC channel. If your name is Mr. Jongshik, you're the author of the code - mind posting the source?
What added functions? Things like diagnostic & debugging tools. The current stuff is very limited.
More EMMCBOOT versions
I have a different EMMCBOOT version on my phone — images are at some different offsets.
I have attached a file with dumps of partitions 5 and 21 (p21 looks like a boot backup, seems to be called /boot/appsbl_bkp in some places). The backup version in p21 looks like yours (at least image offsets are the same); also the md5sum of the first 1554432 bytes of it is 28ebdcd5ba941c1b9b9cd9ad6f6929f5, and exactly this value is in the table at the start of partition 1 — probably this is the version from factory, and the version which is now in p5 came with FOTA updates (initial version was I8150XXKJ1, updated with FOTA first to I8150XXKJ6, then to I8150XXLA2).

[manta][CWM Advanced Edition] PhilZ Touch

Main thread + features + install instructions + dev support
http://forum.xda-developers.com/showthread.php?t=2201860
PhilZ Touch is a CWM Advanced Edition that adds all the features you could ever miss in CWM
It is a well proven recovery for many phones
It also adds a full touch interface a completely configurable GUI
Please give your feedback, what works, and any bug you could encounter
Read the features, and check if you are missing something
To take a screen shot, just slide left
Also, do not forget to read about the powerful aroma file manager integration and double tap shortcut
Download links
Last version can be found here:
Nexus 10 (manta)
http://goo.im/devs/philz_touch/CWM_Advanced_Edition
Click to expand...
Click to collapse
Phil3759 said:
Flashing can brick your phone
This will be removed after people report it is booting fine without bricking their phone
Click to expand...
Click to collapse
But... my phone is across the room and isn't even Android. Maybe I should rip the battery out just to be safe though
This sounds pretty cool though.
espionage724 said:
But... my phone is across the room and isn't even Android. Maybe I should rip the battery out just to be safe though
This sounds pretty cool though.
Click to expand...
Click to collapse
I warn people when I release an untested recovery on a given device
Most noobs tend to forget that flashing is not a safe operation. It can always turn into a nightmare
You can check the list of currently supported devices from main thread here: http://forum.xda-developers.com/showthread.php?t=2201860
And browse into the different device support forums
Till now, the warning never became true except when some people flashed the wrong file in their phone
This warning should keep noobs away from testing it
Ah, yeah I have nothing against the warning, glad it's there even The Nexus 10 is a tablet though, not phone
espionage724 said:
Ah, yeah I have nothing against the warning, glad it's there even The Nexus 10 is a tablet though, not phone
Click to expand...
Click to collapse
LoL
It is a generic copy paste message
Well, will you be the first to give a feedback ?
Phil3759 said:
Well, will you be the first to give a feedback ?
Click to expand...
Click to collapse
Sure
I went to bootloader, erased recovery and flashed this one. Rebooted to recovery.
Battery meter at top-right says -1% (my tablet was on Pogo charge for hours prior to flashing). Get an error about being unable to create brightness sys file. During key test, randomly getting constant presses when holding 3 fingers on screen (probably a touchscreen-related issue).
espionage724 said:
Sure
I went to bootloader, erased recovery and flashed this one. Rebooted to recovery.
Battery meter at top-right says -1% (my tablet was on Pogo charge for hours prior to flashing). Get an error about being unable to create brightness sys file. During key test, randomly getting constant presses when holding 3 fingers on screen (probably a touchscreen-related issue).
Click to expand...
Click to collapse
Thank you for the feedback (reached my daily limit for :good
Brightness:
Do you by case know the path for your device brightness file?
Not a big deal though as I can search / look for it in rc files. I used Samsung usual path, but it seems they used a different one for google devices
Battery:
Will check for the battery path used
Touch
It is supposed to be one finger to use
Interesting though...
Can any one run this in adb shell while in recovery
Or you can use the console terminal in aroma file manager while in recovery
Code:
find /sys/. -name '*bright*' >/sdcard/brightness.txt
Then
Code:
find /sys/. -name '*battery*' >/sdcard/battery.txt
And attach the resulting brightness.txt and battery.txt files on sdcard
About multi touch: i will look to allow only slot 0 to ignore second finger
Sent from my GT-I9100 using Tapatalk 2
Forget it. I found path in source
Sent from my GT-I9100 using Tapatalk 2
Ok, still would need battery info it seems
Code:
find /sys/class/power_supply/ -name '*' >/sdcard/battery.txt
And as described above, attach resulting battery.txt file here
Please do this in recovery, not main system
Sent from my GT-I9100 using Tapatalk 2
Phil3759 said:
Ok, still would need battery info it seems
Code:
find /sys/class/power_supply/. -name '*' >/sdcard/battery.txt
And as described above, attach resulting battery.txt file here
Please do this in recovery, not main system
Click to expand...
Click to collapse
see attached - is this what you're looking for?
Ok,
Can you do this now:
Code:
ls-l /class/power_supply/android-battery >/sdcard/battery.txt
And attach the file
Many thanks
Phil3759 said:
Ok,
Can you do this now:
Code:
ls-l /class/power_supply/android-battery >/sdcard/battery.txt
And attach the file
Many thanks
Click to expand...
Click to collapse
Sorry I'm a bit out of sync with you -- but I've attached the one you asked for just before revising your post.
find /sys/class/power_supply/ -name '*' >/sdcard/battery.txt
Result is attached. I'll run the other command in a moment.
Phil3759 said:
Ok,
Can you do this now:
Code:
ls-l /class/power_supply/android-battery >/sdcard/battery.txt
And attach the file
Many thanks
Click to expand...
Click to collapse
OK -- re-learning linux command line as I go (it's been many years!). Good to wake up that part of the brain again...
Had to modify command above: needed a space between ls and -l, and I'm assuming you want "/sys" up front in the fully qualified file name... Assuming that's all good, the new result is attached as battery2.txt
Let me know if this is what you need, or if anything else is needed. I've got some time to squeeze in a few of these today as needed. Also REALLY looking forward to trying this out on my N10 (and would love to see this on the Galaxy Nexus if ever possible!).
Sorry for the time I make you loose
Was at work, on a hurry, typing using tapatalak mess
I am at home and I could test before posting this. The symlinking is a small issue to first traverse folders wthout going into tons of links
Anyway, here's what should find the needed files
Code:
ls -l /sys/class/power_supply/android-battery/* >/sdcard/battery.txt
Thank you for your patience :good::good:
Phil3759 said:
Sorry for the time I make you loose
Was at work, on a hurry, typing using tapatalak mess
I am at home and I could test before posting this. The symlinking is a small issue to first traverse folders wthout going into tons of links
Anyway, here's what should find the needed files
Code:
ls -l /sys/class/power_supply/android-battery/* >/sdcard/battery.txt
Thank you for your patience :good::good:
Click to expand...
Click to collapse
Try the attached...
jonstrong said:
Try the attached...
Click to expand...
Click to collapse
bingo :good:
Code:
/sys/class/power_supply/android-battery/capacity
Phil3759 said:
bingo :good:
Code:
/sys/class/power_supply/android-battery/capacity
Click to expand...
Click to collapse
Great -- let me know if you need anything else -- I'm home today, and can pull some more if needed.
Does this recovery support USB OTG?
I must be in stupid mode today !!
Have been running Galaxy S3 with PhilZ Touch for some time now .... superb :good:
Got a new Nexus 10 last week and want it on there as well ..... stupid bit coming now
Downloaded latest version from this thread - but it shows as "philz_touch_5.00.7-manta.img"
Not a zip or a tar file for Odin ..... what am I missing from under my nose?
Homer

Categories

Resources