diff options
Diffstat (limited to 'scripts/bulk-qemu.sh')
-rw-r--r-- | scripts/bulk-qemu.sh | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/scripts/bulk-qemu.sh b/scripts/bulk-qemu.sh new file mode 100644 index 000000000..491a695c8 --- /dev/null +++ b/scripts/bulk-qemu.sh @@ -0,0 +1,12 @@ +#!/bin/sh + +for libc in glibc musl uclibc; do + for arch in $(cat toolchain/$libc/arch.lst);do + make VERBOSE=1 ADK_TARGET_ARCH=$arch ADK_TARGET_SYSTEM=qemu-$arch ADK_TARGET_LIBC=$libc ADK_TARGET_FS=initramfspiggyback defconfig all + if [ $? -ne 0 ];then + echo "build failed" + exit 1 + fi + done +done + |