Files
src/tests/ci/Makefile.powerpc64
T
Siva Mahadevan 9ec37e8ff4 tests/ci: Use QEMU blockdev declaration for all platforms
This patch uses the QEMU manpage-recommended '-blockdev' option instead
of '-drive' to declare block devices. This also makes the mandatory
'-device' declarations constant across all platforms, which fixes the
missing QEMU_DEVICES tarfs device declarations on all Makefile.<arch>
files.

Signed-off-by: Siva Mahadevan <me@svmhdvn.name>
Reviewed by:	imp, lwhsu
Sponsored by:	The FreeBSD Foundation
Differential Revision:	https://reviews.freebsd.org/D51479
2025-07-26 05:52:32 +08:00

28 lines
715 B
Makefile

# SPDX-License-Identifier: BSD-2-Clause
#
# Copyright (c) 2024 The FreeBSD Foundation
#
# This software was developed by Cybermancer Infosec <bofh@FreeBSD.org>
# under sponsorship from the FreeBSD Foundation.
#
# CI Makefile for powerpc64.
#
QEMU_ARCH=ppc64
QEMU_EXTRA_PARAM=-vga none -accel tcg,thread=multi
QEMU_MACHINE=pseries,cap-hpt-max-page-size=16M
QEMU_MAX_CPU_COUNT=1
QEMU_MAX_MEM_SIZE=64
portinstall-powerpc64: portinstall-pkg .PHONY
@true
# NOTE: Nothing should be changed below this line unless explicitly required.
ci-buildworld-powerpc64: ci-buildworld .PHONY
ci-buildkernel-powerpc64: ci-buildkernel .PHONY
ci-buildimage-powerpc64: ci-buildimage .PHONY
ci-runtest-powerpc64: ci-runtest .PHONY