Index: src/scripts/build_autotest.sh |
diff --git a/src/scripts/build_autotest.sh b/src/scripts/build_autotest.sh |
index 45c344791edb4580b55c3971ed218665c906d4a5..5614a8107749d987c77ba7aa516717e3cfaba352 100755 |
--- a/src/scripts/build_autotest.sh |
+++ b/src/scripts/build_autotest.sh |
@@ -11,6 +11,9 @@ |
# The user can later run autotest against an ssh enabled test client system, or |
# install the compiled client tests directly onto the rootfs image. |
-# Includes common already |
-./autotest --build=all $@ |
+. "$(dirname "$0")/common.sh" |
+ |
+get_default_board |
+ |
+./autotest --build=all --board="${DEFAULT_BOARD}" $@ |
petkov
2010/04/07 23:45:46
So now you can't pass --board to build_autotest an
|