blob: e613df58ebdbb4cbff1d18452d88e4dcb94cb740 [file] [log] [blame]
rspangler@google.comd74220d2009-10-09 20:56:14 +00001# Copyright (c) 2009 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# 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'.
10# TODO: Re-enable this once shflags is less prone to dying.
11#set -e
12
13# The number of jobs to pass to tools that can run in parallel (such as make
14# and dpkg-buildpackage
Alexey Marinichev63c42aa2009-12-21 11:42:39 -080015NUM_JOBS=`grep -c "^processor" /proc/cpuinfo`
rspangler@google.comd74220d2009-10-09 20:56:14 +000016
17# Store location of the calling script.
18TOP_SCRIPT_DIR="${TOP_SCRIPT_DIR:-$(dirname $0)}"
19
20# Find root of source tree
21if [ "x$GCLIENT_ROOT" != "x" ]
22then
23 # GCLIENT_ROOT already set, so we're done
24 true
25elif [ "x$COMMON_SH" != "x" ]
26then
27 # COMMON_SH set, so assume that's us
28 GCLIENT_ROOT="$(dirname "$COMMON_SH")/../.."
29elif [ "x$BASH_SOURCE" != "x" ]
30then
31 # Using bash, so we can find ourselves
32 GCLIENT_ROOT="$(dirname "$BASH_SOURCE")/../.."
33else
tedbo4f44d9e2010-01-08 17:26:11 -080034 # Using dash or sh, we don't know where we are. $0 refers to the calling
rspangler@google.comd74220d2009-10-09 20:56:14 +000035 # script, not ourselves, so that doesn't help us.
36 echo "Unable to determine location for common.sh. If you are sourcing"
37 echo "common.sh from a script run via dash or sh, you must do it in the"
38 echo "following way:"
39 echo ' COMMON_SH="$(dirname "$0")/../../scripts/common.sh"'
40 echo ' . "$COMMON_SH"'
41 echo "where the first line is the relative path from your script to"
42 echo "common.sh."
43 exit 1
44fi
45
46# Canonicalize the directories for the root dir and the calling script.
47# readlink is part of coreutils and should be present even in a bare chroot.
tedbo4f44d9e2010-01-08 17:26:11 -080048# This is better than just using
rspangler@google.comd74220d2009-10-09 20:56:14 +000049# FOO = "$(cd $FOO ; pwd)"
tedbo4f44d9e2010-01-08 17:26:11 -080050# since that leaves symbolic links intact.
rspangler@google.comd74220d2009-10-09 20:56:14 +000051# Note that 'realpath' is equivalent to 'readlink -f'.
52TOP_SCRIPT_DIR=`readlink -f $TOP_SCRIPT_DIR`
53GCLIENT_ROOT=`readlink -f $GCLIENT_ROOT`
54
55# Other directories should always be pathed down from GCLIENT_ROOT.
56SRC_ROOT="$GCLIENT_ROOT/src"
57SRC_INTERNAL="$GCLIENT_ROOT/src-internal"
58SCRIPTS_DIR="$SRC_ROOT/scripts"
59
60# Load developer's custom settings. Default location is in scripts dir,
61# since that's available both inside and outside the chroot. By convention,
62# settings from this file are variables starting with 'CHROMEOS_'
63CHROMEOS_DEV_SETTINGS="${CHROMEOS_DEV_SETTINGS:-$SCRIPTS_DIR/.chromeos_dev}"
64if [ -f $CHROMEOS_DEV_SETTINGS ]
65then
66 # Turn on exit-on-error during custom settings processing
67 SAVE_OPTS=`set +o`
68 set -e
69
70 # Read settings
71 . $CHROMEOS_DEV_SETTINGS
72
73 # Restore previous state of exit-on-error
74 eval "$SAVE_OPTS"
75fi
76
77# Load shflags
78. "$SRC_ROOT/third_party/shflags/files/src/shflags"
79
Bill Richardson10d27c22010-01-20 13:38:50 -080080# Our local mirror
81DEFAULT_CHROMEOS_SERVER=${CHROMEOS_SERVER:-"http://build.chromium.org/mirror"}
rspangler@google.comd74220d2009-10-09 20:56:14 +000082
Bill Richardson10d27c22010-01-20 13:38:50 -080083# Upstream mirrors and build suites come in 2 flavors
84# DEV - development chroot, used to build the chromeos image
85# IMG - bootable image, to run on actual hardware
rspangler@google.comd74220d2009-10-09 20:56:14 +000086
Bill Richardson10d27c22010-01-20 13:38:50 -080087DEFAULT_DEV_MIRROR=${CHROMEOS_DEV_MIRROR:-"${DEFAULT_CHROMEOS_SERVER}/ubuntu"}
88DEFAULT_DEV_SUITE=${CHROMEOS_DEV_SUITE:-"karmic"}
89
90DEFAULT_IMG_MIRROR=${CHROMEOS_IMG_MIRROR:-"${DEFAULT_CHROMEOS_SERVER}/ubuntu"}
91DEFAULT_IMG_SUITE=${CHROMEOS_IMG_SUITE:-"karmic"}
rspangler@google.comd74220d2009-10-09 20:56:14 +000092
93# Default location for chroot
94DEFAULT_CHROOT_DIR=${CHROMEOS_CHROOT_DIR:-"$GCLIENT_ROOT/chroot"}
95
96# All output files from build should go under $DEFAULT_BUILD_ROOT, so that
97# they don't pollute the source directory.
98DEFAULT_BUILD_ROOT=${CHROMEOS_BUILD_ROOT:-"$SRC_ROOT/build"}
99
100# Detect whether we're inside a chroot or not
101if [ -e /etc/debian_chroot ]
102then
103 INSIDE_CHROOT=1
104else
105 INSIDE_CHROOT=0
106fi
107
108# Directory locations inside the dev chroot
109CHROOT_TRUNK_DIR="/home/$USER/trunk"
110
David McMahonb7eb3a22010-02-09 14:07:40 -0800111# Check to ensure not running old scripts
112V_REVERSE=''
113V_VIDOFF=''
114case "$(basename $0)" in
115 build_image.sh|build_platform_packages.sh|customize_rootfs.sh|make_chroot.sh)
116 echo
117 echo "$V_REVERSE============================================================"
118 echo "=========================== WARNING ======================"
119 echo "============================================================$V_VIDOFF"
120 echo
121 echo "RUNNING OLD BUILD SYSTEM SCRIPTS. RUN THE PORTAGE-BASED BUILD HERE:"
122 echo "http://www.chromium.org/chromium-os/building-chromium-os/portage-based-build"
123 echo
124 if [ "$USER" != "chrome-bot" ]
125 then
126 read -n1 -p "Press any key to continue using the OLD build system..."
127 echo
128 echo
129 fi
130 ;;
131esac
132
rspangler@google.comd74220d2009-10-09 20:56:14 +0000133# -----------------------------------------------------------------------------
134# Functions
135
136# Make a package
137function make_pkg_common {
138 # Positional parameters from calling script. :? means "fail if unset".
139 set -e
140 PKG_BASE=${1:?}
141 shift
142 set +e
tedbo4f44d9e2010-01-08 17:26:11 -0800143
rspangler@google.comd74220d2009-10-09 20:56:14 +0000144 # All packages are built in the chroot
145 assert_inside_chroot
146
147 # Command line options
148 DEFINE_string build_root "$DEFAULT_BUILD_ROOT" "Root of build output"
149
150 # Parse command line and update positional args
151 FLAGS "$@" || exit 1
152 eval set -- "${FLAGS_ARGV}"
153
154 # Die on any errors
155 set -e
156
157 # Make output dir
158 OUT_DIR="$FLAGS_build_root/x86/local_packages"
159 mkdir -p "$OUT_DIR"
160
161 # Remove previous package from output dir
162 rm -f "$OUT_DIR"/${PKG_BASE}_*.deb
163
164 # Rebuild the package
165 pushd "$TOP_SCRIPT_DIR"
166 rm -f ../${PKG_BASE}_*.deb
167 dpkg-buildpackage -b -tc -us -uc -j$NUM_JOBS
168 mv ../${PKG_BASE}_*.deb "$OUT_DIR"
169 rm ../${PKG_BASE}_*.changes
170 popd
171}
172
173# Fail unless we're inside the chroot. This guards against messing up your
174# workstation.
175function assert_inside_chroot {
176 if [ $INSIDE_CHROOT -ne 1 ]
177 then
178 echo "This script must be run inside the chroot. Run this first:"
179 echo " $SCRIPTS_DIR/enter_chroot.sh"
180 exit 1
181 fi
182}
183
184# Fail if we're inside the chroot. This guards against creating or entering
185# nested chroots, among other potential problems.
186function assert_outside_chroot {
187 if [ $INSIDE_CHROOT -ne 0 ]
188 then
189 echo "This script must be run outside the chroot."
190 exit 1
191 fi
192}
193
derat@google.com86dcc8e2009-11-21 19:49:49 +0000194function assert_not_root_user {
195 if [ `id -u` = 0 ]; then
196 echo "This script must be run as a non-root user."
197 exit 1
198 fi
199}
200
rspangler@google.comd74220d2009-10-09 20:56:14 +0000201# Install a package if it's not already installed
202function install_if_missing {
203 # Positional parameters from calling script. :? means "fail if unset".
204 PKG_NAME=${1:?}
205 shift
206
207 if [ -z `which $PKG_NAME` ]
208 then
209 echo "Can't find $PKG_NAME; attempting to install it."
210 sudo apt-get --yes --force-yes install $PKG_NAME
211 fi
212}
Steve VanDeBogart8174ba02010-01-15 19:45:30 -0800213
214# Returns true if the input file is whitelisted.
215#
216# $1 - The file to check
217is_whitelisted() {
David McMahonb7eb3a22010-02-09 14:07:40 -0800218 local file=$1
Steve VanDeBogart8174ba02010-01-15 19:45:30 -0800219 local whitelist="$FLAGS_whitelist"
220 test -f "$whitelist" || (echo "Whitelist file missing ($whitelist)" && exit 1)
221
222 local checksum=$(md5sum "$file" | awk '{ print $1 }')
223 local count=$(sed -e "s/#.*$//" "${whitelist}" | grep -c "$checksum" \
224 || /bin/true)
225 test $count -ne 0
226}