Add qemu_multiarch_testing/

Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
This commit is contained in:
Denys Vlasenko
2015-10-05 09:04:04 +02:00
parent 28b00ce6ff
commit 12efcf3285
6 changed files with 193 additions and 0 deletions

View File

@ -0,0 +1,9 @@
#!/bin/sh
# Emit a msg to let user know this place was reached
echo "Copying to /home"
# Had a case where cp SEGVs, let's have diagnostics for it
cp -a /mnt /home || { echo "cp: $?"; exit 1; }
cd /home/mnt || { echo "cd: $?"; exit 1; }
exec ./build
echo "Failed to exec ./build"