| 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 XAUTH_FILE="/var/run/factory_ui.auth" | 8 XAUTH_FILE="/var/run/factory_ui.auth" |
| 9 SERVER_READY= | 9 SERVER_READY= |
| 10 DISPLAY=":0" | 10 DISPLAY=":0" |
| (...skipping 25 matching lines...) Expand all Loading... |
| 36 #if [ -e /usr/bin/ch7036_monitor ] ; then | 36 #if [ -e /usr/bin/ch7036_monitor ] ; then |
| 37 # /sbin/modprobe i2c-dev | 37 # /sbin/modprobe i2c-dev |
| 38 # /usr/bin/ch7036_monitor -v > /var/log/factory_ch7036_monitor.log & | 38 # /usr/bin/ch7036_monitor -v > /var/log/factory_ch7036_monitor.log & |
| 39 #fi | 39 #fi |
| 40 | 40 |
| 41 /sbin/initctl emit factory-ui-started | 41 /sbin/initctl emit factory-ui-started |
| 42 cat /proc/uptime > /tmp/uptime-x-started | 42 cat /proc/uptime > /tmp/uptime-x-started |
| 43 | 43 |
| 44 echo "export DISPLAY=${DISPLAY}" | 44 echo "export DISPLAY=${DISPLAY}" |
| 45 echo "export XAUTHORITY=${XAUTH_FILE}" | 45 echo "export XAUTHORITY=${XAUTH_FILE}" |
| OLD | NEW |