blob: 27df5957109e94348da8a1264401acd0b43815db [file] [log] [blame]
Bill Richardsonc09b94f2010-03-15 11:40:30 -07001#!/bin/bash
2
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
5# found in the LICENSE file.
6
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
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.
11
12# Load common constants. This should be the first executable line.
13# The path to common.sh should be relative to your script's location.
14. "$(dirname "$0")/common.sh"
15
Will Drewry4a675e12010-07-03 13:35:02 -050016. "$(dirname "$0")/chromeos-common.sh" # for partoffset
17locate_gpt
18
Bill Richardsonc09b94f2010-03-15 11:40:30 -070019# Script must be run inside the chroot.
Don Garrett640a0582010-05-04 16:54:28 -070020restart_in_chroot_if_needed $*
Bill Richardsonc09b94f2010-03-15 11:40:30 -070021
22get_default_board
23
24# Flags.
Don Garrette0020b12010-06-17 15:55:35 -070025DEFINE_string board "${DEFAULT_BOARD}" \
Bill Richardsonc09b94f2010-03-15 11:40:30 -070026 "The board to build an image for."
27DEFINE_string build_root "/build" \
28 "The root location for board sysroots."
29DEFINE_integer build_attempt 1 \
30 "The build attempt for this image build."
31DEFINE_string output_root "${DEFAULT_BUILD_ROOT}/images" \
32 "Directory in which to place image result directories (named by version)"
Don Garrette0020b12010-06-17 15:55:35 -070033DEFINE_boolean replace ${FLAGS_FALSE} \
Bill Richardsonc09b94f2010-03-15 11:40:30 -070034 "Overwrite existing output, if any."
Don Garrette0020b12010-06-17 15:55:35 -070035DEFINE_boolean withdev ${FLAGS_TRUE} \
Bill Richardsonc09b94f2010-03-15 11:40:30 -070036 "Include useful developer friendly utilities in the image."
Don Garrette0020b12010-06-17 15:55:35 -070037DEFINE_boolean installmask ${FLAGS_TRUE} \
Bill Richardsonc09b94f2010-03-15 11:40:30 -070038 "Use INSTALL_MASK to shrink the resulting image."
39DEFINE_integer jobs -1 \
40 "How many packages to build in parallel at maximum."
Don Garrette0020b12010-06-17 15:55:35 -070041DEFINE_boolean statefuldev ${FLAGS_TRUE} \
Chris Sosa4bffb8b2010-04-07 17:23:54 -070042 "Install development packages on stateful partition rather than the rootfs"
Antoine Laboure9e585f2010-04-01 15:57:57 -070043DEFINE_string to "" \
44 "The target image file or device"
Don Garrette0020b12010-06-17 15:55:35 -070045DEFINE_boolean factory_install ${FLAGS_FALSE} \
Tom Wai-Hong Tamf87a3672010-05-17 16:06:33 +080046 "Build a smaller image to overlay the factory install shim on; this argument \
47is also required in image_to_usb."
Tan Gao843b70a2010-08-17 09:41:48 -070048DEFINE_boolean dev_install ${FLAGS_FALSE} \
49 "Build a smaller image to overlay the dev recovery install shim on"
robotboyb75eee32010-04-30 09:51:23 -070050DEFINE_string arm_extra_bootargs "" \
51 "Additional command line options to pass to the ARM kernel."
Zelidrag Hornung1d12c1a2010-06-02 10:20:29 -070052DEFINE_integer rootfs_partition_size 1024 \
Will Drewryd253bad2010-08-17 14:09:41 -050053 "rootfs partition size in MiBs."
Zelidrag Hornung1d12c1a2010-06-02 10:20:29 -070054DEFINE_integer rootfs_size 720 \
Will Drewryd253bad2010-08-17 14:09:41 -050055 "rootfs filesystem size in MiBs."
Will Drewry78992a32010-07-21 14:02:20 -050056# ceil(0.1 * rootfs_size) is a good minimum.
57DEFINE_integer rootfs_hash_pad 8 \
Will Drewryd253bad2010-08-17 14:09:41 -050058 "MiBs reserved at the end of the rootfs image."
Eric Li5cf288f2010-06-28 12:46:26 -070059DEFINE_integer statefulfs_size 1024 \
Will Drewryd253bad2010-08-17 14:09:41 -050060 "stateful filesystem size in MiBs."
David James868d7bb2010-06-24 21:48:14 -070061DEFINE_boolean preserve ${FLAGS_FALSE} \
62 "Attempt to preserve the previous build image if one can be found (unstable, \
63kernel/firmware not updated)"
David James03668642010-07-28 17:08:29 -070064DEFINE_boolean fast ${DEFAULT_FAST} \
65 "Call many emerges in parallel"
Nick Sandersf2dee6c2010-07-01 00:21:32 -070066
Will Drewry4a675e12010-07-03 13:35:02 -050067DEFINE_string usb_disk /dev/sdb3 \
68 "Path syslinux should use to do a usb boot. Default: /dev/sdb3"
69
Will Drewry12f14ce2010-08-17 17:27:16 -050070DEFINE_boolean enable_rootfs_verification ${FLAGS_TRUE} \
Will Drewry1670d482010-07-09 13:08:38 -070071 "Default all bootloaders to use kernel-based root fs integrity checking."
72DEFINE_integer verity_error_behavior 2 \
73 "Kernel verified boot error behavior (0: I/O errors, 1: reboot, 2: nothing) \
Will Drewry4a675e12010-07-03 13:35:02 -050074Default: 2"
Will Drewry1670d482010-07-09 13:08:38 -070075DEFINE_integer verity_depth 1 \
76 "Kernel verified boot hash tree depth. Default: 1"
77DEFINE_integer verity_max_ios 1024 \
Will Drewry4a675e12010-07-03 13:35:02 -050078 "Number of outstanding I/O operations dm-verity caps at. Default: 1024"
Will Drewry1670d482010-07-09 13:08:38 -070079DEFINE_string verity_algorithm "sha1" \
80 "Cryptographic hash algorithm used for kernel vboot. Default : sha1"
Bill Richardsonc09b94f2010-03-15 11:40:30 -070081
Nikita Kostylevc8bba902010-07-28 17:05:26 +040082DEFINE_string oem_customization "" \
Denis Romanov95bdf472010-07-12 22:44:42 +040083 "Path to directory containing OEM partner partition contents"
84
Bill Richardsonc09b94f2010-03-15 11:40:30 -070085# Parse command line.
86FLAGS "$@" || exit 1
87eval set -- "${FLAGS_ARGV}"
88
89# Only now can we die on error. shflags functions leak non-zero error codes,
90# so will die prematurely if 'set -e' is specified before now.
91set -e
92
Don Garrette0020b12010-06-17 15:55:35 -070093if [ -z "${FLAGS_board}" ] ; then
Bill Richardsonc09b94f2010-03-15 11:40:30 -070094 error "--board is required."
95 exit 1
96fi
97
Will Drewry78992a32010-07-21 14:02:20 -050098if [ "$((FLAGS_rootfs_size + FLAGS_rootfs_hash_pad))" -gt \
99 "${FLAGS_rootfs_partition_size}" ] ; then
Will Drewryd253bad2010-08-17 14:09:41 -0500100 error "rootfs ($((FLAGS_rootfs_size + FLAGS_rootfs_hash_pad)) MiB) is \
101bigger than partition (${FLAGS_rootfs_partition_size} MiB)."
Zelidrag Hornung1d12c1a2010-06-02 10:20:29 -0700102 exit 1
103fi
104
Tan Gao843b70a2010-08-17 09:41:48 -0700105# Verify user didn't specify incompatible flags for dev install shim
106if [ ${FLAGS_factory_install} -eq ${FLAGS_TRUE} ] &&
107 [ ${FLAGS_dev_install} -eq ${FLAGS_TRUE} ] ; then
108 error "Incompatible flags: --factory_install and --dev_install cannot be \
109both set to True. Please specify one or none."
110 exit 1
111fi
112
113# Disable --withdev flag when --dev_install is set to True. Otherwise, the
114# dev image produced will be based on dev install shim, rather than a pristine
115# image
116if [ ${FLAGS_withdev} -eq ${FLAGS_TRUE} ] &&
117 [ ${FLAGS_dev_install} -eq ${FLAGS_TRUE} ] ; then
118 info "Incompatible flags: --withdev and --dev_install cannot be both set to \
119True. Reset --withdev to False."
120 FLAGS_withdev=${FLAGS_FALSE}
121fi
122
Nick Sanders8ab729a2010-06-16 03:15:17 -0700123EMERGE_BOARD_CMD="emerge-${FLAGS_board}"
Nick Sandersf2dee6c2010-07-01 00:21:32 -0700124if [ "${FLAGS_fast}" -eq "${FLAGS_TRUE}" ]; then
Nick Sanders8ab729a2010-06-16 03:15:17 -0700125 echo "Using alternate emerge"
Nick Sandersf2dee6c2010-07-01 00:21:32 -0700126 EMERGE_BOARD_CMD="${SCRIPTS_DIR}/parallel_emerge --board=${FLAGS_board}"
Nick Sanders8ab729a2010-06-16 03:15:17 -0700127fi
128
Bill Richardsonc09b94f2010-03-15 11:40:30 -0700129# Determine build version.
130. "${SCRIPTS_DIR}/chromeos_version.sh"
131
132# Use canonical path since some tools (e.g. mount) do not like symlinks.
133# Append build attempt to output directory.
134IMAGE_SUBDIR="${CHROMEOS_VERSION_STRING}-a${FLAGS_build_attempt}"
135OUTPUT_DIR="${FLAGS_output_root}/${FLAGS_board}/${IMAGE_SUBDIR}"
Don Garrett3f41e152010-06-21 14:54:34 -0700136
137OUTSIDE_OUTPUT_DIR="../build/images/${FLAGS_board}/${IMAGE_SUBDIR}"
Chris Sosa9673f3b2010-05-18 13:24:40 -0700138
139# If we are creating a developer image, also create a pristine image with a
140# different name.
141DEVELOPER_IMAGE_NAME=
142PRISTINE_IMAGE_NAME=chromiumos_image.bin
Don Garrette0020b12010-06-17 15:55:35 -0700143if [ "${FLAGS_withdev}" -eq "${FLAGS_TRUE}" ]; then
Chris Sosa9673f3b2010-05-18 13:24:40 -0700144 PRISTINE_IMAGE_NAME=chromiumos_base_image.bin
145 DEVELOPER_IMAGE_NAME=chromiumos_image.bin
146fi
Tan Gaoa40ed442010-06-02 15:45:19 -0700147
Tan Gao843b70a2010-08-17 09:41:48 -0700148# Rename pristine image for dev install shim
149if [ "${FLAGS_dev_install}" -eq "${FLAGS_TRUE}" ]; then
150 PRISTINE_IMAGE_NAME=dev_install_shim.bin
151fi
152
David James868d7bb2010-06-24 21:48:14 -0700153PRISTINE_IMG="${OUTPUT_DIR}/${PRISTINE_IMAGE_NAME}"
154DEVELOPER_IMG="${OUTPUT_DIR}/${DEVELOPER_IMAGE_NAME}"
Bill Richardsonc09b94f2010-03-15 11:40:30 -0700155
156BOARD="${FLAGS_board}"
157BOARD_ROOT="${FLAGS_build_root}/${BOARD}"
158
Don Garrett3f41e152010-06-21 14:54:34 -0700159ROOT_FS_IMG="${OUTPUT_DIR}/rootfs.image"
160ROOT_FS_DIR="${OUTPUT_DIR}/rootfs"
Will Drewry4a675e12010-07-03 13:35:02 -0500161ROOT_FS_HASH="${OUTPUT_DIR}/rootfs.hash"
Don Garrett3f41e152010-06-21 14:54:34 -0700162
163STATEFUL_FS_IMG="${OUTPUT_DIR}/stateful_partition.image"
164STATEFUL_FS_DIR="${OUTPUT_DIR}/stateful_partition"
165
Denis Romanov11061542010-06-29 04:23:53 +0400166OEM_FS_IMG="${OUTPUT_DIR}/partner_partition.image"
167OEM_FS_DIR="${OUTPUT_DIR}/partner_partition"
168
Don Garrett3f41e152010-06-21 14:54:34 -0700169ESP_FS_IMG=${OUTPUT_DIR}/esp.image
170ESP_FS_DIR=${OUTPUT_DIR}/esp
171
Will Drewry7ab698d2010-08-05 13:57:52 -0500172DEVKEYSDIR="/usr/share/vboot/devkeys"
173
Bill Richardsonc09b94f2010-03-15 11:40:30 -0700174LOOP_DEV=
Chris Sosa4bffb8b2010-04-07 17:23:54 -0700175STATEFUL_LOOP_DEV=
Denis Romanov11061542010-06-29 04:23:53 +0400176OEM_LOOP_DEV=
Bill Richardsona81df762010-04-09 08:12:05 -0700177ESP_LOOP_DEV=
Bill Richardsonc09b94f2010-03-15 11:40:30 -0700178
Don Garrett3f41e152010-06-21 14:54:34 -0700179# ${DEV_IMAGE_ROOT} specifies the location of where developer packages will
180# be installed on the stateful dir. On a Chromium OS system, this will
181# translate to /usr/local.
182DEV_IMAGE_ROOT="${STATEFUL_FS_DIR}/dev_image"
183
Bill Richardsonc09b94f2010-03-15 11:40:30 -0700184# What cross-build are we targeting?
185. "${BOARD_ROOT}/etc/make.conf.board_setup"
186LIBC_VERSION=${LIBC_VERSION:-"2.10.1-r1"}
187
Don Garrett3f41e152010-06-21 14:54:34 -0700188INSTALL_MASK=""
189if [[ ${FLAGS_installmask} -eq ${FLAGS_TRUE} ]] ; then
190 INSTALL_MASK="${DEFAULT_INSTALL_MASK}"
191fi
192
193# Reduce the size of factory install shim.
194# TODO: Build a separated ebuild for the factory install shim to reduce size.
Tan Gao843b70a2010-08-17 09:41:48 -0700195if [ ${FLAGS_factory_install} -eq ${FLAGS_TRUE} ] ||
196 [ ${FLAGS_dev_install} -eq ${FLAGS_TRUE} ] ; then
Don Garrett3f41e152010-06-21 14:54:34 -0700197 INSTALL_MASK="${INSTALL_MASK} ${FACTORY_INSTALL_MASK}"
198fi
199
David Jamesfd7403a2010-07-09 12:00:17 -0700200if [[ ${FLAGS_jobs} -ne -1 ]]; then
201 EMERGE_JOBS="--jobs=${FLAGS_jobs}"
202fi
203
Bill Richardsonc09b94f2010-03-15 11:40:30 -0700204# Figure out ARCH from the given toolchain.
205# TODO: Move to common.sh as a function after scripts are switched over.
Don Garrette0020b12010-06-17 15:55:35 -0700206TC_ARCH=$(echo "${CHOST}" | awk -F'-' '{ print $1 }')
207case "${TC_ARCH}" in
Bill Richardsonc09b94f2010-03-15 11:40:30 -0700208 arm*)
209 ARCH="arm"
210 ;;
211 *86)
212 ARCH="x86"
213 ;;
214 *)
Don Garrette0020b12010-06-17 15:55:35 -0700215 error "Unable to determine ARCH from toolchain: ${CHOST}"
Bill Richardsonc09b94f2010-03-15 11:40:30 -0700216 exit 1
217esac
218
Will Drewry12f14ce2010-08-17 17:27:16 -0500219if [[ ${FLAGS_enable_rootfs_verification} -eq ${FLAGS_TRUE} ]]; then
220 enable_rootfs_verification_flag="--enable_rootfs_verification"
221 # Comment out this section if you need to start testing vboot on arm.
222 if [[ "${ARCH}" = "arm" ]]; then
223 warn "ARM does not yet support --enable_rootfs_verification"
224 warn "Root filesystem verification has been disabled."
225 enable_rootfs_verification_flag=
226 FLAGS_enable_rootfs_verification_flag=${FLAGS_FALSE}
227 fi
228fi
229
Bill Richardsonc09b94f2010-03-15 11:40:30 -0700230# Hack to fix bug where x86_64 CHOST line gets incorrectly added.
231# ToDo(msb): remove this hack.
232PACKAGES_FILE="${BOARD_ROOT}/packages/Packages"
233sudo sed -e "s/CHOST: x86_64-pc-linux-gnu//" -i "${PACKAGES_FILE}"
234
235# Handle existing directory.
Don Garrette0020b12010-06-17 15:55:35 -0700236if [[ -e "${OUTPUT_DIR}" ]]; then
237 if [[ ${FLAGS_replace} -eq ${FLAGS_TRUE} ]]; then
238 sudo rm -rf "${OUTPUT_DIR}"
Bill Richardsonc09b94f2010-03-15 11:40:30 -0700239 else
Don Garrette0020b12010-06-17 15:55:35 -0700240 echo "Directory ${OUTPUT_DIR} already exists."
Bill Richardsonc09b94f2010-03-15 11:40:30 -0700241 echo "Use --build_attempt option to specify an unused attempt."
242 echo "Or use --replace if you want to overwrite this directory."
243 exit 1
244 fi
245fi
246
David James868d7bb2010-06-24 21:48:14 -0700247# Find previous build, if any...
248PREVIOUS_DIR=$($SCRIPTS_DIR/get_latest_image.sh --board="$BOARD")
249
Bill Richardsonc09b94f2010-03-15 11:40:30 -0700250cleanup_rootfs_loop() {
Don Garrette0020b12010-06-17 15:55:35 -0700251 sudo umount -d "${ROOT_FS_DIR}"
Bill Richardsonc09b94f2010-03-15 11:40:30 -0700252}
253
254cleanup_stateful_fs_loop() {
Chris Sosa4bffb8b2010-04-07 17:23:54 -0700255 sudo umount "${ROOT_FS_DIR}/usr/local"
256 sudo umount "${ROOT_FS_DIR}/var"
Don Garrett3f41e152010-06-21 14:54:34 -0700257 sudo umount -d "${STATEFUL_FS_DIR}"
Bill Richardsonc09b94f2010-03-15 11:40:30 -0700258}
259
Denis Romanov11061542010-06-29 04:23:53 +0400260cleanup_oem_fs_loop() {
261 sudo umount -d "${OEM_FS_DIR}"
262}
263
264
Bill Richardson8b3bd102010-04-06 15:00:10 -0700265cleanup_esp_loop() {
Don Garrett3f41e152010-06-21 14:54:34 -0700266 sudo umount -d "${ESP_FS_DIR}"
Bill Richardson8b3bd102010-04-06 15:00:10 -0700267}
268
Bill Richardsonc09b94f2010-03-15 11:40:30 -0700269cleanup() {
270 # Disable die on error.
271 set +e
272
Don Garrette0020b12010-06-17 15:55:35 -0700273 if [[ -n "${STATEFUL_LOOP_DEV}" ]]; then
Bill Richardsonc09b94f2010-03-15 11:40:30 -0700274 cleanup_stateful_fs_loop
Will Drewry4a675e12010-07-03 13:35:02 -0500275 STATEFUL_LOOP_DEV=
Bill Richardsonc09b94f2010-03-15 11:40:30 -0700276 fi
277
Denis Romanov11061542010-06-29 04:23:53 +0400278 if [[ -n "${OEM_LOOP_DEV}" ]]; then
279 cleanup_oem_fs_loop
280 fi
281
Don Garrette0020b12010-06-17 15:55:35 -0700282 if [[ -n "${LOOP_DEV}" ]]; then
Bill Richardsonc09b94f2010-03-15 11:40:30 -0700283 cleanup_rootfs_loop
Will Drewry4a675e12010-07-03 13:35:02 -0500284 LOOP_DEV=
Bill Richardsonc09b94f2010-03-15 11:40:30 -0700285 fi
286
Don Garrette0020b12010-06-17 15:55:35 -0700287 if [[ -n "${ESP_LOOP_DEV}" ]]; then
Bill Richardson8b3bd102010-04-06 15:00:10 -0700288 cleanup_esp_loop
Will Drewry4a675e12010-07-03 13:35:02 -0500289 ESP_LOOP_DEV=
Bill Richardson8b3bd102010-04-06 15:00:10 -0700290 fi
291
Bill Richardsonc09b94f2010-03-15 11:40:30 -0700292 # Turn die on error back on.
293 set -e
294}
295
Chris Sosabde8c1b2010-04-29 14:02:35 -0700296delete_prompt() {
297 echo "An error occurred in your build so your latest output directory" \
298 "is invalid."
299 read -p "Would you like to delete the output directory (y/N)? " SURE
Don Garrette0020b12010-06-17 15:55:35 -0700300 SURE="${SURE:0:1}" # Get just the first character.
Chris Sosabde8c1b2010-04-29 14:02:35 -0700301 if [ "${SURE}" == "y" ] ; then
Don Garrette0020b12010-06-17 15:55:35 -0700302 sudo rm -rf "${OUTPUT_DIR}"
303 echo "Deleted ${OUTPUT_DIR}"
Chris Sosabde8c1b2010-04-29 14:02:35 -0700304 else
Don Garrette0020b12010-06-17 15:55:35 -0700305 echo "Not deleting ${OUTPUT_DIR}. Note dev server updates will not work" \
Chris Sosabde8c1b2010-04-29 14:02:35 -0700306 "until you successfully build another image or delete this directory"
307 fi
308}
309
Chris Sosa9673f3b2010-05-18 13:24:40 -0700310# $1 - Directory where developer rootfs is mounted.
311# $2 - Directory where developer stateful_partition is mounted.
Will Drewry4a675e12010-07-03 13:35:02 -0500312# $3 - Directory where the ESP partition is mounted.
Don Garrett3f41e152010-06-21 14:54:34 -0700313mount_gpt_cleanup() {
Will Drewry4a675e12010-07-03 13:35:02 -0500314 local rootfs="${1-$ROOT_FS_DIR}"
315 local statefs="${2-$STATEFUL_FS_DIR}"
316 local espfs="${3-$ESP_FS_DIR}"
317 "${SCRIPTS_DIR}/mount_gpt_image.sh" \
318 -u -r "${rootfs}" -s "${statefs}" -e "${espfs}"
Chris Sosa9673f3b2010-05-18 13:24:40 -0700319 delete_prompt
320}
321
Will Drewry7ab698d2010-08-05 13:57:52 -0500322# Takes no arguments and populates the configuration for
323# cros_make_image_bootable.
324create_boot_desc() {
325 cat <<EOF > ${OUTPUT_DIR}/boot.desc
326 --arch="${ARCH}"
327 --output_dir="${OUTPUT_DIR}"
328 --rootfs_size="${FLAGS_rootfs_size}"
329 --rootfs_hash_pad="${FLAGS_rootfs_hash_pad}"
330 --rootfs_hash="${ROOT_FS_HASH}"
331 --rootfs_mountpoint="${ROOT_FS_DIR}"
332 --statefulfs_mountpoint="${STATEFUL_FS_DIR}"
333 --espfs_mountpoint="${ESP_FS_DIR}"
334 --verity_error_behavior="${FLAGS_verity_error_behavior}"
335 --verity_depth="${FLAGS_verity_depth}"
336 --verity_max_ios="${FLAGS_verity_max_ios}"
337 --verity_algorithm="${FLAGS_verity_algorithm}"
338 --keys_dir="${DEVKEYSDIR}"
339 --usb_disk="${FLAGS_usb_disk}"
Will Drewry6793ba72010-08-05 16:17:46 -0500340 --arm_extra_bootargs="${FLAGS_arm_extra_bootargs}"
Will Drewry7ab698d2010-08-05 13:57:52 -0500341 --nocleanup_dirs
342 ${enable_rootfs_verification_flag}
343EOF
Will Drewry4a675e12010-07-03 13:35:02 -0500344}
345
Don Garrett3f41e152010-06-21 14:54:34 -0700346# Modifies an existing image to add development packages
347update_dev_packages() {
348 local image_name=$1
Chris Sosa9673f3b2010-05-18 13:24:40 -0700349
Don Garrett3f41e152010-06-21 14:54:34 -0700350 echo "Adding developer packages to ${image_name}"
Chris Sosa9673f3b2010-05-18 13:24:40 -0700351
Will Drewry4a675e12010-07-03 13:35:02 -0500352 trap "mount_gpt_cleanup" EXIT
Tan Gaoa40ed442010-06-02 15:45:19 -0700353
Don Garrette0020b12010-06-17 15:55:35 -0700354 ${SCRIPTS_DIR}/mount_gpt_image.sh --from "${OUTPUT_DIR}" \
David James868d7bb2010-06-24 21:48:14 -0700355 --image "${image_name}" -r "${ROOT_FS_DIR}" \
Will Drewry4a675e12010-07-03 13:35:02 -0500356 -s "${STATEFUL_FS_DIR}" -e "${ESP_FS_DIR}"
Chris Sosa9673f3b2010-05-18 13:24:40 -0700357
Don Garrett3f41e152010-06-21 14:54:34 -0700358 # Determine the root dir for developer packages.
359 local root_dev_dir="${ROOT_FS_DIR}"
360 [ ${FLAGS_statefuldev} -eq ${FLAGS_TRUE} ] && \
361 root_dev_dir="${ROOT_FS_DIR}/usr/local"
Chris Sosa9673f3b2010-05-18 13:24:40 -0700362
Don Garrett3f41e152010-06-21 14:54:34 -0700363 # Install developer packages described in chromeos-dev.
364 sudo INSTALL_MASK="${INSTALL_MASK}" ${EMERGE_BOARD_CMD} \
365 --root="${root_dev_dir}" --root-deps=rdeps \
David James868d7bb2010-06-24 21:48:14 -0700366 --usepkg -uDNv chromeos-dev ${EMERGE_JOBS}
367
368 if [[ $FLAGS_preserve -eq ${FLAGS_TRUE} ]] ; then
369 # Clean out unused packages
370 sudo INSTALL_MASK="${INSTALL_MASK}" ${EMERGE_BOARD_CMD} \
371 --root="${ROOT_FS_DIR}" --root-deps=rdeps \
372 --usepkg --depclean ${EMERGE_JOBS}
373 fi
Chris Sosa9673f3b2010-05-18 13:24:40 -0700374
375 # Re-run ldconfig to fix /etc/ldconfig.so.cache.
Don Garrett3f41e152010-06-21 14:54:34 -0700376 sudo /sbin/ldconfig -r "${ROOT_FS_DIR}"
Chris Sosa9673f3b2010-05-18 13:24:40 -0700377
378 # Mark the image as a developer image (input to chromeos_startup).
Don Garrett3f41e152010-06-21 14:54:34 -0700379 sudo mkdir -p "${ROOT_FS_DIR}/root"
380 sudo touch "${ROOT_FS_DIR}/root/.dev_mode"
Chris Sosa9673f3b2010-05-18 13:24:40 -0700381
Don Garrett3f41e152010-06-21 14:54:34 -0700382 # Additional changes to developer image.
Chris Sosa9673f3b2010-05-18 13:24:40 -0700383
Ken Mixter13347882010-08-12 16:51:52 -0700384 # Leave core files for developers to inspect.
Ken Mixter0d115632010-08-13 15:51:07 -0700385 sudo touch "${ROOT_FS_DIR}/root/.leave_core"
Ken Mixter13347882010-08-12 16:51:52 -0700386
Don Garrett3f41e152010-06-21 14:54:34 -0700387 # The ldd tool is a useful shell script but lives in glibc; just copy it.
388 sudo cp -a "$(which ldd)" "${root_dev_dir}/usr/bin"
Chris Sosa9673f3b2010-05-18 13:24:40 -0700389
Don Garrett3f41e152010-06-21 14:54:34 -0700390 # If vim is installed, then a vi symlink would probably help.
391 if [[ -x "${ROOT_FS_DIR}/usr/local/bin/vim" ]]; then
392 sudo ln -sf vim "${ROOT_FS_DIR}/usr/local/bin/vi"
Girts Folkmanis7a8a8382010-05-18 22:52:25 -0700393 fi
Chris Sosa9673f3b2010-05-18 13:24:40 -0700394
Tammo Spalinkcfc0c642010-07-07 10:51:21 +0800395 # If pygtk is installed in stateful-dev, then install a path.
396 if [[ -d \
397 "${ROOT_FS_DIR}/usr/local/lib/python2.6/site-packages/gtk-2.0" ]]; then
398 sudo bash -c "\
399 echo gtk-2.0 > \
400 ${ROOT_FS_DIR}/usr/local/lib/python2.6/site-packages/pygtk.pth"
401 fi
402
Don Garrett3f41e152010-06-21 14:54:34 -0700403 # Check that the image has been correctly created. Only do it if not
Tan Gao843b70a2010-08-17 09:41:48 -0700404 # building a factory install image and not a dev install shim, as the
405 # INSTALL_MASK for it will make test_image fail.
406 if [ ${FLAGS_factory_install} -eq ${FLAGS_FALSE} ] &&
407 [ ${FLAGS_dev_install} -eq ${FLAGS_FALSE} ] ; then
Don Garrett3f41e152010-06-21 14:54:34 -0700408 "${SCRIPTS_DIR}/test_image" \
409 --root="${ROOT_FS_DIR}" \
410 --target="${ARCH}"
411 fi
412 echo "Developer image built and stored at ${image_name}"
413
Chris Sosa9673f3b2010-05-18 13:24:40 -0700414 trap - EXIT
David James868d7bb2010-06-24 21:48:14 -0700415 ${SCRIPTS_DIR}/mount_gpt_image.sh -u -r "${ROOT_FS_DIR}" \
Will Drewry4a675e12010-07-03 13:35:02 -0500416 -s "${STATEFUL_FS_DIR}" -e "${ESP_FS_DIR}"
David James868d7bb2010-06-24 21:48:14 -0700417}
418
419# Update the base package on an existing image.
420update_base_packages() {
421 local image_name=$1
422
423 echo "Updating base packages on ${image_name}"
424
425 # Create stateful partition of the same size as the rootfs.
Will Drewry4a675e12010-07-03 13:35:02 -0500426 trap "mount_gpt_cleanup" EXIT
David James868d7bb2010-06-24 21:48:14 -0700427
428 ${SCRIPTS_DIR}/mount_gpt_image.sh --from "${OUTPUT_DIR}" \
429 --image "${image_name}" -r "${ROOT_FS_DIR}" \
Will Drewry4a675e12010-07-03 13:35:02 -0500430 -s "${STATEFUL_FS_DIR}" -e "${ESP_FS_DIR}"
David James868d7bb2010-06-24 21:48:14 -0700431
432 # Emerge updated packages, exactly like when creating base image
433 sudo INSTALL_MASK="${INSTALL_MASK}" ${EMERGE_BOARD_CMD} \
434 --root="${ROOT_FS_DIR}" --root-deps=rdeps \
435 --usepkg -uDNv chromeos ${EMERGE_JOBS}
436
437 # Clean out unused packages
438 sudo INSTALL_MASK="${INSTALL_MASK}" ${EMERGE_BOARD_CMD} \
439 --root="${ROOT_FS_DIR}" --root-deps=rdeps \
440 --usepkg --depclean ${EMERGE_JOBS}
441
442 trap - EXIT
443 ${SCRIPTS_DIR}/mount_gpt_image.sh -u -r "${ROOT_FS_DIR}" \
Will Drewry4a675e12010-07-03 13:35:02 -0500444 -s "${STATEFUL_FS_DIR}" -e "${ESP_FS_DIR}"
Chris Sosa9673f3b2010-05-18 13:24:40 -0700445}
446
Don Garrett3f41e152010-06-21 14:54:34 -0700447create_base_image() {
David James868d7bb2010-06-24 21:48:14 -0700448 local image_name=$1
Bill Richardsonc09b94f2010-03-15 11:40:30 -0700449
Don Garrett3f41e152010-06-21 14:54:34 -0700450 trap "cleanup && delete_prompt" EXIT
Chris Sosa4bffb8b2010-04-07 17:23:54 -0700451
David James868d7bb2010-06-24 21:48:14 -0700452 UUID=$(uuidgen)
453
Don Garrett3f41e152010-06-21 14:54:34 -0700454 # Create and format the root file system.
455
456 # Check for loop device before creating image.
457 LOOP_DEV=$(sudo losetup -f)
458 if [ -z "${LOOP_DEV}" ] ; then
459 echo "No free loop device. Free up a loop device or reboot. exiting. "
460 exit 1
461 fi
462
Will Drewryd253bad2010-08-17 14:09:41 -0500463 # Create root file system disk image.
464 ROOT_SIZE_BYTES=$((1024 * 1024 * ${FLAGS_rootfs_size}))
Don Garrett3f41e152010-06-21 14:54:34 -0700465
Will Drewry9926ee22010-07-21 15:11:10 -0500466 # Pad out for the hash tree.
Will Drewry78992a32010-07-21 14:02:20 -0500467 ROOT_HASH_PAD=$((FLAGS_rootfs_hash_pad * 1024 * 1024))
468 info "Padding the rootfs image by ${ROOT_HASH_PAD} bytes for hash data"
Will Drewry9926ee22010-07-21 15:11:10 -0500469
Will Drewry78992a32010-07-21 14:02:20 -0500470 dd if=/dev/zero of="${ROOT_FS_IMG}" bs=1 count=1 \
471 seek=$((ROOT_SIZE_BYTES + ROOT_HASH_PAD - 1))
Will Drewry9926ee22010-07-21 15:11:10 -0500472 sudo losetup "${LOOP_DEV}" "${ROOT_FS_IMG}"
473 # Specify a block size and block count to avoid using the hash pad.
474 sudo mkfs.ext3 -b 4096 "${LOOP_DEV}" "$((ROOT_SIZE_BYTES / 4096))"
Will Drewry78992a32010-07-21 14:02:20 -0500475
Don Garrett3f41e152010-06-21 14:54:34 -0700476 # Tune and mount rootfs.
Will Drewry78992a32010-07-21 14:02:20 -0500477 # TODO(wad) rename the disk label to match the GPT since we
478 # can't change it later.
Don Garrett3f41e152010-06-21 14:54:34 -0700479 DISK_LABEL="C-KEYFOB"
480 sudo tune2fs -L "${DISK_LABEL}" -U "${UUID}" -c 0 -i 0 "${LOOP_DEV}"
481 sudo mount "${LOOP_DEV}" "${ROOT_FS_DIR}"
482
483 # Create stateful partition of the same size as the rootfs.
484 STATEFUL_LOOP_DEV=$(sudo losetup -f)
485 if [ -z "${STATEFUL_LOOP_DEV}" ] ; then
486 echo "No free loop device. Free up a loop device or reboot. exiting. "
487 exit 1
488 fi
Eric Li5cf288f2010-06-28 12:46:26 -0700489 STATEFUL_SIZE_BYTES=$((1024 * 1024 * ${FLAGS_statefulfs_size}))
490 dd if=/dev/zero of="${STATEFUL_FS_IMG}" bs=1 count=1 \
491 seek=$((STATEFUL_SIZE_BYTES - 1))
Denis Romanov11061542010-06-29 04:23:53 +0400492
493 # Tune and mount the stateful partition.
494 UUID=$(uuidgen)
495 DISK_LABEL="C-STATE"
Don Garrett3f41e152010-06-21 14:54:34 -0700496 sudo losetup "${STATEFUL_LOOP_DEV}" "${STATEFUL_FS_IMG}"
497 sudo mkfs.ext3 "${STATEFUL_LOOP_DEV}"
Denis Romanov11061542010-06-29 04:23:53 +0400498 sudo tune2fs -L "${DISK_LABEL}" -U "${UUID}" -c 0 -i 0 "${STATEFUL_LOOP_DEV}"
Don Garrett3f41e152010-06-21 14:54:34 -0700499 sudo mount "${STATEFUL_LOOP_DEV}" "${STATEFUL_FS_DIR}"
500
Denis Romanov11061542010-06-29 04:23:53 +0400501 # Create OEM partner partition.
502 OEM_LOOP_DEV=$(sudo losetup -f)
503 if [ -z "${OEM_LOOP_DEV}" ] ; then
504 echo "No free loop device. Free up a loop device or reboot. exiting. "
505 exit 1
506 fi
507 OEM_SIZE_BYTES=$((1024 * 1024 * 16))
508 dd if=/dev/zero of="${OEM_FS_IMG}" bs=1 count=1 seek=$((OEM_SIZE_BYTES - 1))
509
510 # Tune and mount OEM partner partition.
511 UUID=$(uuidgen)
512 DISK_LABEL="C-OEM"
513 sudo losetup "${OEM_LOOP_DEV}" "${OEM_FS_IMG}"
514 sudo mkfs.ext3 "${OEM_LOOP_DEV}"
515 sudo tune2fs -L "${DISK_LABEL}" -U "${UUID}" -c 0 -i 0 "${OEM_LOOP_DEV}"
516 sudo mount "${OEM_LOOP_DEV}" "${OEM_FS_DIR}"
517
Denis Romanov95bdf472010-07-12 22:44:42 +0400518 # Populate OEM partner partition.
Nikita Kostylevc8bba902010-07-28 17:05:26 +0400519 if [ ! -z "${FLAGS_oem_customization}" ]; then
Denis Romanov95bdf472010-07-12 22:44:42 +0400520 if [ ! -d ${FLAGS_oem_customization} ]; then
521 echo "Specified OEM content directory does not exist. exiting."
522 exit 1
523 fi
524 for ITEM in `ls -A ${FLAGS_oem_customization}`
525 do sudo cp -a "${FLAGS_oem_customization}/$ITEM" "${OEM_FS_DIR}"
526 done
527 sudo find "${OEM_FS_DIR}" -type d -exec chmod 755 "{}" \;
528 sudo find "${OEM_FS_DIR}" -type f -exec chmod 644 "{}" \;
529 sudo chown -R root:root "${OEM_FS_DIR}"
Nikita Kostylevc8bba902010-07-28 17:05:26 +0400530 else
531 echo "Empty OEM partition: OEM customizations will not be applied."
Denis Romanov95bdf472010-07-12 22:44:42 +0400532 fi
533
Don Garrett3f41e152010-06-21 14:54:34 -0700534 # -- Install packages into the root file system --
Bill Richardsonc09b94f2010-03-15 11:40:30 -0700535
Don Garrett3f41e152010-06-21 14:54:34 -0700536 # We need to install libc manually from the cross toolchain.
537 # TODO: Improve this? We only want libc and not the whole toolchain.
538 PKGDIR="/var/lib/portage/pkgs/cross/"
539 sudo tar jxvpf \
540 "${PKGDIR}/${CHOST}/cross-${CHOST}"/glibc-${LIBC_VERSION}.tbz2 \
541 -C "${ROOT_FS_DIR}" --strip-components=3 \
542 --exclude=usr/include --exclude=sys-include --exclude=*.a --exclude=*.o
Bill Richardsonc09b94f2010-03-15 11:40:30 -0700543
Don Garrett3f41e152010-06-21 14:54:34 -0700544 # We need to install libstdc++ manually from the cross toolchain.
545 # TODO: Figure out a better way of doing this?
546 sudo cp -a "${BOARD_ROOT}"/lib/libgcc_s.so* "${ROOT_FS_DIR}/lib"
547 sudo cp -a "${BOARD_ROOT}"/usr/lib/libstdc++.so* "${ROOT_FS_DIR}/usr/lib"
Bill Richardsonc09b94f2010-03-15 11:40:30 -0700548
Don Garrett3f41e152010-06-21 14:54:34 -0700549 # Prepare stateful partition with some pre-created directories.
550 sudo mkdir -p "${DEV_IMAGE_ROOT}"
551 sudo mkdir -p "${STATEFUL_FS_DIR}/var"
Bill Richardsonc09b94f2010-03-15 11:40:30 -0700552
Don Garrett3f41e152010-06-21 14:54:34 -0700553 # Create symlinks so that /usr/local/usr based directories are symlinked to
554 # /usr/local/ directories e.g. /usr/local/usr/bin -> /usr/local/bin, etc.
555 setup_symlinks_on_root "${DEV_IMAGE_ROOT}" "${STATEFUL_FS_DIR}/var" \
556 "${STATEFUL_FS_DIR}"
Tom Wai-Hong Tamf87a3672010-05-17 16:06:33 +0800557
Don Garrett3f41e152010-06-21 14:54:34 -0700558 # Perform binding rather than symlinking because directories must exist
559 # on rootfs so that we can bind at run-time since rootfs is read-only.
560 echo "Binding directories from stateful partition onto the rootfs"
561 sudo mkdir -p "${ROOT_FS_DIR}/usr/local"
562 sudo mount --bind "${DEV_IMAGE_ROOT}" "${ROOT_FS_DIR}/usr/local"
563 sudo mkdir -p "${ROOT_FS_DIR}/var"
564 sudo mount --bind "${STATEFUL_FS_DIR}/var" "${ROOT_FS_DIR}/var"
565 sudo mkdir -p "${ROOT_FS_DIR}/dev"
Bill Richardsonc09b94f2010-03-15 11:40:30 -0700566
Mandeep Singh Baines3dfa8522010-06-24 15:00:49 -0700567 # We "emerge --root=${ROOT_FS_DIR} --root-deps=rdeps --usepkg" all of the
Don Garrett3f41e152010-06-21 14:54:34 -0700568 # runtime packages for chrome os. This builds up a chrome os image from
569 # binary packages with runtime dependencies only. We use INSTALL_MASK to
570 # trim the image size as much as possible.
571 sudo INSTALL_MASK="${INSTALL_MASK}" ${EMERGE_BOARD_CMD} \
572 --root="${ROOT_FS_DIR}" --root-deps=rdeps \
Mandeep Singh Baines3dfa8522010-06-24 15:00:49 -0700573 --usepkg chromeos ${EMERGE_JOBS}
Bill Richardson8b3bd102010-04-06 15:00:10 -0700574
Will Drewry4a675e12010-07-03 13:35:02 -0500575 # Perform any customizations on the root file system that are needed.
576 "${SCRIPTS_DIR}/customize_rootfs" \
577 --root="${ROOT_FS_DIR}" \
578 --target="${ARCH}" \
579 --board="${BOARD}"
Bill Richardson8b3bd102010-04-06 15:00:10 -0700580
Will Drewry1ee156f2010-07-03 13:27:19 -0500581 # Populates the root filesystem with legacy bootloader templates
582 # appropriate for the platform. The autoupdater and installer will
583 # use those templates to update the legacy boot partition (12/ESP)
584 # on update.
585 # (This script does not populate vmlinuz.A and .B needed by syslinux.)
Will Drewry1670d482010-07-09 13:08:38 -0700586 enable_rootfs_verification=
587 if [[ ${FLAGS_enable_rootfs_verification} -eq ${FLAGS_TRUE} ]]; then
588 enable_rootfs_verification="--enable_rootfs_verification"
589 fi
590
Will Drewry1ee156f2010-07-03 13:27:19 -0500591 ${SCRIPTS_DIR}/create_legacy_bootloader_templates.sh \
592 --arch=${ARCH} \
593 --to="${ROOT_FS_DIR}"/boot \
594 --install \
Will Drewry1670d482010-07-09 13:08:38 -0700595 ${enable_rootfs_verification}
Bill Richardson9c5e5ec2010-05-14 17:00:21 -0700596
Tan Gao843b70a2010-08-17 09:41:48 -0700597 # Don't test the factory install shim or the dev install shim
598 if [ ${FLAGS_factory_install} -eq ${FLAGS_FALSE} ] &&
599 [ ${FLAGS_dev_install} -eq ${FLAGS_FALSE} ]; then
Don Garrett3f41e152010-06-21 14:54:34 -0700600 # Check that the image has been correctly created.
601 "${SCRIPTS_DIR}/test_image" \
602 --root="${ROOT_FS_DIR}" \
603 --target="${ARCH}"
604 fi
Bill Richardsonc09b94f2010-03-15 11:40:30 -0700605
Don Garrett3f41e152010-06-21 14:54:34 -0700606 # Clean up symlinks so they work on a running target rooted at "/".
607 # Here development packages are rooted at /usr/local. However, do not
608 # create /usr/local or /var on host (already exist on target).
609 setup_symlinks_on_root "/usr/local" "/var" "${STATEFUL_FS_DIR}"
Bill Richardsonc09b94f2010-03-15 11:40:30 -0700610
Will Drewry7ab698d2010-08-05 13:57:52 -0500611 # cros_make_image_bootable will clobber vmlinuz.image for x86.
Will Drewry4a675e12010-07-03 13:35:02 -0500612 # Until then, just copy the kernel to vmlinuz.image. It is
613 # expected in build_gpt.sh and needed by ARM until it supports the
614 # full, signed kernel partition format.
615 cp "${ROOT_FS_DIR}/boot/vmlinuz" "${OUTPUT_DIR}/vmlinuz.image"
616
617 # Create an empty esp image to be updated in by update_bootloaders.sh.
618 ${SCRIPTS_DIR}/create_esp.sh --to="${ESP_FS_IMG}"
619
Don Garrett3f41e152010-06-21 14:54:34 -0700620 cleanup
Chris Sosabde8c1b2010-04-29 14:02:35 -0700621
Don Garrett3f41e152010-06-21 14:54:34 -0700622 trap delete_prompt EXIT
Tan Gao6df5aee2010-05-19 14:19:55 -0700623
Don Garrett3f41e152010-06-21 14:54:34 -0700624 # Create the GPT-formatted image.
625 ${SCRIPTS_DIR}/build_gpt.sh \
626 --arch=${ARCH} \
627 --board=${FLAGS_board} \
628 --arm_extra_bootargs="${FLAGS_arm_extra_bootargs}" \
629 --rootfs_partition_size=${FLAGS_rootfs_partition_size} \
Don Garrett3f41e152010-06-21 14:54:34 -0700630 "${OUTPUT_DIR}" \
David James868d7bb2010-06-24 21:48:14 -0700631 "${OUTPUT_DIR}/${image_name}"
632
633 trap - EXIT
Don Garrett3f41e152010-06-21 14:54:34 -0700634}
635
636# Create the output directory.
637mkdir -p "${OUTPUT_DIR}"
638mkdir -p "${ROOT_FS_DIR}"
639mkdir -p "${STATEFUL_FS_DIR}"
Denis Romanov11061542010-06-29 04:23:53 +0400640mkdir -p "${OEM_FS_DIR}"
Don Garrett3f41e152010-06-21 14:54:34 -0700641mkdir -p "${ESP_FS_DIR}"
642
David James868d7bb2010-06-24 21:48:14 -0700643# Preserve old images by copying them forward for --preserve.
644if [[ $FLAGS_preserve -eq ${FLAGS_TRUE} ]] ; then
645 if [[ -f ${PREVIOUS_DIR}/${PRISTINE_IMAGE_NAME} ]] ; then
646 # Copy forward pristine image, and associated files
647 cp ${PREVIOUS_DIR}/*.sh ${PREVIOUS_DIR}/config.txt ${OUTPUT_DIR}
648 cp ${PREVIOUS_DIR}/${PRISTINE_IMAGE_NAME} ${OUTPUT_DIR}
649
650 # Copy forward the developer image, if we already copied forward the base.
651 if [[ ${FLAGS_withdev} -eq ${FLAGS_TRUE} ]] && \
652 [[ -f ${PREVIOUS_DIR}/${DEVELOPER_IMAGE_NAME} ]] ; then
653 cp ${PREVIOUS_DIR}/${DEVELOPER_IMAGE_NAME} ${OUTPUT_DIR}
654 fi
655 fi
656fi
657
Tan Gao7b6d5032010-08-23 08:17:48 -0700658# Minimize rootfs size for factory installer
659if [ ${FLAGS_factory_install} -eq ${FLAGS_TRUE} ]; then
Will Drewryd253bad2010-08-17 14:09:41 -0500660 info "Fixing the rootfs size at 300 MiB for the factory installer"
661 FLAGS_rootfs_size=300
662fi
663
Tan Gao7b6d5032010-08-23 08:17:48 -0700664# Minimize rootfs size and statefulfs size for dev install shim
665if [ ${FLAGS_dev_install} -eq ${FLAGS_TRUE} ] ; then
666 info "Fixing the rootfs size at 300 MiB for dev install shim"
667 FLAGS_rootfs_size=300
668 info "Fixing the statefulfs size at 140 MiB for dev install shim"
669 FLAGS_statefulfs_size=140
670fi
671
Will Drewry7ab698d2010-08-05 13:57:52 -0500672# Create the boot.desc file which stores the build-time configuration
673# information needed for making the image bootable after creation with
674# cros_make_image_bootable.
675create_boot_desc
676
David James868d7bb2010-06-24 21:48:14 -0700677if [[ -f ${PRISTINE_IMG} ]] ; then
678 update_base_packages ${PRISTINE_IMAGE_NAME}
679else
680 create_base_image ${PRISTINE_IMAGE_NAME}
681fi
Tan Gao843b70a2010-08-17 09:41:48 -0700682
683USE_DEV_KEYS=
684if [ "${FLAGS_dev_install}" -eq "${FLAGS_TRUE}" ]; then
685 USE_DEV_KEYS="--use_dev_keys"
686fi
687
688# Place flags before positional args
Will Drewry7ab698d2010-08-05 13:57:52 -0500689${SCRIPTS_DIR}/bin/cros_make_image_bootable "${OUTPUT_DIR}" \
Tan Gao843b70a2010-08-17 09:41:48 -0700690 "${PRISTINE_IMAGE_NAME}" \
691 ${USE_DEV_KEYS}
Will Drewry4a675e12010-07-03 13:35:02 -0500692
693# FIXME: only signing things for x86 right now.
694if [[ "${ARCH}" = "x86" ]]; then
Tan Gao843b70a2010-08-17 09:41:48 -0700695 BOOT_FLAG=
696 if [ "${FLAGS_dev_install}" -eq "${FLAGS_TRUE}" ] ; then
697 BOOT_FLAG="-b 1" # BOOT_FLAG_DEVELOPER value defined in load_kernel_fw.h
698 info "--dev_install set, pass BOOT_FLAG_DEVELOPER flag to load_kernel_test"
699 fi
700
Will Drewry4a675e12010-07-03 13:35:02 -0500701 # Verify the final image.
702 load_kernel_test "${OUTPUT_DIR}/${PRISTINE_IMAGE_NAME}" \
Tan Gao843b70a2010-08-17 09:41:48 -0700703 "${DEVKEYSDIR}/recovery_key.vbpubk" ${BOOT_FLAG}
Will Drewry4a675e12010-07-03 13:35:02 -0500704fi
Bill Richardson4364a2e2010-03-30 14:17:34 -0700705
Don Garrette0020b12010-06-17 15:55:35 -0700706# Create a developer image based on the chromium os base image.
Don Garrett3f41e152010-06-21 14:54:34 -0700707if [ "${FLAGS_withdev}" -eq "${FLAGS_TRUE}" ] ; then
David James868d7bb2010-06-24 21:48:14 -0700708 if [[ ! -f ${DEVELOPER_IMG} ]] ; then
709 echo "Creating developer image from base image ${PRISTINE_IMAGE_NAME}"
710 cp ${PRISTINE_IMG} ${DEVELOPER_IMG}
711 fi
Don Garrett3f41e152010-06-21 14:54:34 -0700712
David James868d7bb2010-06-24 21:48:14 -0700713 update_dev_packages ${DEVELOPER_IMAGE_NAME}
Will Drewry7ab698d2010-08-05 13:57:52 -0500714 ${SCRIPTS_DIR}/bin/cros_make_image_bootable "${OUTPUT_DIR}" \
715 "${DEVELOPER_IMAGE_NAME}"
Bill Richardson6ed13582010-06-16 21:38:15 -0700716fi
717
718# Clean up temporary files.
Don Garrett3f41e152010-06-21 14:54:34 -0700719rm -f "${ROOT_FS_IMG}" "${STATEFUL_FS_IMG}" "${OUTPUT_DIR}/vmlinuz.image" \
Louis Yung-Chieh Lo36020402010-07-05 13:23:34 +0800720 "${ESP_FS_IMG}" "${OEM_FS_IMG}" "${OUTPUT_DIR}/vmlinuz_hd.vblock"
Denis Romanov11061542010-06-29 04:23:53 +0400721rmdir "${ROOT_FS_DIR}" "${STATEFUL_FS_DIR}" "${OEM_FS_DIR}" "${ESP_FS_DIR}"
Bill Richardson67956222010-05-28 15:38:56 -0700722
Olof Johansson58f25cc2010-08-04 21:18:49 -0700723# Create a 'latest' link
724rm -f ${FLAGS_output_root}/${FLAGS_board}/latest
725ln -s $(basename ${OUTPUT_DIR}) ${FLAGS_output_root}/${FLAGS_board}/latest
726
Bill Richardsonc09b94f2010-03-15 11:40:30 -0700727echo "Done. Image created in ${OUTPUT_DIR}"
Don Garrette0020b12010-06-17 15:55:35 -0700728echo "Chromium OS image created as ${PRISTINE_IMAGE_NAME}"
Don Garrette0020b12010-06-17 15:55:35 -0700729if [ "${FLAGS_withdev}" -eq "${FLAGS_TRUE}" ]; then
730 echo "Developer image created as ${DEVELOPER_IMAGE_NAME}"
Chris Sosa9673f3b2010-05-18 13:24:40 -0700731fi
Nick Sanders8ab729a2010-06-16 03:15:17 -0700732
Nick Sandersd2509272010-06-16 03:50:04 -0700733print_time_elapsed
734
Bill Richardsonc09b94f2010-03-15 11:40:30 -0700735echo "To copy to USB keyfob, OUTSIDE the chroot, do something like:"
Daniel Eratdd9818a2010-04-26 09:16:44 -0700736echo " ./image_to_usb.sh --from=${OUTSIDE_OUTPUT_DIR} --to=/dev/sdX"
Will Drewryefce6682010-07-23 19:43:27 -0500737echo "To convert to VMWare image, INSIDE the chroot, do something like:"
Olof Johansson1f5e84d2010-08-24 20:26:49 -0500738echo " ./image_to_vm.sh --from=${OUTSIDE_OUTPUT_DIR} --board=${BOARD}"
Bill Richardsonc09b94f2010-03-15 11:40:30 -0700739echo "from the scripts directory where you entered the chroot."