| 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 | 281 CHROOT_PASSTHRU="${CHROOT_PASSTHRU} \ |
| 282 # Adding OEM AU APPID to CHROOT_PASSTHRU | 282 CHROMEOS_RELEASE_APPID=${CHROMEOS_RELEASE_APPID:-"{DEV-BUILD}"}" |
| 283 CHROOT_PASSTHRU="CHROMEOS_RELEASE_APPID=${CHROMEOS_RELEASE_APPID:-"{DEV-BUILD}"}
\ | |
| 284 ${CHROOT_PASSTHRU}" | |
| 285 | 283 |
| 286 if [ -d "$HOME/.subversion" ]; then | 284 if [ -d "$HOME/.subversion" ]; then |
| 287 # Bind mounting .subversion into chroot | 285 # Bind mounting .subversion into chroot |
| 288 info "mounting ~/.subversion into chroot" | 286 info "mounting ~/.subversion into chroot" |
| 289 MOUNTED_PATH="$(readlink -f "${FLAGS_chroot}/home/${USER}/.subversion")" | 287 MOUNTED_PATH="$(readlink -f "${FLAGS_chroot}/home/${USER}/.subversion")" |
| 290 if [ -z "$(mount | grep -F "on $MOUNTED_PATH ")" ]; then | 288 if [ -z "$(mount | grep -F "on $MOUNTED_PATH ")" ]; then |
| 291 mkdir -p "$MOUNTED_PATH" | 289 mkdir -p "$MOUNTED_PATH" |
| 292 sudo mount --bind "$HOME/.subversion" "$MOUNTED_PATH" || \ | 290 sudo mount --bind "$HOME/.subversion" "$MOUNTED_PATH" || \ |
| 293 die "Could not mount $MOUNTED_PATH" | 291 die "Could not mount $MOUNTED_PATH" |
| 294 fi | 292 fi |
| 295 fi | 293 fi |
| 296 | 294 |
| 297 # Configure committer username and email in chroot .gitconfig | 295 # Configure committer username and email in chroot .gitconfig |
| 298 git config -f ${FLAGS_chroot}/home/${USER}/.gitconfig --replace-all user.name \ | 296 git config -f ${FLAGS_chroot}/home/${USER}/.gitconfig --replace-all user.name \ |
| 299 "$(cd /tmp; git var GIT_COMMITTER_IDENT | sed -e 's/ *<.*//')" | 297 "$(cd /tmp; git var GIT_COMMITTER_IDENT | sed -e 's/ *<.*//')" |
| 300 git config -f ${FLAGS_chroot}/home/${USER}/.gitconfig --replace-all user.email \ | 298 git config -f ${FLAGS_chroot}/home/${USER}/.gitconfig --replace-all user.email \ |
| 301 "$(cd /tmp; git var GIT_COMMITTER_IDENT | sed -e 's/.*<\([^>]*\)>.*/\1/')" | 299 "$(cd /tmp; git var GIT_COMMITTER_IDENT | sed -e 's/.*<\([^>]*\)>.*/\1/')" |
| 302 | 300 |
| 303 # Run command or interactive shell. Also include the non-chrooted path to | 301 # Run command or interactive shell. Also include the non-chrooted path to |
| 304 # the source trunk for scripts that may need to print it (e.g. | 302 # the source trunk for scripts that may need to print it (e.g. |
| 305 # build_image.sh). | 303 # build_image.sh). |
| 306 sudo chroot "$FLAGS_chroot" sudo -i -u $USER $CHROOT_PASSTHRU \ | 304 sudo chroot "$FLAGS_chroot" sudo -i -u $USER $CHROOT_PASSTHRU \ |
| 307 EXTERNAL_TRUNK_PATH="${FLAGS_trunk}" LANG=C SSH_AGENT_PID="${SSH_AGENT_PID}" \ | 305 EXTERNAL_TRUNK_PATH="${FLAGS_trunk}" LANG=C SSH_AGENT_PID="${SSH_AGENT_PID}" \ |
| 308 SSH_AUTH_SOCK="${SSH_AUTH_SOCK}" -- "$@" | 306 SSH_AUTH_SOCK="${SSH_AUTH_SOCK}" -- "$@" |
| 309 | 307 |
| 310 # Remove trap and explicitly unmount | 308 # Remove trap and explicitly unmount |
| 311 trap - EXIT | 309 trap - EXIT |
| 312 teardown_env | 310 teardown_env |
| OLD | NEW |