FreeCalypso > hg > tcs211-c139
annotate g23m/winebuild.sh @ 45:e1379873c398
armio.c: GPIO config following Mot's original fw
author | Mychaela Falconia <falcon@ivan.Harhan.ORG> |
---|---|
date | Thu, 12 Nov 2015 02:38:40 +0000 |
parents | c56a4b0bcf38 |
children |
rev | line source |
---|---|
0
509db1a7b7b8
initial import: leo2moko-r1
Space Falcon <falcon@ivan.Harhan.ORG>
parents:
diff
changeset
|
1 #!/bin/sh |
509db1a7b7b8
initial import: leo2moko-r1
Space Falcon <falcon@ivan.Harhan.ORG>
parents:
diff
changeset
|
2 # Something in TI's nasty build mechanism (at least when running under wine) |
509db1a7b7b8
initial import: leo2moko-r1
Space Falcon <falcon@ivan.Harhan.ORG>
parents:
diff
changeset
|
3 # messes up the tty modes and fails to restore them upon finish. |
509db1a7b7b8
initial import: leo2moko-r1
Space Falcon <falcon@ivan.Harhan.ORG>
parents:
diff
changeset
|
4 # This shell script wraps the needed wine invokation (nowhine actually, |
509db1a7b7b8
initial import: leo2moko-r1
Space Falcon <falcon@ivan.Harhan.ORG>
parents:
diff
changeset
|
5 # itself a whine-suppressing wrapper around wine) with some stty magic |
509db1a7b7b8
initial import: leo2moko-r1
Space Falcon <falcon@ivan.Harhan.ORG>
parents:
diff
changeset
|
6 # to preserve and restore the tty modes. |
509db1a7b7b8
initial import: leo2moko-r1
Space Falcon <falcon@ivan.Harhan.ORG>
parents:
diff
changeset
|
7 # |
509db1a7b7b8
initial import: leo2moko-r1
Space Falcon <falcon@ivan.Harhan.ORG>
parents:
diff
changeset
|
8 # Also added the TZ=GMT setting: without it Wine produces additional whines |
509db1a7b7b8
initial import: leo2moko-r1
Space Falcon <falcon@ivan.Harhan.ORG>
parents:
diff
changeset
|
9 # about not being able to map my Unix timezone to a Weenie equivalent. |
509db1a7b7b8
initial import: leo2moko-r1
Space Falcon <falcon@ivan.Harhan.ORG>
parents:
diff
changeset
|
10 |
16
dc9d25ac72a9
initial preparations for building both 2091 and 2092 configs
Space Falcon <falcon@ivan.Harhan.ORG>
parents:
0
diff
changeset
|
11 if [ -n "$1" ] |
dc9d25ac72a9
initial preparations for building both 2091 and 2092 configs
Space Falcon <falcon@ivan.Harhan.ORG>
parents:
0
diff
changeset
|
12 then |
dc9d25ac72a9
initial preparations for building both 2091 and 2092 configs
Space Falcon <falcon@ivan.Harhan.ORG>
parents:
0
diff
changeset
|
13 config="$1" |
dc9d25ac72a9
initial preparations for building both 2091 and 2092 configs
Space Falcon <falcon@ivan.Harhan.ORG>
parents:
0
diff
changeset
|
14 else |
41
c56a4b0bcf38
winebuild.sh, copyout.sh: build MFW version by default
Mychaela Falconia <falcon@ivan.Harhan.ORG>
parents:
16
diff
changeset
|
15 config=2092 |
16
dc9d25ac72a9
initial preparations for building both 2091 and 2092 configs
Space Falcon <falcon@ivan.Harhan.ORG>
parents:
0
diff
changeset
|
16 fi |
dc9d25ac72a9
initial preparations for building both 2091 and 2092 configs
Space Falcon <falcon@ivan.Harhan.ORG>
parents:
0
diff
changeset
|
17 |
0
509db1a7b7b8
initial import: leo2moko-r1
Space Falcon <falcon@ivan.Harhan.ORG>
parents:
diff
changeset
|
18 set -x |
509db1a7b7b8
initial import: leo2moko-r1
Space Falcon <falcon@ivan.Harhan.ORG>
parents:
diff
changeset
|
19 tty_mode_save=`stty -g` |
16
dc9d25ac72a9
initial preparations for building both 2091 and 2092 configs
Space Falcon <falcon@ivan.Harhan.ORG>
parents:
0
diff
changeset
|
20 TZ=GMT nowhine cmd /c build_${config}.bat |
0
509db1a7b7b8
initial import: leo2moko-r1
Space Falcon <falcon@ivan.Harhan.ORG>
parents:
diff
changeset
|
21 stty "$tty_mode_save" |