[REQ] Need someone to check something for me on a STOCK Nexus One - Nexus One General

Anyone out there willing to help me out?
I just someone to run this command with their phone hooked up, USB Debugging ENABLED:
adb shell ls -l -R /sys/class > class_structure_NEXUS_ONE.txt
This will output a text file in whichever directory you run the command from, that will list the hardware capabilities of the phone for me - this would help me IMMENSELY from a development standpoint!
Check out the text file - zero personal / private information will be in there!
Thanks!

No problem.

Rusty! said:
No problem.
Click to expand...
Click to collapse
Awesome. Are you fully stock, or rooted?

also need...
adb shell ls -l -R /sys/devices/platform > platform_structure_NEXUS_ONE.txt
and
adb shell ls -l -R /sys/devices/virtual > virtual_structure_NEXUS_ONE.txt
If you guys don't mind taking a moment

O/S is stock.
I assume you know the 2 commands you just listed are identical, so you're only getting one output

Rusty! said:
O/S is stock.
I assume you know the 2 commands you just listed are identical, so you're only getting one output
Click to expand...
Click to collapse
Yeah, I failed. Editing the post now to show the proper 2nd command. LOL! I need a long directory listing of the virtual directory as well

Related

[REQ] Need someone to check something for me on a STOCK MT3G

Anyone out there willing to help me out?
I just someone to run this command with their phone hooked up, USB Debugging ENABLED:
adb shell ls -l -R /sys/class > class_structure_MT3G.txt
This will output a text file in whichever directory you run the command from, that will list the hardware capabilities of the phone for me - this would help me IMMENSELY from a development standpoint!
Check out the text file - zero personal / private information will be in there!
Thanks!

[REQ] Need someone to check something for me on a STOCK Hero

Anyone out there willing to help me out?
I just someone to run this command with their phone hooked up, USB Debugging ENABLED:
adb shell ls -l -R /sys/class > class_structure_HERO.txt
This will output a text file in whichever directory you run the command from, that will list the hardware capabilities of the phone for me - this would help me IMMENSELY from a development standpoint!
Check out the text file - zero personal / private information will be in there!
Thanks!
ok, here it is...
I think it won't change anything, but I should add that this is a G2 Touch from T-Mobile, so a branded device. It is running the T-Mobile 2.73 build that has been OTA-updated to 3.31 (android 2.1), and it is rooted.
hope this helps you...
Awesome, that's certainly a start!
Would you mind running these, too?
adb shell ls -l -R /sys/devices/platform > platform_structure_HERO_G2_T-Mobile.txt
AND
adb shell ls -l -R /sys/devices/virtual > virtual_structure_HERO_G2_T-Mobile.txt
Thanks!
There's no need to differentiate between Hero and T-Mobile G2 as they are IDENTICAL, and I do mean exactly the same, only different branding on the front cover.
Eddie1506 said:
There's no need to differentiate between Hero and T-Mobile G2 as they are IDENTICAL, and I do mean exactly the same, only different branding on the front cover.
Click to expand...
Click to collapse
Good info!

[REQ] Need someone to check something for me on a STOCK Legend

Anyone out there willing to help me out?
I just someone to run this command with their phone hooked up, USB Debugging ENABLED:
adb shell ls -l -R /sys/class > class_structure_LEGEND.txt
This will output a text file in whichever directory you run the command from, that will list the hardware capabilities of the phone for me - this would help me IMMENSELY from a development standpoint!
Check out the text file - zero personal / private information will be in there!
Thanks!
also need...
adb shell ls -l -R /sys/devices/platform > platform_structure_LEGEND.txt
and
adb shell ls -l -R /sys/devices/virtual > virtual_structure_LEGEND.txt
If you guys don't mind taking a moment
Here it is. FW - rooted original 2.03, will it do?
Definitely! Do you mind running that 2nd command again? (the virtual one)
I didn't mean to put the same command in twice, LOL!
Also, the -R MUST be capitalized! I'm afraid your logs weren't much help without that
Oops Here are the right ones
Firecold said:
Oops Here are the right ones
Click to expand...
Click to collapse
Thanks!! 10char

[REQ] Need someone to check something for me on a STOCK DroidX

Anyone out there willing to help me out?
I just someone to run this command with their phone hooked up, USB Debugging ENABLED:
adb shell ls -l -R /sys/class > class_structure_DROID_X.txt
This will output a text file in whichever directory you run the command from, that will list the hardware capabilities of the phone for me - this would help me IMMENSELY from a development standpoint!
Check out the text file - zero personal / private information will be in there!
Thanks!
also need...
adb shell ls -l -R /sys/devices/platform > platform_structure_DROID_X.txt
and
adb shell ls -l -R /sys/devices/virtual > virtual_structure_DROID_X.txt
If you guys don't mind taking a moment
Here are the files
I've rooted mine and also edited framework-res.apk and services.jar
I noticed you listed the same command twice on your second post, I looked at your other posts and used this instead of the repeated command
Code:
adb shell ls -l -R /sys/devices/virtual > virtual_structure_DROID_X.txt
May I ask what these directory listings are for?
zanix said:
Here are the files
I've rooted mine and also edited framework-res.apk and services.jar
I noticed you listed the same command twice on your second post, I looked at your other posts and used this instead of the repeated command
Code:
adb shell ls -l -R /sys/devices/virtual > virtual_structure_DROID_X.txt
May I ask what these directory listings are for?
Click to expand...
Click to collapse
LOL, thank you!!
Basically, it's a full listing of what does and does not have read / write access, or via which GID has read/write access. Talking directly Linux here, rather than through the Android framework.
Because not every manufacturer is using the same permissions, or even the same file names, this will help immensely making sure that any direct-hardware access I do in developing programs works over a much wider range of devices
Cool, thanks! And you are welcome.

Verified Commands

Can anyone verify the following commands are universal via ADB? I want to make sure they work on multiple phones and not just specific to the S5.
Thanks,
To display phone partitions.....
adb shell su -c ls -l "/dev/block/platform/msm_sdcc.1/by-name > /sdcard/temp.txt" <- you will need to look at the file this creates on /sdcard called sdcard.txt and verify output is correct.
To display phones external storage path.....
adb shell su -c echo $SECONDARY_STORAGE <- This should output directly to the terminal window.
Didact74 said:
Can anyone verify the following commands are universal via ADB? I want to make sure they work on multiple phones and not just specific to the S5.
Thanks,
To display phone partitions.....
adb shell su -c ls -l "/dev/block/platform/msm_sdcc.1/by-name > /sdcard/temp.txt" <- you will need to look at the file this creates on /sdcard called sdcard.txt and verify output is correct.
To display phones external storage path.....
adb shell su -c echo $SECONDARY_STORAGE <- This should output directly to the terminal window.
Click to expand...
Click to collapse
I can verify both commands work. Just tried them.
Misterxtc said:
I can verify both commands work. Just tried them.
Click to expand...
Click to collapse
Thanks. Which device? I was hoping a few on different devices than the S5 could check as well.
I appreciate the feedback!
Didact74 said:
Thanks. Which device? I was hoping a few on different devices than the S5 could check as well.
I appreciate the feedback!
Click to expand...
Click to collapse
VZW S5 Retail

Categories

Resources