summaryrefslogtreecommitdiffstats
path: root/TOOLS/benchmark-gab/variables
diff options
context:
space:
mode:
Diffstat (limited to 'TOOLS/benchmark-gab/variables')
-rwxr-xr-xTOOLS/benchmark-gab/variables18
1 files changed, 0 insertions, 18 deletions
diff --git a/TOOLS/benchmark-gab/variables b/TOOLS/benchmark-gab/variables
deleted file mode 100755
index 412b742279..0000000000
--- a/TOOLS/benchmark-gab/variables
+++ /dev/null
@@ -1,18 +0,0 @@
-#!/bin/sh
-export PATH=$PATH:/sbin:/usr/local/bin:/usr/local/sbin:/usr/X11R6/bin
-
-VENDOR="`cat /proc/cpuinfo | grep vendor_id | cut -c 13-`"
-MODEL="`cat /proc/cpuinfo | grep "model name" | cut -c 14-`"
-CPUFLAGS="`cat /proc/cpuinfo | grep flags | cut -c 10-`"
-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 [\ ] [_] | tr [\/] [_]`"
-VGA="`lspci | grep VGA | cut -c 36-`"
-MPBIN="$BUILD/mplayer"
-
-export LOGFILE="`pwd`/log-$BUILD-`date +\"%Y-%m-%d\"`"
-export COMPILEOPTIONS="--enable-runtime-cpudetection"
-
-function wrtlog {
- echo "[ `date +\"%Y-%m-%d %T\"` ] $*" >> "$LOGFILE"
-}