annotate TOOLS/mpconsole.sh @ 34190:e491bbbddf5d
Fix compilation on Solaris/OpenIndiana where 'uname -m' outputs "i86pc".
This fixes a regression since r33887 and bug 1998.
Patch by Granville Moore, gvm nemesys com
author |
cehoyos |
date |
Sun, 30 Oct 2011 17:40:22 +0000 |
parents |
305dc504c407 |
children |
|
rev |
line source |
27198
|
1 #!/bin/sh
|
|
2 # Script to run mplayer on the console (fbdev/mga_vid/etc) without
|
|
3 # the console text and/or flashing cursor getting in the way.
|
|
4 # Written by Rich Felker.
|
|
5
|
|
6 trap "tput cnorm ; exit 1" SIGQUIT SIGINT EXIT
|
|
7 res=`PATH="$PATH:/usr/sbin" fbset | grep geometry | sed 's/^ *//'`
|
|
8 width=`echo "$res" | cut -d' ' -f2`
|
|
9 height=`echo "$res" | cut -d' ' -f3`
|
|
10 tput civis
|
|
11 clear
|
|
12 mplayer -vo mga -screenw "$width" -screenh "$height" "$@" >/dev/null 2>&1
|