Commit 74f76a43 authored by Georgi Kodinov's avatar Georgi Kodinov

fixed the CPU checking code.

parent f6fc2474
...@@ -44,8 +44,13 @@ check_cpu () { ...@@ -44,8 +44,13 @@ check_cpu () {
model_name=`sysctl -n hw.model` model_name=`sysctl -n hw.model`
;; ;;
Darwin) Darwin)
cpu_family=`uname -p` cpu_family=`sysctl -n machdep.cpu.vendor`
model_name=`machine` model_name=`sysctl -n machdep.cpu.brand_string`
if [ -z "$cpu_family" -o -z "$model_name" ]
then
cpu_family=`uname -p`
model_name=`machine`
fi
;; ;;
*) *)
cpu_family=`uname -m`; cpu_family=`uname -m`;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment