I have tuples for multiple linux distributions: xenial, bionic, buster for 
armhf and aarch64

Each tuple contains an image of the root filesystem, initrd.img and vmlinuz 
files. 

They work fine with qemu-system-arm and qemu-system-aarch64

Can we use them with vagrant?

for example, qemu works fine this way:

#!/usr/bin/env bash
qemu-system-aarch64 -name final-buster-arm-64 \
    -smp 4 -m 1200M -M virt  -cpu cortex-a57  \
    -initrd initrd.img \
    -kernel vmlinuz \
    -append 'root=/dev/sda1 console=ttyAMA0' \
    -global virtio-blk-device.scsi=off \
    -device virtio-scsi-device,id=scsi \
    -drive file=debian-arm64-final.qcow2,id=rootimg,cache=unsafe,if=none 
-device scsi-hd,drive=rootimg \
    -drive file=ephemeral.qcow2,id=ephemeral,cache=unsafe,if=none -device 
scsi-hd,drive=ephemeral \
    -netdev user,hostfwd=tcp::22022-:22,id=net0 -device 
virtio-net-device,netdev=net0 \
    -nographic

How to cook Vagrantfile to use it with vagrant?
Is it possible?

Thanks in advance
Vlad

-- 
This mailing list is governed under the HashiCorp Community Guidelines - 
https://www.hashicorp.com/community-guidelines.html. Behavior in violation of 
those guidelines may result in your removal from this mailing list.

GitHub Issues: https://github.com/mitchellh/vagrant/issues
IRC: #vagrant on Freenode
--- 
You received this message because you are subscribed to the Google Groups 
"Vagrant" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to vagrant-up+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/vagrant-up/c8ae2259-12d7-4808-8732-41ea6a62121e%40googlegroups.com.

Reply via email to