I'm trying to install FreeBSD 13.0 ppc64le in KVM running on POWER9. Currently, it's failing with the following:
Here's the command I ran to create the virtual machine:
Configuration
I've never really run into issues installing FreeBSD before and would appreciate some guidance as to getting it booting. This would allow me to use that configuration in my lab to build and test software.
Code:
Running: virsh --connect qemu:///system console freebsd13-ppc64le-01
Connected to domain freebsd13-ppc64le-01
Escape character is ^]
Populating /vdevice methods
Populating /vdevice/vty@30000000
Populating /vdevice/nvram@71000000
Populating /pci@800000020000000
00 0800 (D) : 1af4 1000 virtio [ net ]
00 1000 (D) : 1b36 000d serial bus [ usb-xhci ]
00 1800 (D) : 1af4 1004 virtio [ scsi ]
Populating /pci@800000020000000/scsi@3
SCSI: Looking for devices
100000000000000 CD-ROM : "QEMU QEMU CD-ROM 2.5+"
00 2000 (D) : 1af4 1003 virtio [ serial ]
00 2800 (D) : 1af4 1001 virtio [ block ]
00 3000 (D) : 1af4 1002 legacy-device*
No NVRAM common partition, re-initializing...
Scanning USB
XHCI: Initializing
Using default console: /vdevice/vty@30000000
Welcome to Open Firmware
Copyright (c) 2004, 2017 IBM Corporation All rights reserved.
This program and the accompanying materials are made available
under the terms of the BSD License available at
http://www.opensource.org/licenses/bsd-license.php
Trying to load: from: /pci@800000020000000/scsi@3/disk@100000000000000 ... Successfully loaded
Consoles: Open Firmware console
FreeBSD/powerpc64le Open Firmware loader, Revision 0.1
Memory: 262144KB
Booted from: /pci@800000020000000/scsi@3/disk@100000000000000
Loading /boot/defaults/loader.conf
don't know how to load module '/boot/kernel/kernel'
can't load 'kernel'
Type '?' for a list of commands, 'help' for more detailed help.[/ICODE]
Here's the command I ran to create the virtual machine:
Code:
virt-install \
--name freebsd13-ppc64le-01 \
--memory 2048 \
--virt-type=kvm \
--disk pool=default,size=64,format=qcow2 \
--vcpus=1 \
--network network=br0 \
--os-variant freebsd13.0 \
--graphics none \
--cdrom /var/lib/libvirt/boot/FreeBSD-13.0-RELEASE-powerpc-powerpc64le-dvd1.iso \
--debug \
--force
Configuration
- Talos II (POWER9)
- Ubuntu Server 20.04 ppc64le
- KVM
I've never really run into issues installing FreeBSD before and would appreciate some guidance as to getting it booting. This would allow me to use that configuration in my lab to build and test software.