You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I can only use the virtio interface for both the hdd + cdrom on this system. So I can't use virtio-scsi, sata, ide....etc
unsupported bus type 'virtio-scsi'
So I can't utilize this "fix" hashicorp/packer#10211 (comment)
As that comment shows, people were experiencing this exact issue years ago.
There's a device conflict:
The error I'm getting is
qemu-system-aarch64: -drive file=boot.iso,if=virtio,id=cdrom0,media=cdrom,index=0: drive with bus=0, unit=0 (index=0) exists](qemu-system-aarch64: -drive file=boot.iso,if=virtio,index=0,id=cdrom0,media=cdrom: drive with bus=0, unit=0 (index=0) exists)
Normally when I'm running qemu manually on my system, I use the following argument
-cdrom boot.iso
and that works fine. But packer seems very opinionated in this area and forces the use of the -drive argument
I would like to request one of the following two features.
Allow both cdrom & disk to use the virtio interfaces.
The same logic already exists here for the virtio-scsi interface: 221d5f9
Create an additional iso_manual_args option (or something like that) that would be mutually exclusive with iso_url(s)
So that users could simply manually specify the cdrom args themselves.
Currently packer enforces the use of iso_url
One of iso_url or iso_urls must be specified
The text was updated successfully, but these errors were encountered:
I'm running into this exact same issue with
qemu-system-aarch64
(running on a macbook m2)except it's with the
virtio
interface.#35
The issue is two fold.
virtio
interface for both the hdd + cdrom on this system. So I can't usevirtio-scsi
,sata
,ide
....etcSo I can't utilize this "fix" hashicorp/packer#10211 (comment)
As that comment shows, people were experiencing this exact issue years ago.
The error I'm getting is
Normally when I'm running
qemu
manually on my system, I use the following argumentand that works fine. But
packer
seems very opinionated in this area and forces the use of the-drive
argumentI would like to request one of the following two features.
Allow both cdrom & disk to use the
virtio
interfaces.The same logic already exists here for the
virtio-scsi
interface:221d5f9
Create an additional
iso_manual_args
option (or something like that) that would be mutually exclusive withiso_url(s)
So that users could simply manually specify the cdrom args themselves.
Currently
packer
enforces the use ofiso_url
The text was updated successfully, but these errors were encountered: