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 enter the chroot environment | 7 # Script to enter the chroot environment |
8 | 8 |
9 # Load common constants. This should be the first executable line. | 9 # Load common constants. This should be the first executable line. |
10 # The path to common.sh should be relative to your script's location. | 10 # The path to common.sh should be relative to your script's location. |
(...skipping 260 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
271 # Note that this fixes $CHROMEOS_REVISION at the time the chroot is | 271 # Note that this fixes $CHROMEOS_REVISION at the time the chroot is |
272 # entered. That's ok for the main use case of automated builds, | 272 # entered. That's ok for the main use case of automated builds, |
273 # which pass each command line into a separate call to enter_chroot | 273 # which pass each command line into a separate call to enter_chroot |
274 # so always have up-to-date info. For developer builds, there may not | 274 # so always have up-to-date info. For developer builds, there may not |
275 # be a single revision, since the developer may have | 275 # be a single revision, since the developer may have |
276 # hand-sync'd some subdirs and edited files in others. | 276 # hand-sync'd some subdirs and edited files in others. |
277 # In that case, check against origin/HEAD and mark** revision. | 277 # In that case, check against origin/HEAD and mark** revision. |
278 # Use git:8 chars of sha1 | 278 # Use git:8 chars of sha1 |
279 REVISION=$(cd ${FLAGS_trunk}/src/scripts ; git rev-parse --short=8 HEAD) | 279 REVISION=$(cd ${FLAGS_trunk}/src/scripts ; git rev-parse --short=8 HEAD) |
280 CHROOT_PASSTHRU="CHROMEOS_REVISION=$REVISION BUILDBOT_BUILD=$FLAGS_build_number CHROMEOS_OFFICIAL=$CHROMEOS_OFFICIAL" | 280 CHROOT_PASSTHRU="CHROMEOS_REVISION=$REVISION BUILDBOT_BUILD=$FLAGS_build_number CHROMEOS_OFFICIAL=$CHROMEOS_OFFICIAL" |
281 | |
282 # Adding OEM AU APPID to CHROOT_PASSTHRU | |
petkov
2010/11/17 04:55:17
Add a period. Or remove the comment -- kind of obv
Raja Aluri
2010/11/17 22:58:45
Done.
| |
283 CHROOT_PASSTHRU="CHROMEOS_RELEASE_APPID=${CHROMEOS_RELEASE_APPID:-"{DEV-BUILD}"} \ | |
petkov
2010/11/17 04:55:17
This is not 80 chars. Maybe you can move the \ to
Raja Aluri
2010/11/17 22:58:45
Done.
| |
284 ${CHROOT_PASSTHRU}" | |
285 | |
281 if [ -d "$HOME/.subversion" ]; then | 286 if [ -d "$HOME/.subversion" ]; then |
282 # Bind mounting .subversion into chroot | 287 # Bind mounting .subversion into chroot |
283 info "mounting ~/.subversion into chroot" | 288 info "mounting ~/.subversion into chroot" |
284 MOUNTED_PATH="$(readlink -f "${FLAGS_chroot}/home/${USER}/.subversion")" | 289 MOUNTED_PATH="$(readlink -f "${FLAGS_chroot}/home/${USER}/.subversion")" |
285 if [ -z "$(mount | grep -F "on $MOUNTED_PATH ")" ]; then | 290 if [ -z "$(mount | grep -F "on $MOUNTED_PATH ")" ]; then |
286 mkdir -p "$MOUNTED_PATH" | 291 mkdir -p "$MOUNTED_PATH" |
287 sudo mount --bind "$HOME/.subversion" "$MOUNTED_PATH" || \ | 292 sudo mount --bind "$HOME/.subversion" "$MOUNTED_PATH" || \ |
288 die "Could not mount $MOUNTED_PATH" | 293 die "Could not mount $MOUNTED_PATH" |
289 fi | 294 fi |
290 fi | 295 fi |
291 | 296 |
292 # Configure committer username and email in chroot .gitconfig | 297 # Configure committer username and email in chroot .gitconfig |
293 git config -f ${FLAGS_chroot}/home/${USER}/.gitconfig --replace-all user.name \ | 298 git config -f ${FLAGS_chroot}/home/${USER}/.gitconfig --replace-all user.name \ |
294 "$(cd /tmp; git var GIT_COMMITTER_IDENT | sed -e 's/ *<.*//')" | 299 "$(cd /tmp; git var GIT_COMMITTER_IDENT | sed -e 's/ *<.*//')" |
295 git config -f ${FLAGS_chroot}/home/${USER}/.gitconfig --replace-all user.email \ | 300 git config -f ${FLAGS_chroot}/home/${USER}/.gitconfig --replace-all user.email \ |
296 "$(cd /tmp; git var GIT_COMMITTER_IDENT | sed -e 's/.*<\([^>]*\)>.*/\1/')" | 301 "$(cd /tmp; git var GIT_COMMITTER_IDENT | sed -e 's/.*<\([^>]*\)>.*/\1/')" |
297 | 302 |
298 # Run command or interactive shell. Also include the non-chrooted path to | 303 # Run command or interactive shell. Also include the non-chrooted path to |
299 # the source trunk for scripts that may need to print it (e.g. | 304 # the source trunk for scripts that may need to print it (e.g. |
300 # build_image.sh). | 305 # build_image.sh). |
301 sudo chroot "$FLAGS_chroot" sudo -i -u $USER $CHROOT_PASSTHRU \ | 306 sudo chroot "$FLAGS_chroot" sudo -i -u $USER $CHROOT_PASSTHRU \ |
302 EXTERNAL_TRUNK_PATH="${FLAGS_trunk}" LANG=C SSH_AGENT_PID="${SSH_AGENT_PID}" \ | 307 EXTERNAL_TRUNK_PATH="${FLAGS_trunk}" LANG=C SSH_AGENT_PID="${SSH_AGENT_PID}" \ |
303 SSH_AUTH_SOCK="${SSH_AUTH_SOCK}" -- "$@" | 308 SSH_AUTH_SOCK="${SSH_AUTH_SOCK}" -- "$@" |
304 | 309 |
305 # Remove trap and explicitly unmount | 310 # Remove trap and explicitly unmount |
306 trap - EXIT | 311 trap - EXIT |
307 teardown_env | 312 teardown_env |
OLD | NEW |