| OLD | NEW |
| (Empty) |
| 1 #!/bin/sh | |
| 2 # | |
| 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 | |
| 5 # found in the LICENSE file. | |
| 6 # | |
| 7 # Script to change the channel between dev and beta. | |
| 8 ############################################################################### | |
| 9 # Syntax: | |
| 10 # channel_change $1 where $1 is --beta or --dev | |
| 11 # e.g. to change the channel to beta-channel | |
| 12 # change_channel --beta | |
| 13 ############################################################################### | |
| 14 # MAIN | |
| 15 ############################################################################### | |
| 16 echo | |
| 17 echo "Currently, changing channels requires the use of a recovery device for" | |
| 18 echo "the desired channel. An image may be downloaded, or you may use a" | |
| 19 echo "pre-configured USB recovery device." | |
| 20 echo | |
| 21 echo "A new recovery device may be created at chrome://imageburner" | |
| 22 echo | |
| 23 echo "To enter recovery mode, power down your computer and restart it with the " | |
| 24 echo "recovery button depressed. For older devices, use the BIOS boot menu " | |
| 25 echo "to select the USB recovery device." | |
| 26 echo | |
| 27 exit 1 | |
| OLD | NEW |