OLD | NEW |
(Empty) | |
| 1 # Copyright (c) 2010 The Chromium OS Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. |
| 4 |
| 5 # description "Recovery installer service" |
| 6 # author "chromium-os-dev@googlegroups.com" |
| 7 # |
| 8 # when dump-boot-stats has run, start up recovery installer. |
| 9 |
| 10 start on started udev |
| 11 |
| 12 # TODO(tgao): replace debug output and auto-shutdown with a friendly UI |
| 13 script |
| 14 # use "sh -x" to output extensive debug output to console for now |
| 15 sh -x /usr/sbin/chromeos-install --recovery --run_as_root |
| 16 # shut down and power off the device (with 1 minute delay) |
| 17 shutdown -h +1 |
| 18 end script |
| 19 console output |
OLD | NEW |