#!/system/bin/sh
# cpuinfo - Shows CPU Information

cat /proc/cpuinfo
echo 'Maximum CPU Frequency:'
cat /sys/devices/system/cpu/cpu0/cpufreq/scaling_max_freq
echo 'Minimum CPU Frequency:'
cat /sys/devices/system/cpu/cpu0/cpufreq/scaling_min_freq
echo 'CPU Scaling Governor:'
cat /sys/devices/system/cpu/cpu0/cpufreq/scaling_governor
echo 'Up Threshold'
cat /sys/devices/system/cpu/cpu0/cpufreq/ondemand/up_threshold
echo 'Sampling Rate'
cat /sys/devices/system/cpu/cpu0/cpufreq/ondemand/sampling_rate

