| 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/chromelogin.auth" | 8 XAUTH_FILE="/var/run/chromelogin.auth" |
| 9 SERVER_READY= | 9 SERVER_READY= |
| 10 | 10 |
| (...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 114 | 114 |
| 115 exec /sbin/session_manager --uid=${USER_ID} --login -- \ | 115 exec /sbin/session_manager --uid=${USER_ID} --login -- \ |
| 116 $CHROME --enable-gview \ | 116 $CHROME --enable-gview \ |
| 117 --enable-sync \ | 117 --enable-sync \ |
| 118 --log-level=0 \ | 118 --log-level=0 \ |
| 119 --main-menu-url="http://welcome-cros.appspot.com/menu" \ | 119 --main-menu-url="http://welcome-cros.appspot.com/menu" \ |
| 120 --no-first-run \ | 120 --no-first-run \ |
| 121 --user-data-dir=/home/$USER \ | 121 --user-data-dir=/home/$USER \ |
| 122 --login-profile=user \ | 122 --login-profile=user \ |
| 123 "--cookie-pipe=$COOKIE_PIPE" \ | 123 "--cookie-pipe=$COOKIE_PIPE" \ |
| 124 --enable-login-images \ | |
| 125 "${SKIP_OOBE}" | 124 "${SKIP_OOBE}" |
| OLD | NEW |