This is an automated email from the git hooks/post-receive script.
bernie.ogden pushed a commit to branch bernie/fs in repository toolchain/abe.
commit d8e109ebc58ae81c71388ef57f114fd24ff37f16 Author: Bernard Ogden bernie.ogden@linaro.org Date: Wed Jul 29 14:03:12 2015 +0200
Run second-stage for foreign chroots
Change-Id: I4b00aae017377562a3d50d2ce4d17094eb93d8f0 --- config/bench/fs/makefs.sh | 6 ++++++ 1 file changed, 6 insertions(+)
diff --git a/config/bench/fs/makefs.sh b/config/bench/fs/makefs.sh index 2e87bc0..8e00c91 100755 --- a/config/bench/fs/makefs.sh +++ b/config/bench/fs/makefs.sh @@ -68,6 +68,12 @@ function genrootfs { ${foreign:-} \ "${suite}" "${outdir}" \ http://snapshot.debian.org/archive/debian/%24%7Bstamp%7D + + #This depends on the relevant kernel magic being in place to execute + #arm/aarch64 code on qemu, and the relevant qemu being installed + if test x"${foreign:-}" != x; then + sudo /usr/sbin/debootstrap --second-stage --second-stage-target="${outdir}" + fi }