OLD | NEW |
1 #!/bin/sh | 1 #!/bin/sh |
2 | 2 |
3 # Copyright (c) 2010 The Chromium OS Authors. All rights reserved. | 3 # Copyright (c) 2010 The Chromium OS Authors. All rights reserved. |
4 # Use of this source code is governed by a BSD-style license that can be | 4 # Use of this source code is governed by a BSD-style license that can be |
5 # found in the LICENSE file. | 5 # found in the LICENSE file. |
6 | 6 |
7 XAUTH=/usr/bin/xauth | 7 XAUTH=/usr/bin/xauth |
8 SERVER_READY= | 8 SERVER_READY= |
9 | 9 |
10 export XAUTH_FILE="/var/run/factory_test.auth" | 10 export XAUTH_FILE="/var/run/factory_test.auth" |
(...skipping 14 matching lines...) Expand all Loading... |
25 done | 25 done |
26 | 26 |
27 export SHELL=/bin/bash | 27 export SHELL=/bin/bash |
28 export DISPLAY=:0.0 | 28 export DISPLAY=:0.0 |
29 export PATH=/bin:/usr/bin:/usr/local/bin:/usr/bin/X11 | 29 export PATH=/bin:/usr/bin:/usr/local/bin:/usr/bin/X11 |
30 export XAUTHORITY=${XAUTH_FILE} | 30 export XAUTHORITY=${XAUTH_FILE} |
31 | 31 |
32 # xset r off | 32 # xset r off |
33 # xmodmap -e "clear Lock" | 33 # xmodmap -e "clear Lock" |
34 | 34 |
35 exec /usr/bin/python KeyboardTest.py | 35 exec /usr/bin/python KeyboardTest.py $* |
OLD | NEW |