mirror of https://github.com/mpv-player/mpv
18 lines
563 B
Plaintext
18 lines
563 B
Plaintext
|
#!/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"
|
||
|
}
|