Path: blob/main/jobs/FreeBSD-main-armv7-test/build.sh
1130 views
#!/bin/sh12export TARGET=arm3export TARGET_ARCH=armv74export USE_QEMU=15export QEMU_ARCH="arm"6export QEMU_MACHINE="virt"7# XXX: U-Boot gets confused with two virtio drives.8export QEMU_DEVICES="-device virtio-blk,drive=hd0 -device ahci,id=ahci -device ide-hd,drive=hd1,bus=ahci.0"9export QEMU_EXTRA_PARAM="-bios /usr/local/share/u-boot/u-boot-qemu-arm/u-boot.bin"1011# U-Boot hangs with 4G.12export VM_MEM_SIZE="3g"1314# XXX: Temporary, to compare performance results.15export VM_CPU_COUNT=11617export USE_TEST_SUBR="18disable-disks-tests.sh19disable-dtrace-tests.sh20disable-zfs-tests.sh21disable-notyet-tests.sh22run-kyua.sh23"2425sh -x freebsd-ci/scripts/test/run-tests.sh262728