Path: blob/main/jobs/FreeBSD-main-powerpc64-test/build.sh
1130 views
#!/bin/sh12export TARGET=powerpc3export TARGET_ARCH=powerpc644export USE_QEMU=15export QEMU_ARCH="ppc64"6# The cap-hpt-max-page-size is to get rid of the "mmu_phyp: Support for hugepages not found"7# warning on boot. It's expected to improve performance.8export QEMU_MACHINE="pseries,cap-hpt-max-page-size=16M"9# XXX: Note the reversed order; otherwise the metadisk would end up as vtbd010export QEMU_DEVICES="-device virtio-blk,drive=hd1 -device virtio-blk,drive=hd0"11# The -accel tcg,thread=multi is supposed to improve performance.12export QEMU_EXTRA_PARAM="-vga none -accel tcg,thread=multi"13# powerpc64 VM often hangs after "Launching APs" with SMP >1 in TCG mode14export VM_CPU_COUNT="1"1516export USE_TEST_SUBR="17disable-disks-tests.sh18disable-dtrace-tests.sh19disable-zfs-tests.sh20disable-notyet-tests.sh21run-kyua.sh22"2324sh -x freebsd-ci/scripts/test/run-tests.sh252627