OLD | NEW |
1 #!/bin/bash | 1 #!/bin/bash |
2 | 2 |
3 # Copyright (c) 2009 The Chromium OS Authors. All rights reserved. | 3 # Copyright (c) 2009 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 # Script to build a bootable keyfob-based chromeos system image from within | 7 # Script to build a bootable keyfob-based chromeos system image from within |
8 # a chromiumos setup. This assumes that all needed packages have been built into | 8 # a chromiumos setup. This assumes that all needed packages have been built into |
9 # the given target's root with binary packages turned on. This script will | 9 # the given target's root with binary packages turned on. This script will |
10 # build the Chrome OS image using only pre-built binary packages. | 10 # build the Chrome OS image using only pre-built binary packages. |
(...skipping 704 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
715 echo "Chromium OS image created as ${PRISTINE_IMAGE_NAME}" | 715 echo "Chromium OS image created as ${PRISTINE_IMAGE_NAME}" |
716 if [ "${FLAGS_withdev}" -eq "${FLAGS_TRUE}" ]; then | 716 if [ "${FLAGS_withdev}" -eq "${FLAGS_TRUE}" ]; then |
717 echo "Developer image created as ${DEVELOPER_IMAGE_NAME}" | 717 echo "Developer image created as ${DEVELOPER_IMAGE_NAME}" |
718 fi | 718 fi |
719 | 719 |
720 print_time_elapsed | 720 print_time_elapsed |
721 | 721 |
722 echo "To copy to USB keyfob, OUTSIDE the chroot, do something like:" | 722 echo "To copy to USB keyfob, OUTSIDE the chroot, do something like:" |
723 echo " ./image_to_usb.sh --from=${OUTSIDE_OUTPUT_DIR} --to=/dev/sdX" | 723 echo " ./image_to_usb.sh --from=${OUTSIDE_OUTPUT_DIR} --to=/dev/sdX" |
724 echo "To convert to VMWare image, OUTSIDE the chroot, do something like:" | 724 echo "To convert to VMWare image, OUTSIDE the chroot, do something like:" |
725 echo " ./image_to_vmware.sh --from=${OUTSIDE_OUTPUT_DIR}" | 725 echo " ./image_to_vm.sh --from=${OUTSIDE_OUTPUT_DIR}" |
726 echo "from the scripts directory where you entered the chroot." | 726 echo "from the scripts directory where you entered the chroot." |
OLD | NEW |