blob: 59c3b8d8cd6969b6be5cc7e179c6f811588096b5 [file] [log] [blame]
Chris Sosa2b736002012-02-12 16:16:08 -08001# Copyright (c) 2012 The Chromium OS Authors. All rights reserved.
rspangler@google.comd74220d2009-10-09 20:56:14 +00002# Use of this source code is governed by a BSD-style license that can be
3# found in the LICENSE file.
4
5# Common constants for build scripts
6# This must evaluate properly for both /bin/bash and /bin/sh
7
8# All scripts should die on error unless commands are specifically excepted
9# by prefixing with '!' or surrounded by 'set +e' / 'set -e'.
rspangler@google.comd74220d2009-10-09 20:56:14 +000010
11# The number of jobs to pass to tools that can run in parallel (such as make
12# and dpkg-buildpackage
Brian Harring28bb01f2012-05-09 15:26:09 -070013if [ -z "${NUM_JOBS}" ]; then
14 NUM_JOBS=$(grep -c "^processor" /proc/cpuinfo)
15fi
16# Ensure that any sub scripts we invoke get the max proc count.
17export NUM_JOBS="${NUM_JOBS}"
rspangler@google.comd74220d2009-10-09 20:56:14 +000018
Simon Glass142ca062011-02-09 13:39:43 -080019# True if we have the 'pv' utility - also set up COMMON_PV_CAT for convenience
20COMMON_PV_OK=1
21COMMON_PV_CAT=pv
22pv -V >/dev/null 2>&1 || COMMON_PV_OK=0
23if [ $COMMON_PV_OK -eq 0 ]; then
24 COMMON_PV_CAT=cat
25fi
26
Greg Spencer798d75f2011-02-01 22:04:49 -080027# Make sure we have the location and name of the calling script, using
28# the current value if it is already set.
29SCRIPT_LOCATION=${SCRIPT_LOCATION:-$(dirname "$(readlink -f "$0")")}
30SCRIPT_NAME=${SCRIPT_NAME:-$(basename "$0")}
rspangler@google.comd74220d2009-10-09 20:56:14 +000031
Anton Staaf30acb0b2011-01-26 16:00:20 -080032# Detect whether we're inside a chroot or not
33if [ -e /etc/debian_chroot ]
rspangler@google.comd74220d2009-10-09 20:56:14 +000034then
Anton Staaf30acb0b2011-01-26 16:00:20 -080035 INSIDE_CHROOT=1
rspangler@google.comd74220d2009-10-09 20:56:14 +000036else
Anton Staaf30acb0b2011-01-26 16:00:20 -080037 INSIDE_CHROOT=0
rspangler@google.comd74220d2009-10-09 20:56:14 +000038fi
39
Mike Frysinger669b28b2012-02-07 18:01:00 -050040# Determine and set up variables needed for fancy color output (if supported).
41V_BOLD_RED=
42V_BOLD_GREEN=
43V_BOLD_YELLOW=
44V_REVERSE=
45V_VIDOFF=
46
47if tput colors >/dev/null 2>&1; then
48 # order matters: we want VIDOFF last so that when we trace with `set -x`,
49 # our terminal doesn't bleed colors as bash dumps the values of vars.
50 V_BOLD_RED="$(tput bold; tput setaf 1)"
51 V_BOLD_GREEN="$(tput bold; tput setaf 2)"
52 V_BOLD_YELLOW="$(tput bold; tput setaf 3)"
53 V_REVERSE="$(tput rev)"
54 V_VIDOFF="$(tput sgr0)"
55fi
56
Brian Harring7f175a52012-03-02 05:37:00 -080057# Stubs for sh compatibility.
Mike Frysinger6b1abb22012-05-11 13:44:06 -040058_dump_trace() { :; }
59_escaped_echo() {
Brian Harring7f175a52012-03-02 05:37:00 -080060 printf '%b\n' "$*"
61}
62
63# Bash awareness, including stacktraces if possible.
64if [ -n "${BASH_VERSION-}" ]; then
65 function _escaped_echo() {
66 echo -e "$@"
67 }
68 # Turn on bash debug support if available.
69 if shopt -s extdebug 2> /dev/null; then
70 # Pull the path relative to this lib; SCRIPT_ROOT should always be set,
71 # but has never been formally required.
72 if [ -n "${SOURCE_ROOT-}" ]; then
73 . "${SOURCE_ROOT}"/common_bash_backtraces.sh
74 else
75 x=$(readlink -f "${BASH_SOURCE[0]}")
76 . "${x%/*}"/common_bash_backtraces.sh
77 unset x
78 fi
79 fi
80fi
81
Mike Frysinger669b28b2012-02-07 18:01:00 -050082# Declare these asap so that code below can safely assume they exist.
Mike Frysinger6b1abb22012-05-11 13:44:06 -040083_message() {
Brian Harring7f175a52012-03-02 05:37:00 -080084 local prefix="${1}"
85 shift
86 if [ $# -eq 0 ]; then
87 _escaped_echo >&2 "${prefix}${CROS_LOG_PREFIX:-""}:${V_VIDOFF}"
88 return
89 fi
90 (
91 # Handle newlines in the message, prefixing each chunk correctly.
92 # Do this in a subshell to avoid having to track IFS/set -f state.
93 IFS="
94"
95 set +f
96 set -- $*
97 IFS=' '
98 if [ $# -eq 0 ]; then
99 # Empty line was requested.
100 set -- ''
101 fi
102 for line in "$@"; do
103 _escaped_echo >&2 "${prefix}${CROS_LOG_PREFIX:-}: ${line}${V_VIDOFF}"
104 done
105 )
106}
107
Mike Frysinger6b1abb22012-05-11 13:44:06 -0400108info() {
Brian Harring7f175a52012-03-02 05:37:00 -0800109 _message "${V_BOLD_GREEN}INFO " "$*"
Mike Frysinger669b28b2012-02-07 18:01:00 -0500110}
111
Mike Frysinger6b1abb22012-05-11 13:44:06 -0400112warn() {
Brian Harring7f175a52012-03-02 05:37:00 -0800113 _message "${V_BOLD_YELLOW}WARNING " "$*"
Mike Frysinger669b28b2012-02-07 18:01:00 -0500114}
115
Mike Frysinger6b1abb22012-05-11 13:44:06 -0400116error() {
Brian Harring7f175a52012-03-02 05:37:00 -0800117 _message "${V_BOLD_RED}ERROR " "$*"
Mike Frysinger669b28b2012-02-07 18:01:00 -0500118}
119
Brian Harring7f175a52012-03-02 05:37:00 -0800120
121# For all die functions, they must explicitly force set +eu;
122# no reason to have them cause their own crash if we're inthe middle
123# of reporting an error condition then exiting.
124
Mike Frysinger6b1abb22012-05-11 13:44:06 -0400125die_err_trap() {
Brian Harring7f175a52012-03-02 05:37:00 -0800126 local command="$1" result="$2"
127 set +e +u
128
129 # Per the message, bash misreports 127 as 1 during err trap sometimes.
130 # Note this fact to ensure users don't place too much faith in the
131 # exit code in that case.
132 set -- "Command '${command}' exited with nonzero code: ${result}"
133 if [ -n "${BASH_VERSION-}" ]; then
134 if [ "$result" = 1 ] && [ -z "$(type -t $command)" ]; then
135 set -- "$@" \
136 '(Note bash sometimes misreports "command not found" as exit code 1 '\
137'instead of 127)'
138 fi
139 fi
140 _dump_trace
141 error
142 error "Command failed:"
143 DIE_PREFIX=' '
144 die_notrace "$@"
145}
146
147# Exit this script due to a failure, outputting a backtrace in the process.
Mike Frysinger6b1abb22012-05-11 13:44:06 -0400148die() {
Brian Harring7f175a52012-03-02 05:37:00 -0800149 set +e +u
150 _dump_trace
151 error
152 error "Error was:"
153 DIE_PREFIX=' '
154 die_notrace "$@"
155}
156
157# Exit this script w/out a backtrace.
Mike Frysinger6b1abb22012-05-11 13:44:06 -0400158die_notrace() {
Brian Harring7f175a52012-03-02 05:37:00 -0800159 set +e +u
160 if [ $# -eq 0 ]; then
161 set -- '(no error message given)'
162 fi
163 for line in "$@"; do
164 error "${DIE_PREFIX}$line"
165 done
Mike Frysinger669b28b2012-02-07 18:01:00 -0500166 exit 1
167}
168
Anton Staaf30acb0b2011-01-26 16:00:20 -0800169# Construct a list of possible locations for the source tree. This list is
170# based on various environment variables and globals that may have been set
171# by the calling script.
Mike Frysinger6b1abb22012-05-11 13:44:06 -0400172get_gclient_root_list() {
Anton Staaf30acb0b2011-01-26 16:00:20 -0800173 if [ $INSIDE_CHROOT -eq 1 ]; then
174 echo "/home/${USER}/trunk"
175
176 if [ -n "${SUDO_USER}" ]; then echo "/home/${SUDO_USER}/trunk"; fi
177 fi
178
179 if [ -n "${COMMON_SH}" ]; then echo "$(dirname "$COMMON_SH")/../.."; fi
180 if [ -n "${BASH_SOURCE}" ]; then echo "$(dirname "$BASH_SOURCE")/../.."; fi
181}
182
183# Based on the list of possible source locations we set GCLIENT_ROOT if it is
184# not already defined by looking for a src directory in each seach path
185# location. If we do not find a valid looking root we error out.
Mike Frysinger6b1abb22012-05-11 13:44:06 -0400186get_gclient_root() {
Anton Staaf30acb0b2011-01-26 16:00:20 -0800187 if [ -n "${GCLIENT_ROOT}" ]; then
188 return
189 fi
190
191 for path in $(get_gclient_root_list); do
192 if [ -d "${path}/src" ]; then
193 GCLIENT_ROOT=${path}
194 break
195 fi
196 done
197
198 if [ -z "${GCLIENT_ROOT}" ]; then
199 # Using dash or sh, we don't know where we are. $0 refers to the calling
200 # script, not ourselves, so that doesn't help us.
201 echo "Unable to determine location for common.sh. If you are sourcing"
202 echo "common.sh from a script run via dash or sh, you must do it in the"
203 echo "following way:"
204 echo ' COMMON_SH="$(dirname "$0")/../../scripts/common.sh"'
205 echo ' . "$COMMON_SH"'
206 echo "where the first line is the relative path from your script to"
207 echo "common.sh."
208 exit 1
209 fi
210}
211
212# Find root of source tree
213get_gclient_root
214
rspangler@google.comd74220d2009-10-09 20:56:14 +0000215# Canonicalize the directories for the root dir and the calling script.
216# readlink is part of coreutils and should be present even in a bare chroot.
tedbo4f44d9e2010-01-08 17:26:11 -0800217# This is better than just using
rspangler@google.comd74220d2009-10-09 20:56:14 +0000218# FOO = "$(cd $FOO ; pwd)"
tedbo4f44d9e2010-01-08 17:26:11 -0800219# since that leaves symbolic links intact.
rspangler@google.comd74220d2009-10-09 20:56:14 +0000220# Note that 'realpath' is equivalent to 'readlink -f'.
Mike Frysingera1a06ab2011-08-10 11:40:30 -0400221SCRIPT_LOCATION=$(readlink -f "$SCRIPT_LOCATION")
222GCLIENT_ROOT=$(readlink -f "$GCLIENT_ROOT")
rspangler@google.comd74220d2009-10-09 20:56:14 +0000223
224# Other directories should always be pathed down from GCLIENT_ROOT.
225SRC_ROOT="$GCLIENT_ROOT/src"
226SRC_INTERNAL="$GCLIENT_ROOT/src-internal"
227SCRIPTS_DIR="$SRC_ROOT/scripts"
228
229# Load developer's custom settings. Default location is in scripts dir,
230# since that's available both inside and outside the chroot. By convention,
231# settings from this file are variables starting with 'CHROMEOS_'
232CHROMEOS_DEV_SETTINGS="${CHROMEOS_DEV_SETTINGS:-$SCRIPTS_DIR/.chromeos_dev}"
Mike Frysingera1a06ab2011-08-10 11:40:30 -0400233if [ -f "$CHROMEOS_DEV_SETTINGS" ]; then
rspangler@google.comd74220d2009-10-09 20:56:14 +0000234 # Turn on exit-on-error during custom settings processing
Greg Spencer798d75f2011-02-01 22:04:49 -0800235 SAVE_OPTS=$(set +o)
Brian Harring7f175a52012-03-02 05:37:00 -0800236 switch_to_strict_mode
rspangler@google.comd74220d2009-10-09 20:56:14 +0000237
238 # Read settings
Mike Frysingera1a06ab2011-08-10 11:40:30 -0400239 . "$CHROMEOS_DEV_SETTINGS"
rspangler@google.comd74220d2009-10-09 20:56:14 +0000240
241 # Restore previous state of exit-on-error
242 eval "$SAVE_OPTS"
243fi
244
245# Load shflags
Zdenek Behan07d24222011-11-02 00:46:25 +0000246# NOTE: This code snippet is in particular used by the au-generator (which
247# stores shflags in ./lib/shflags/) and should not be touched.
248if [ -f "${SCRIPTS_DIR}/lib/shflags/shflags" ]; then
Mike Frysinger77c674b2012-02-07 18:05:07 -0500249 . "${SCRIPTS_DIR}/lib/shflags/shflags" || die "Couldn't find shflags"
Zdenek Behan07d24222011-11-02 00:46:25 +0000250else
251 . ./lib/shflags/shflags || die "Couldn't find shflags"
252fi
rspangler@google.comd74220d2009-10-09 20:56:14 +0000253
Bill Richardson10d27c22010-01-20 13:38:50 -0800254# Our local mirror
255DEFAULT_CHROMEOS_SERVER=${CHROMEOS_SERVER:-"http://build.chromium.org/mirror"}
rspangler@google.comd74220d2009-10-09 20:56:14 +0000256
Bill Richardson10d27c22010-01-20 13:38:50 -0800257# Upstream mirrors and build suites come in 2 flavors
258# DEV - development chroot, used to build the chromeos image
259# IMG - bootable image, to run on actual hardware
rspangler@google.comd74220d2009-10-09 20:56:14 +0000260
Bill Richardson10d27c22010-01-20 13:38:50 -0800261DEFAULT_DEV_MIRROR=${CHROMEOS_DEV_MIRROR:-"${DEFAULT_CHROMEOS_SERVER}/ubuntu"}
262DEFAULT_DEV_SUITE=${CHROMEOS_DEV_SUITE:-"karmic"}
263
264DEFAULT_IMG_MIRROR=${CHROMEOS_IMG_MIRROR:-"${DEFAULT_CHROMEOS_SERVER}/ubuntu"}
265DEFAULT_IMG_SUITE=${CHROMEOS_IMG_SUITE:-"karmic"}
rspangler@google.comd74220d2009-10-09 20:56:14 +0000266
267# Default location for chroot
268DEFAULT_CHROOT_DIR=${CHROMEOS_CHROOT_DIR:-"$GCLIENT_ROOT/chroot"}
269
270# All output files from build should go under $DEFAULT_BUILD_ROOT, so that
271# they don't pollute the source directory.
272DEFAULT_BUILD_ROOT=${CHROMEOS_BUILD_ROOT:-"$SRC_ROOT/build"}
273
David McMahon49302942010-02-18 16:55:35 -0800274# Set up a global ALL_BOARDS value
Mike Frysingera1a06ab2011-08-10 11:40:30 -0400275if [ -d "$SRC_ROOT/overlays" ]; then
276 ALL_BOARDS=$(cd "$SRC_ROOT/overlays"; \
277 ls -1d overlay-* 2>&- | sed 's,overlay-,,g')
David Rochberg3b910702010-12-02 10:45:21 -0500278fi
David McMahon49302942010-02-18 16:55:35 -0800279# Strip CR
280ALL_BOARDS=$(echo $ALL_BOARDS)
281# Set a default BOARD
282#DEFAULT_BOARD=x86-generic # or...
283DEFAULT_BOARD=$(echo $ALL_BOARDS | awk '{print $NF}')
284
David Jamesff072012010-11-30 13:22:05 -0800285# Enable --fast by default.
Greg Spencer798d75f2011-02-01 22:04:49 -0800286DEFAULT_FAST=${FLAGS_TRUE}
David James03668642010-07-28 17:08:29 -0700287
Chris Sosab0f57322011-10-25 03:07:23 +0000288# Directory to store built images. Should be set by sourcing script when used.
289BUILD_DIR=
Simon Glass142ca062011-02-09 13:39:43 -0800290
291# Standard filenames
Chris Sosab0f57322011-10-25 03:07:23 +0000292CHROMEOS_BASE_IMAGE_NAME="chromiumos_base_image.bin"
Simon Glass142ca062011-02-09 13:39:43 -0800293CHROMEOS_IMAGE_NAME="chromiumos_image.bin"
Chris Sosab0f57322011-10-25 03:07:23 +0000294CHROMEOS_DEVELOPER_IMAGE_NAME="chromiumos_image.bin"
Gilad Arnold08366272012-02-08 10:46:26 -0800295CHROMEOS_RECOVERY_IMAGE_NAME="recovery_image.bin"
Simon Glass142ca062011-02-09 13:39:43 -0800296CHROMEOS_TEST_IMAGE_NAME="chromiumos_test_image.bin"
Chris Sosab885b802011-02-16 15:33:11 -0800297CHROMEOS_FACTORY_TEST_IMAGE_NAME="chromiumos_factory_image.bin"
Chris Sosab0f57322011-10-25 03:07:23 +0000298CHROMEOS_FACTORY_INSTALL_SHIM_NAME="factory_install_shim.bin"
Simon Glass142ca062011-02-09 13:39:43 -0800299
rspangler@google.comd74220d2009-10-09 20:56:14 +0000300# Directory locations inside the dev chroot
301CHROOT_TRUNK_DIR="/home/$USER/trunk"
302
Chris Sosaaa1a7fd2010-04-02 14:06:29 -0700303# Install make for portage ebuilds. Used by build_image and gmergefs.
Chris Masoned11ce172010-11-09 14:22:08 -0800304# TODO: Is /usr/local/autotest-chrome still used by anyone?
Hung-Te Lind32c59f2012-01-19 19:54:01 +0800305COMMON_INSTALL_MASK="
Daniel Erate82f07c2010-12-21 13:39:22 -0800306 *.a
307 *.la
308 /etc/init.d
309 /etc/runlevels
310 /lib/rc
311 /usr/bin/Xnest
312 /usr/bin/Xvfb
313 /usr/include
314 /usr/lib/debug
315 /usr/lib/gcc
316 /usr/lib/gtk-2.0/include
317 /usr/lib/pkgconfig
Daniel Erate82f07c2010-12-21 13:39:22 -0800318 /usr/local/autotest-chrome
319 /usr/man
320 /usr/share/aclocal
321 /usr/share/doc
322 /usr/share/gettext
323 /usr/share/gtk-2.0
324 /usr/share/gtk-doc
325 /usr/share/info
326 /usr/share/man
327 /usr/share/openrc
328 /usr/share/pkgconfig
329 /usr/share/readline
Chris Wolfed13775f2011-07-26 16:34:38 -0400330 /usr/src
Daniel Erate82f07c2010-12-21 13:39:22 -0800331 "
Chris Sosaaa1a7fd2010-04-02 14:06:29 -0700332
Hung-Te Lind32c59f2012-01-19 19:54:01 +0800333# Mask for base, dev, and test images (build_image, build_image --test)
334DEFAULT_INSTALL_MASK="
335 $COMMON_INSTALL_MASK
336 /usr/local/autotest
Joseph Hwangca63e042012-03-24 20:38:21 +0800337 /lib/modules/*/kernel/drivers/input/misc/uinput.ko
Hung-Te Lind32c59f2012-01-19 19:54:01 +0800338 "
339
340# Mask for factory test image (build_image --factory)
341FACTORY_TEST_INSTALL_MASK="
342 $COMMON_INSTALL_MASK
343 */.svn
344 */CVS
345 /usr/local/autotest/[^c]*
346 /usr/local/autotest/conmux
347 /usr/local/autotest/client/deps/chrome_test
348 /usr/local/autotest/client/deps/piglit
349 /usr/local/autotest/client/deps/pyauto_dep
350 /usr/local/autotest/client/deps/realtimecomm_*
Hung-Te Lind32c59f2012-01-19 19:54:01 +0800351 /usr/local/autotest/client/site_tests/graphics_WebGLConformance
352 /usr/local/autotest/client/site_tests/platform_ToolchainOptions
353 /usr/local/autotest/client/site_tests/realtimecomm_GTalk*
354 "
355
Chris Sosac9422fa2012-03-05 15:58:07 -0800356# Mask for factory install shim (build_image factory_install)
Hung-Te Lind32c59f2012-01-19 19:54:01 +0800357FACTORY_SHIM_INSTALL_MASK="
358 $DEFAULT_INSTALL_MASK
359 /opt/[^g]*
Daniel Erate82f07c2010-12-21 13:39:22 -0800360 /opt/google/chrome
361 /opt/google/o3d
362 /opt/google/talkplugin
Daniel Erate82f07c2010-12-21 13:39:22 -0800363 /usr/lib/dri
364 /usr/lib/python2.6/test
Daniel Erate82f07c2010-12-21 13:39:22 -0800365 /usr/local/autotest-pkgs
366 /usr/share/X11
367 /usr/share/chewing
368 /usr/share/fonts
369 /usr/share/ibus-pinyin
370 /usr/share/libhangul
371 /usr/share/locale
372 /usr/share/m17n
373 /usr/share/mime
374 /usr/share/sounds
375 /usr/share/tts
376 /usr/share/zoneinfo
377 "
Tom Wai-Hong Tamf87a3672010-05-17 16:06:33 +0800378
rspangler@google.comd74220d2009-10-09 20:56:14 +0000379# -----------------------------------------------------------------------------
380# Functions
381
Mike Frysinger6b1abb22012-05-11 13:44:06 -0400382setup_board_warning() {
tedbo373c3902010-04-12 10:52:40 -0700383 echo
384 echo "$V_REVERSE================= WARNING ======================$V_VIDOFF"
Chris Sosaacada732010-02-23 15:20:03 -0800385 echo
386 echo "*** No default board detected in " \
387 "$GCLIENT_ROOT/src/scripts/.default_board"
388 echo "*** Either run setup_board with default flag set"
389 echo "*** or echo |board_name| > $GCLIENT_ROOT/src/scripts/.default_board"
390 echo
391}
392
393
394# Sets the default board variable for calling script
Mike Frysinger6b1abb22012-05-11 13:44:06 -0400395get_default_board() {
tedbo373c3902010-04-12 10:52:40 -0700396 DEFAULT_BOARD=
397
Chris Sosaacada732010-02-23 15:20:03 -0800398 if [ -f "$GCLIENT_ROOT/src/scripts/.default_board" ] ; then
Greg Spencer798d75f2011-02-01 22:04:49 -0800399 DEFAULT_BOARD=$(cat "$GCLIENT_ROOT/src/scripts/.default_board")
Mike Frysingerbc36d042011-12-19 16:01:09 -0500400 # Check for user typos like whitespace.
401 if [[ -n ${DEFAULT_BOARD//[a-zA-Z0-9-_]} ]] ; then
402 die ".default_board: invalid name detected; please fix:" \
403 "'${DEFAULT_BOARD}'"
404 fi
Chris Sosaacada732010-02-23 15:20:03 -0800405 fi
406}
407
408
Don Garrett640a0582010-05-04 16:54:28 -0700409# Enter a chroot and restart the current script if needed
Mike Frysinger6b1abb22012-05-11 13:44:06 -0400410restart_in_chroot_if_needed() {
David Rochberg3b910702010-12-02 10:45:21 -0500411 # NB: Pass in ARGV: restart_in_chroot_if_needed "$@"
Greg Spencer798d75f2011-02-01 22:04:49 -0800412 if [ $INSIDE_CHROOT -ne 1 ]; then
Chris Sosafd2cdec2011-03-24 16:06:59 -0700413 # Get inside_chroot path for script.
414 local chroot_path="$(reinterpret_path_for_chroot "$0")"
Zdenek Behan2811c162011-08-13 00:47:38 +0200415 exec $GCLIENT_ROOT/chromite/bin/cros_sdk -- "$chroot_path" "$@"
Don Garrett640a0582010-05-04 16:54:28 -0700416 fi
417}
418
rspangler@google.comd74220d2009-10-09 20:56:14 +0000419# Fail unless we're inside the chroot. This guards against messing up your
420# workstation.
Mike Frysinger6b1abb22012-05-11 13:44:06 -0400421assert_inside_chroot() {
Greg Spencer798d75f2011-02-01 22:04:49 -0800422 if [ $INSIDE_CHROOT -ne 1 ]; then
rspangler@google.comd74220d2009-10-09 20:56:14 +0000423 echo "This script must be run inside the chroot. Run this first:"
Zdenek Behan2811c162011-08-13 00:47:38 +0200424 echo " cros_sdk"
rspangler@google.comd74220d2009-10-09 20:56:14 +0000425 exit 1
426 fi
427}
428
429# Fail if we're inside the chroot. This guards against creating or entering
430# nested chroots, among other potential problems.
Mike Frysinger6b1abb22012-05-11 13:44:06 -0400431assert_outside_chroot() {
Greg Spencer798d75f2011-02-01 22:04:49 -0800432 if [ $INSIDE_CHROOT -ne 0 ]; then
rspangler@google.comd74220d2009-10-09 20:56:14 +0000433 echo "This script must be run outside the chroot."
434 exit 1
435 fi
436}
437
Mike Frysinger6b1abb22012-05-11 13:44:06 -0400438assert_not_root_user() {
Greg Spencer798d75f2011-02-01 22:04:49 -0800439 if [ $(id -u) = 0 ]; then
derat@google.com86dcc8e2009-11-21 19:49:49 +0000440 echo "This script must be run as a non-root user."
441 exit 1
442 fi
443}
444
Luigi Semenzato1f82e122010-03-23 12:43:08 -0700445# Check that all arguments are flags; that is, there are no remaining arguments
446# after parsing from shflags. Allow (with a warning) a single empty-string
447# argument.
448#
449# TODO: fix buildbot so that it doesn't pass the empty-string parameter,
450# then change this function.
451#
452# Usage: check_flags_only_and_allow_null_arg "$@" && set --
Mike Frysinger6b1abb22012-05-11 13:44:06 -0400453check_flags_only_and_allow_null_arg() {
Luigi Semenzato1f82e122010-03-23 12:43:08 -0700454 do_shift=1
455 if [[ $# == 1 && -z "$@" ]]; then
456 echo "$0: warning: ignoring null argument" >&2
457 shift
458 do_shift=0
459 fi
460 if [[ $# -gt 0 ]]; then
461 echo "error: invalid arguments: \"$@\"" >&2
462 flags_help
463 exit 1
464 fi
465 return $do_shift
466}
467
Chris Sosaaa1a7fd2010-04-02 14:06:29 -0700468# Removes single quotes around parameter
469# Arguments:
470# $1 - string which optionally has surrounding quotes
471# Returns:
472# None, but prints the string without quotes.
Mike Frysinger6b1abb22012-05-11 13:44:06 -0400473remove_quotes() {
Chris Sosaaa1a7fd2010-04-02 14:06:29 -0700474 echo "$1" | sed -e "s/^'//; s/'$//"
475}
tedbo373c3902010-04-12 10:52:40 -0700476
477# Writes stdin to the given file name as root using sudo in overwrite mode.
478#
479# $1 - The output file name.
Mike Frysinger6b1abb22012-05-11 13:44:06 -0400480sudo_clobber() {
tedbo373c3902010-04-12 10:52:40 -0700481 sudo tee "$1" > /dev/null
482}
483
484# Writes stdin to the given file name as root using sudo in append mode.
485#
486# $1 - The output file name.
Mike Frysinger6b1abb22012-05-11 13:44:06 -0400487sudo_append() {
tedbo373c3902010-04-12 10:52:40 -0700488 sudo tee -a "$1" > /dev/null
489}
robotboy98912212010-04-12 14:08:14 -0700490
Mike Frysinger286b5922011-09-28 11:59:53 -0400491# Execute multiple commands in a single sudo. Generally will speed things
492# up by avoiding multiple calls to `sudo`. If any commands fail, we will
493# call die with the failing command. We can handle a max of ~100 commands,
494# but hopefully no one will ever try that many at once.
495#
496# $@ - The commands to execute, one per arg.
Mike Frysinger6b1abb22012-05-11 13:44:06 -0400497sudo_multi() {
Mike Frysinger286b5922011-09-28 11:59:53 -0400498 local i cmds
499
500 # Construct the shell code to execute. It'll be of the form:
501 # ... && ( ( command ) || exit <command index> ) && ...
502 # This way we know which command exited. The exit status of
503 # the underlying command is lost, but we never cared about it
504 # in the first place (other than it is non zero), so oh well.
505 for (( i = 1; i <= $#; ++i )); do
506 cmds+=" && ( ( ${!i} ) || exit $(( i + 10 )) )"
507 done
508
509 # Execute our constructed shell code.
510 sudo -- sh -c ":${cmds[*]}" && i=0 || i=$?
511
512 # See if this failed, and if so, print out the failing command.
513 if [[ $i -gt 10 ]]; then
514 : $(( i -= 10 ))
515 die "sudo_multi failed: ${!i}"
516 elif [[ $i -ne 0 ]]; then
517 die "sudo_multi failed for unknown reason $i"
518 fi
519}
520
Mike Frysinger1aa61242011-09-15 17:46:44 -0400521# Locate all mounts below a specified directory.
522#
523# $1 - The root tree.
Mike Frysinger6b1abb22012-05-11 13:44:06 -0400524sub_mounts() {
Mike Frysinger1aa61242011-09-15 17:46:44 -0400525 # Assume that `mount` outputs a list of mount points in the order
526 # that things were mounted (since it always has and hopefully always
527 # will). As such, we have to unmount in reverse order to cleanly
528 # unmount submounts (think /dev/pts and /dev).
Zdenek Behan1d5d3b52012-05-01 01:58:48 +0200529 awk -v path="$1" -v len="${#1}" \
530 '(substr($2, 1, len) == path) { print $2 }' /proc/mounts | \
Mike Frysinger1aa61242011-09-15 17:46:44 -0400531 tac
532}
533
robotboy98912212010-04-12 14:08:14 -0700534# Unmounts a directory, if the unmount fails, warn, and then lazily unmount.
535#
536# $1 - The path to unmount.
Mike Frysinger6b1abb22012-05-11 13:44:06 -0400537safe_umount_tree() {
Mike Frysinger1aa61242011-09-15 17:46:44 -0400538 local mounts=$(sub_mounts "$1")
robotboy98912212010-04-12 14:08:14 -0700539
Mike Frysingere8aec372011-09-21 00:03:22 -0400540 # Hmm, this shouldn't normally happen, but anything is possible.
541 if [ -z "${mounts}" ] ; then
542 return 0
543 fi
544
Mike Frysinger1aa61242011-09-15 17:46:44 -0400545 # First try to unmount in one shot to speed things up.
546 if sudo umount -d ${mounts}; then
547 return 0
548 fi
robotboy98912212010-04-12 14:08:14 -0700549
Mike Frysinger1aa61242011-09-15 17:46:44 -0400550 # Well that didn't work, so lazy unmount remaining ones.
551 mounts=$(sub_mounts "$1")
552 warn "Failed to unmount ${mounts}"
553 warn "Doing a lazy unmount"
554 if ! sudo umount -d -l ${mounts}; then
555 mounts=$(sub_mounts "$1")
556 die "Failed to lazily unmount ${mounts}"
robotboy98912212010-04-12 14:08:14 -0700557 fi
558}
Chris Sosa702618f2010-05-14 12:52:32 -0700559
Chris Sosad4455022010-05-20 10:14:06 -0700560# Fixes symlinks that are incorrectly prefixed with the build root ${1}
561# rather than the real running root '/'.
562# TODO(sosa) - Merge setup - cleanup below with this method.
563fix_broken_symlinks() {
564 local build_root="${1}"
565 local symlinks=$(find "${build_root}/usr/local" -lname "${build_root}/*")
Greg Spencer798d75f2011-02-01 22:04:49 -0800566 local symlink
Chris Sosad4455022010-05-20 10:14:06 -0700567 for symlink in ${symlinks}; do
568 echo "Fixing ${symlink}"
569 local target=$(ls -l "${symlink}" | cut -f 2 -d '>')
570 # Trim spaces from target (bashism).
571 target=${target/ /}
572 # Make new target (removes rootfs prefix).
573 new_target=$(echo ${target} | sed "s#${build_root}##")
574
575 echo "Fixing symlink ${symlink}"
576 sudo unlink "${symlink}"
577 sudo ln -sf "${new_target}" "${symlink}"
578 done
579}
580
Chris Sosa702618f2010-05-14 12:52:32 -0700581# Sets up symlinks for the developer root. It is necessary to symlink
582# usr and local since the developer root is mounted at /usr/local and
583# applications expect to be installed under /usr/local/bin, etc.
584# This avoids packages installing into /usr/local/usr/local/bin.
585# ${1} specifies the symlink target for the developer root.
586# ${2} specifies the symlink target for the var directory.
587# ${3} specifies the location of the stateful partition.
588setup_symlinks_on_root() {
589 # Give args better names.
590 local dev_image_target=${1}
591 local var_target=${2}
592 local dev_image_root="${3}/dev_image"
593
594 # If our var target is actually the standard var, we are cleaning up the
595 # symlinks (could also check for /usr/local for the dev_image_target).
596 if [ ${var_target} = "/var" ]; then
597 echo "Cleaning up /usr/local symlinks for ${dev_image_root}"
598 else
599 echo "Setting up symlinks for /usr/local for ${dev_image_root}"
600 fi
601
602 # Set up symlinks that should point to ${dev_image_target}.
Greg Spencer798d75f2011-02-01 22:04:49 -0800603 local path
Chris Sosa702618f2010-05-14 12:52:32 -0700604 for path in usr local; do
605 if [ -h "${dev_image_root}/${path}" ]; then
606 sudo unlink "${dev_image_root}/${path}"
607 elif [ -e "${dev_image_root}/${path}" ]; then
608 die "${dev_image_root}/${path} should be a symlink if exists"
609 fi
Mike Frysingera1a06ab2011-08-10 11:40:30 -0400610 sudo ln -s "${dev_image_target}" "${dev_image_root}/${path}"
Chris Sosa702618f2010-05-14 12:52:32 -0700611 done
612
613 # Setup var symlink.
614 if [ -h "${dev_image_root}/var" ]; then
615 sudo unlink "${dev_image_root}/var"
616 elif [ -e "${dev_image_root}/var" ]; then
617 die "${dev_image_root}/var should be a symlink if it exists"
618 fi
619
620 sudo ln -s "${var_target}" "${dev_image_root}/var"
621}
Nick Sandersd2509272010-06-16 03:50:04 -0700622
Will Drewry55b42c92010-10-20 15:44:11 -0500623# These two helpers clobber the ro compat value in our root filesystem.
624#
625# When the system is built with --enable_rootfs_verification, bit-precise
626# integrity checking is performed. That precision poses a usability issue on
627# systems that automount partitions with recognizable filesystems, such as
628# ext2/3/4. When the filesystem is mounted 'rw', ext2 metadata will be
629# automatically updated even if no other writes are performed to the
630# filesystem. In addition, ext2+ does not support a "read-only" flag for a
631# given filesystem. That said, forward and backward compatibility of
632# filesystem features are supported by tracking if a new feature breaks r/w or
633# just write compatibility. We abuse the read-only compatibility flag[1] in
634# the filesystem header by setting the high order byte (le) to FF. This tells
635# the kernel that features R24-R31 are all enabled. Since those features are
636# undefined on all ext-based filesystem, all standard kernels will refuse to
637# mount the filesystem as read-write -- only read-only[2].
638#
639# [1] 32-bit flag we are modifying:
640# http://git.chromium.org/cgi-bin/gitweb.cgi?p=kernel.git;a=blob;f=include/linux/ext2_fs.h#l417
641# [2] Mount behavior is enforced here:
642# http://git.chromium.org/cgi-bin/gitweb.cgi?p=kernel.git;a=blob;f=fs/ext2/super.c#l857
643#
644# N.B., if the high order feature bits are used in the future, we will need to
645# revisit this technique.
646disable_rw_mount() {
647 local rootfs="$1"
648 local offset="${2-0}" # in bytes
Will Drewry9b7cb512010-10-20 18:11:24 -0500649 local ro_compat_offset=$((0x464 + 3)) # Set 'highest' byte
650 printf '\377' |
Will Drewry55b42c92010-10-20 15:44:11 -0500651 sudo dd of="$rootfs" seek=$((offset + ro_compat_offset)) \
652 conv=notrunc count=1 bs=1
653}
654
655enable_rw_mount() {
656 local rootfs="$1"
657 local offset="${2-0}"
Will Drewry9b7cb512010-10-20 18:11:24 -0500658 local ro_compat_offset=$((0x464 + 3)) # Set 'highest' byte
659 printf '\000' |
Will Drewry55b42c92010-10-20 15:44:11 -0500660 sudo dd of="$rootfs" seek=$((offset + ro_compat_offset)) \
661 conv=notrunc count=1 bs=1
662}
663
Nick Sandersd2509272010-06-16 03:50:04 -0700664# Get current timestamp. Assumes common.sh runs at startup.
665start_time=$(date +%s)
666
667# Print time elsapsed since start_time.
668print_time_elapsed() {
Greg Spencer798d75f2011-02-01 22:04:49 -0800669 local end_time=$(date +%s)
670 local elapsed_seconds=$(($end_time - $start_time))
671 local minutes=$(($elapsed_seconds / 60))
672 local seconds=$(($elapsed_seconds % 60))
Olof Johansson6d491382010-08-09 16:05:50 -0500673 echo "Elapsed time: ${minutes}m${seconds}s"
Nick Sandersd2509272010-06-16 03:50:04 -0700674}
Doug Anderson0c9e88d2010-10-19 14:49:39 -0700675
Anton Staaf9bcd8412011-01-24 15:27:14 -0800676# The board and variant command line options can be used in a number of ways
677# to specify the board and variant. The board can encode both pieces of
678# information separated by underscores. Or the variant can be passed using
679# the separate variant option. This function extracts the canonical board and
680# variant information and provides it in the BOARD, VARIANT and BOARD_VARIANT
681# variables.
682get_board_and_variant() {
683 local flags_board="${1}"
684 local flags_variant="${2}"
685
686 BOARD=$(echo "$flags_board" | cut -d '_' -f 1)
687 VARIANT=${flags_variant:-$(echo "$flags_board" | cut -s -d '_' -f 2)}
688
689 if [ -n "$VARIANT" ]; then
690 BOARD_VARIANT="${BOARD}_${VARIANT}"
691 else
692 BOARD_VARIANT="${BOARD}"
693 fi
694}
Simon Glass142ca062011-02-09 13:39:43 -0800695
696# This function converts a chromiumos image into a test image, either
697# in place or by copying to a new test image filename first. It honors
698# the following flags (see mod_image_for_test.sh)
699#
700# --factory
701# --factory_install
702# --force_copy
703#
704# On entry, pass the directory containing the image, and the image filename
705# On exit, it puts the pathname of the resulting test image into
706# CHROMEOS_RETURN_VAL
707# (yes this is ugly, but perhaps less ugly than the alternatives)
708#
709# Usage:
710# SRC_IMAGE=$(prepare_test_image "directory" "imagefile")
711prepare_test_image() {
712 # If we're asked to modify the image for test, then let's make a copy and
713 # modify that instead.
714 # Check for manufacturing image.
715 local args
716
717 if [ ${FLAGS_factory} -eq ${FLAGS_TRUE} ]; then
718 args="--factory"
719 fi
720
721 # Check for install shim.
722 if [ ${FLAGS_factory_install} -eq ${FLAGS_TRUE} ]; then
723 args="--factory_install"
724 fi
725
726 # Check for forcing copy of image
727 if [ ${FLAGS_force_copy} -eq ${FLAGS_TRUE} ]; then
728 args="${args} --force_copy"
729 fi
730
731 # Modify the image for test, creating a new test image
732 "${SCRIPTS_DIR}/mod_image_for_test.sh" --board=${FLAGS_board} \
733 --image="$1/$2" --noinplace ${args}
734
735 # From now on we use the just-created test image
Simon Glass6e448ae2011-03-03 11:20:54 -0800736 if [ ${FLAGS_factory} -eq ${FLAGS_TRUE} ]; then
737 CHROMEOS_RETURN_VAL="$1/${CHROMEOS_FACTORY_TEST_IMAGE_NAME}"
738 else
739 CHROMEOS_RETURN_VAL="$1/${CHROMEOS_TEST_IMAGE_NAME}"
740 fi
Simon Glass142ca062011-02-09 13:39:43 -0800741}
Anton Staaf6f5262d2011-03-02 09:35:54 -0800742
743# Check that the specified file exists. If the file path is empty or the file
744# doesn't exist on the filesystem generate useful error messages. Otherwise
745# show the user the name and path of the file that will be used. The padding
746# parameter can be used to tabulate multiple name:path pairs. For example:
747#
748# check_for_file "really long name" "...:" "file.foo"
749# check_for_file "short name" ".........:" "another.bar"
750#
751# Results in the following output:
752#
753# Using really long name...: file.foo
754# Using short name.........: another.bar
755#
756# If tabulation is not required then passing "" for padding generates the
757# output "Using <name> <path>"
758check_for_file() {
759 local name=$1
760 local padding=$2
761 local path=$3
762
763 if [ -z "${path}" ]; then
764 die "No ${name} file specified."
765 fi
766
767 if [ ! -e "${path}" ]; then
768 die "No ${name} file found at: ${path}"
769 else
770 info "Using ${name}${padding} ${path}"
771 fi
772}
773
774# Check that the specified tool exists. If it does not exist in the PATH
775# generate a useful error message indicating how to install the ebuild
776# that contains the required tool.
777check_for_tool() {
778 local tool=$1
779 local ebuild=$2
780
781 if ! which "${tool}" >/dev/null ; then
782 error "The ${tool} utility was not found in your path. Run the following"
783 error "command in your chroot to install it: sudo -E emerge ${ebuild}"
784 exit 1
785 fi
786}
Chris Sosafd2cdec2011-03-24 16:06:59 -0700787
788# Reinterprets path from outside the chroot for use inside.
789# Returns "" if "" given.
790# $1 - The path to reinterpret.
Mike Frysinger6b1abb22012-05-11 13:44:06 -0400791reinterpret_path_for_chroot() {
Chris Sosafd2cdec2011-03-24 16:06:59 -0700792 if [ $INSIDE_CHROOT -ne 1 ]; then
793 if [ -z "${1}" ]; then
794 echo ""
795 else
796 local path_abs_path=$(readlink -f "${1}")
797 local gclient_root_abs_path=$(readlink -f "${GCLIENT_ROOT}")
798
799 # Strip the repository root from the path.
800 local relative_path=$(echo ${path_abs_path} \
Mike Frysingera1a06ab2011-08-10 11:40:30 -0400801 | sed "s:${gclient_root_abs_path}/::")
Chris Sosafd2cdec2011-03-24 16:06:59 -0700802
803 if [ "${relative_path}" = "${path_abs_path}" ]; then
804 die "Error reinterpreting path. Path ${1} is not within source tree."
805 fi
806
807 # Prepend the chroot repository path.
808 echo "/home/${USER}/trunk/${relative_path}"
809 fi
810 else
811 # Path is already inside the chroot :).
812 echo "${1}"
813 fi
814}
Gabe Black83d8b822011-08-01 17:50:09 -0700815
Mike Frysinger6b1abb22012-05-11 13:44:06 -0400816emerge_custom_kernel() {
David James0ea96e42011-08-03 11:53:50 -0700817 local install_root="$1"
David Jamesdee866c2012-03-15 14:53:19 -0700818 local root=/build/${FLAGS_board}
David James0ea96e42011-08-03 11:53:50 -0700819 local tmp_pkgdir=${root}/custom-packages
820
821 # Clean up any leftover state in custom directories.
Mike Frysingera1a06ab2011-08-10 11:40:30 -0400822 sudo rm -rf "${tmp_pkgdir}"
David James0ea96e42011-08-03 11:53:50 -0700823
824 # Update chromeos-initramfs to contain the latest binaries from the build
825 # tree. This is basically just packaging up already-built binaries from
826 # $root. We are careful not to muck with the existing prebuilts so that
827 # prebuilts can be uploaded in parallel.
828 # TODO(davidjames): Implement ABI deps so that chromeos-initramfs will be
829 # rebuilt automatically when its dependencies change.
Mike Frysingera1a06ab2011-08-10 11:40:30 -0400830 sudo -E PKGDIR="${tmp_pkgdir}" $EMERGE_BOARD_CMD -1 \
David James0ea96e42011-08-03 11:53:50 -0700831 chromeos-base/chromeos-initramfs || die "Cannot emerge chromeos-initramfs"
832
833 # Verify all dependencies of the kernel are installed. This should be a
834 # no-op, but it's good to check in case a developer didn't run
Mike Frysinger0957a182012-03-21 23:17:14 -0400835 # build_packages. We need the expand_virtual call to workaround a bug
836 # in portage where it only installs the virtual pkg.
837 local kernel=$(portageq-${FLAGS_board} expand_virtual ${root} \
838 virtual/linux-sources)
Mike Frysingera1a06ab2011-08-10 11:40:30 -0400839 sudo -E PKGDIR="${tmp_pkgdir}" $EMERGE_BOARD_CMD --onlydeps \
David James0ea96e42011-08-03 11:53:50 -0700840 ${kernel} || die "Cannot emerge kernel dependencies"
841
842 # Build the kernel. This uses the standard root so that we can pick up the
843 # initramfs from there. But we don't actually install the kernel to the
844 # standard root, because that'll muck up the kernel debug symbols there,
845 # which we want to upload in parallel.
Mike Frysingera1a06ab2011-08-10 11:40:30 -0400846 sudo -E PKGDIR="${tmp_pkgdir}" $EMERGE_BOARD_CMD --buildpkgonly \
David James0ea96e42011-08-03 11:53:50 -0700847 ${kernel} || die "Cannot emerge kernel"
848
849 # Install the custom kernel to the provided install root.
Mike Frysingera1a06ab2011-08-10 11:40:30 -0400850 sudo -E PKGDIR="${tmp_pkgdir}" $EMERGE_BOARD_CMD --usepkgonly \
David James0ea96e42011-08-03 11:53:50 -0700851 --root=${install_root} ${kernel} || die "Cannot emerge kernel to root"
852}
Brian Harringfeb04f72012-02-03 21:22:50 -0800853
Mike Frysinger6b1abb22012-05-11 13:44:06 -0400854enable_strict_sudo() {
Brian Harringfeb04f72012-02-03 21:22:50 -0800855 if [ -z "$CROS_SUDO_KEEP_ALIVE" ]; then
856 echo "$0 was somehow invoked in a way that the sudo keep alive could"
857 echo "not be found. Failing due to this. See crosbug.com/18393."
858 exit 126
859 fi
860 function sudo {
861 `type -P sudo` -n "$@"
862 }
863}
Gilad Arnold207a7c72012-02-09 10:19:16 -0800864
Chris Wolfe21a27b72012-02-27 13:00:51 -0500865# Checks that stdin and stderr are both terminals.
866# If so, we assume that there is a live user we can interact with.
867# This check can be overridden by setting the CROS_NO_PROMPT environment
868# variable to a non-empty value.
Mike Frysinger6b1abb22012-05-11 13:44:06 -0400869is_interactive() {
Chris Wolfe21a27b72012-02-27 13:00:51 -0500870 [ -z "${CROS_NO_PROMPT}" -a -t 0 -a -t 2 ]
871}
872
Mike Frysinger6b1abb22012-05-11 13:44:06 -0400873assert_interactive() {
Chris Wolfe21a27b72012-02-27 13:00:51 -0500874 if ! is_interactive; then
875 die "Script ${0##*/} tried to get user input on a non-interactive terminal."
876 fi
877}
878
Gilad Arnold207a7c72012-02-09 10:19:16 -0800879# Selection menu with a default option: this is similar to bash's select
880# built-in, only that in case of an empty selection it'll return the default
881# choice. Like select, it uses PS3 as the prompt.
882#
883# $1: name of variable to be assigned the selected value; it better not be of
884# the form choose_foo to avoid conflict with local variables.
885# $2: default value to return in case of an empty user entry.
886# $3: value to return in case of an invalid choice.
887# $...: options for selection.
888#
889# Usage example:
890#
891# PS3="Select one [1]: "
892# choose reply "foo" "ERROR" "foo" "bar" "foobar"
893#
894# This will present the following menu and prompt:
895#
896# 1) foo
897# 2) bar
898# 3) foobar
899# Select one [1]:
900#
901# The return value will be stored in a variable named 'reply'. If the input is
902# 1, 2 or 3, the return value will be "foo", "bar" or "foobar", respectively.
903# If it is empty (i.e. the user clicked Enter) it will be "foo". Anything else
904# will return "ERROR".
Mike Frysinger6b1abb22012-05-11 13:44:06 -0400905choose() {
Gilad Arnold207a7c72012-02-09 10:19:16 -0800906 typeset -i choose_i=1
907
908 # Retrieve output variable name and default return value.
909 local choose_reply=$1
910 local choose_default="$2"
911 local choose_invalid="$3"
912 shift 3
913
914 # Select a return value
915 unset REPLY
916 if [ $# -gt 0 ]; then
Chris Wolfe21a27b72012-02-27 13:00:51 -0500917 assert_interactive
918
Gilad Arnold207a7c72012-02-09 10:19:16 -0800919 # Actual options provided, present a menu and prompt for a choice.
920 local choose_opt
921 for choose_opt in "$@"; do
Chris Wolfe21a27b72012-02-27 13:00:51 -0500922 echo "$choose_i) $choose_opt" >&2
Gilad Arnold207a7c72012-02-09 10:19:16 -0800923 choose_i=choose_i+1
924 done
925 read -p "$PS3"
926 fi
927 # Filter out strings containing non-digits.
928 if [ "${REPLY}" != "${REPLY%%[!0-9]*}" ]; then
929 REPLY=0
930 fi
931 choose_i="${REPLY}"
932
933 if [ $choose_i -ge 1 -a $choose_i -le $# ]; then
934 # Valid choice, return the corresponding value.
935 eval ${choose_reply}="${!choose_i}"
936 elif [ -z "${REPLY}" ]; then
937 # Empty choice, return default value.
938 eval ${choose_reply}="${choose_default}"
939 else
940 # Invalid choice, return corresponding value.
941 eval ${choose_reply}="${choose_invalid}"
942 fi
943}
David James855afb72012-03-14 20:04:59 -0700944
945# Display --help if requested. This is used to hide options from help
946# that are not intended for developer use.
947#
948# How to use:
949# 1) Declare the options that you want to appear in help.
950# 2) Call this function.
951# 3) Declare the options that you don't want to appear in help.
952#
953# See build_packages for example usage.
Mike Frysinger6b1abb22012-05-11 13:44:06 -0400954show_help_if_requested() {
David James855afb72012-03-14 20:04:59 -0700955 for opt in "$@"; do
956 if [ "$opt" = "-h" ] || [ "$opt" = "--help" ]; then
957 flags_help
958 exit 0
959 fi
960 done
961}
Brian Harring7f175a52012-03-02 05:37:00 -0800962
Mike Frysinger6b1abb22012-05-11 13:44:06 -0400963switch_to_strict_mode() {
Brian Harring7f175a52012-03-02 05:37:00 -0800964 # Set up strict execution mode; note that the trap
965 # must follow switch_to_strict_mode, else it will have no effect.
966 set -e
967 trap 'die_err_trap "${BASH_COMMAND:-command unknown}" "$?"' ERR
968 if [ $# -ne 0 ]; then
969 set "$@"
970 fi
971}
972
973# TODO: Re-enable this once shflags is set -e safe.
974#switch_to_strict_mode