mirror of
https://github.com/mpv-player/mpv
synced 2025-02-19 14:26:57 +00:00
NFS, etc.. Read README, and RTFS before using it. Oh, and feel free to reverse/del, but al3x wanted it. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@7178 b3059339-0415-0410-9bf9-f77b7e298cf2
25 lines
317 B
Bash
Executable File
25 lines
317 B
Bash
Executable File
#!/bin/sh
|
|
|
|
. ./variables
|
|
|
|
rm -f $LOGFILE
|
|
|
|
wrtlog Script version v0.9
|
|
wrtlog CPU: $VENDOR $MODEL $MHZ
|
|
wrtlog MEM: $MEMORY
|
|
wrtlog VGA: $VGA
|
|
|
|
if [ ! -e no_compile ]; then
|
|
./compile
|
|
else
|
|
wrtlog Skipping compilation
|
|
fi
|
|
|
|
if [ ! -e no_benchmark ]; then
|
|
./benchmark
|
|
else
|
|
wrtlog Skipping benchmark
|
|
fi
|
|
|
|
wrtlog Exiting.
|