summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2016-12-03 09:19:01 +0100
committerWaldemar Brodkorb <wbx@openadk.org>2016-12-03 09:19:10 +0100
commit79dae6bc69db7148f5159e7feb8a1d49803f6c89 (patch)
treec2310f67d8d3da752e9a14e7473fbee66d762b7e
parent7a931304ea4485829432c4efa1a0a1597b0c953e (diff)
skip ssp for microblaze
-rwxr-xr-xembedded-test.sh10
1 files changed, 9 insertions, 1 deletions
diff --git a/embedded-test.sh b/embedded-test.sh
index 5bd8b23..97cb65e 100755
--- a/embedded-test.sh
+++ b/embedded-test.sh
@@ -545,6 +545,7 @@ get_arch_info() {
qemu=qemu-system-microblazeel
qemu_machine=petalogix-s3adsp1800
suffix=${cpu_arch}${endian}
+ skipssp=microblazeel
;;
microblazebe)
allowed_libc="uclibc-ng musl glibc newlib"
@@ -559,6 +560,7 @@ get_arch_info() {
qemu=qemu-system-microblaze
qemu_machine=petalogix-s3adsp1800
suffix=${cpu_arch}
+ skipssp=microblazebe
;;
mips)
allowed_libc="uclibc-ng musl glibc newlib"
@@ -1343,7 +1345,7 @@ build() {
done
# refresh after any changes to config
- yes|make oldconfig
+ yes|make oldconfig >/dev/null
if [ $clean -eq 1 ]; then
echo "cleaning openadk build directory"
@@ -1567,6 +1569,12 @@ for lib in ${libc}; do
continue
fi
fi
+ if [ $ssp -eq 1 ]; then
+ if [ "$arch" = "$skipssp" ]; then
+ echo "Skipping $skipssp"
+ continue
+ fi
+ fi
# skip nsim
if [ $skipnsim -eq 1 ]; then
if [[ "$arch" = arcv* ]]; then