CPU [Linux/ARM]: Use Hardware field directly

This commit is contained in:
Muhammad Herdiansyah 2019-02-03 18:40:00 +07:00
parent 762d239c32
commit 60d3aa3f10
1 changed files with 3 additions and 7 deletions

View File

@ -1805,13 +1805,9 @@ get_cpu() {
;; ;;
*) *)
cpu="$(awk -F ': | @' '/model name|Processor|^cpu model|chip type|^cpu type/ { cpu="$(awk -F ': | @' \
printf $2; '/model name|Hardware|Processor|^cpu model|chip type|^cpu type/ {
exit printf $2; exit}' "$cpu_file")"
}' "$cpu_file")"
[[ "$cpu" == *"processor rev"* ]] && \
cpu="$(awk -F':' '/Hardware/ {print $2; exit}' "$cpu_file")"
;; ;;
esac esac