view g23m/winebuild.sh @ 48:616f63f3e501 default tip

fixed bug in etm_pkt_send() dealing with max-sized packets: this fix is needed for fc-fsio cpout command to work like it does with Pirelli's firmware (they must have made the same fix)
author Mychaela Falconia <falcon@ivan.Harhan.ORG>
date Fri, 13 Nov 2015 19:11:07 +0000
parents c56a4b0bcf38
children
line wrap: on
line source

#!/bin/sh
# Something in TI's nasty build mechanism (at least when running under wine)
# messes up the tty modes and fails to restore them upon finish.
# This shell script wraps the needed wine invokation (nowhine actually,
# itself a whine-suppressing wrapper around wine) with some stty magic
# to preserve and restore the tty modes.
#
# Also added the TZ=GMT setting: without it Wine produces additional whines
# about not being able to map my Unix timezone to a Weenie equivalent.

if [ -n "$1" ]
then
	config="$1"
else
	config=2092
fi

set -x
tty_mode_save=`stty -g`
TZ=GMT nowhine cmd /c build_${config}.bat
stty "$tty_mode_save"