1# SPDX-License-Identifier: BSD-2-Clause 2# 3# Copyright (c) 2024 The FreeBSD Foundation 4# 5# This software was developed by Cybermancer Infosec <bofh@FreeBSD.org> 6# under sponsorship from the FreeBSD Foundation. 7# 8# CI Makefile for powerpc64le. 9# 10QEMU_ARCH=ppc64 11QEMU_DEVICES=-device virtio-blk,drive=hd0 12QEMU_EXTRA_PARAM=-vga none -accel tcg,thread=multi 13QEMU_MACHINE=pseries,cap-hpt-max-page-size=16M 14QEMU_MAX_CPU_COUNT=1 15QEMU_MAX_MEM_SIZE=64 16 17portinstall-powerpc64le: portinstall-pkg .PHONY 18 @true 19 20# NOTE: Nothing should be changed below this line unless explicitly required. 21 22ci-buildworld-powerpc64le: ci-buildworld .PHONY 23 24ci-buildkernel-powerpc64le: ci-buildkernel .PHONY 25 26ci-buildimage-powerpc64le: ci-buildimage .PHONY 27 28ci-runtest-powerpc64le: ci-runtest .PHONY 29