Reputation: 241
Is there an easy way to get the chip name like the MediaTek SoCs (ARMv5 MT1000 ..) of an Android device using adb shell?
I'm trying to run "adb shell cat system/build.prop" but I don't found the chip or SoC name.
Any Help for that!
Upvotes: 7
Views: 16314
Reputation: 558
You will get your soc model number from this you can search it on the Qualcomm product list to find SOC name
adb shell cat /proc/cpuinfo | grep hardware
In some cases you will directly get your product name
Upvotes: 2
Reputation: 133
At least on Samsung S8, I get the SoC name (exynos8895
) by running
adb shell getprop ro.hardware ro.hardware.chipname
Also, I get samsungexynos8895
from
adb shell getprop ro.hardware
Upvotes: 2
Reputation: 3673
To get CPU info of a device via adb try,
adb shell cat /proc/cpuinfo
Upvotes: 5