mirror of
https://github.com/mpv-player/mpv
synced 2025-02-04 14:11:53 +00:00
26013a4273
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
18 lines
563 B
Bash
Executable File
18 lines
563 B
Bash
Executable File
#!/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"
|
|
}
|