summaryrefslogtreecommitdiffstats
path: root/TOOLS/benchmark-gab/variables
diff options
context:
space:
mode:
Diffstat (limited to 'TOOLS/benchmark-gab/variables')
-rwxr-xr-xTOOLS/benchmark-gab/variables17
1 files changed, 17 insertions, 0 deletions
diff --git a/TOOLS/benchmark-gab/variables b/TOOLS/benchmark-gab/variables
new file mode 100755
index 0000000000..482c003744
--- /dev/null
+++ b/TOOLS/benchmark-gab/variables
@@ -0,0 +1,17 @@
+#!/bin/sh
+
+VENDOR="`cat /proc/cpuinfo | grep vendor_id | cut -c 13-`"
+MODEL="`cat /proc/cpuinfo | grep "model name" | cut -c 14-`"
+MHZ="`cat /proc/cpuinfo | grep MHz | cut -c 12-14` MHz"
+MEMORY="`cat /proc/meminfo | grep MemTotal | awk '{print $2}'` Kb"
+BUILD="`echo $VENDOR $MODEL $MHZ | tr [\ ] [_]`"
+VGA="`lspci | grep VGA | cut -c 36-`"
+
+export LOGFILE="`pwd`/$BUILD.logs/log-`date +\"%Y-%m-%d\"`"
+export COMPILEOPTIONS="--enable-runtime-cpudetection"
+
+mkdir $BUILD.logs 2> /dev/null
+
+function wrtlog {
+ echo "[ `date +\"%Y-%m-%d %T\"` ] $*" >> "$LOGFILE"
+}