Hello to everyone.
I would like to emulate the raspberry pi for completing a project that I've been working on for several months. Basically during the night I snore and I would like to use machine learning
and a bracelet to detect my snoring pattern and it sends a vibration while I'm sleeping with the goal of forcing my head to move a little. This is the project that should do everything :
The problem is that I don't have a raspberry but some time ago I bought the nVidia Jetson nano and I would like to use this board instead of the first one. It's not a financial problem,but it's more of a challenge,to be able to emulate the raspberry pi on my Jetson nano using qemu-kvm and / or libvirt. I'm learning how to do that by reading heavily here :
I tried to do something like this :
--name pi \
--machine raspi3 \
--cpu arm1176 \
--memory 1024 \
--import \
--disk /root/Desktop/zi/Work/Elements/OS/Raspy/Debian/2019-09-26-raspbian-buster-lite.img,format=raw,bus=virtio \
--network user,model=virtio \
--video vga \
--graphics spice \
--rng device=/dev/urandom,model=virtio \
--boot 'dtb=bcm2710-rpi-3-b-plus.dtb,kernel=kernel8.img,kernel_args=root=/dev/vda2 rootwait panic=1 dwc_otg.fiq_fsm_enable=0' \
--events _on_reboot_=destroy
Unfortunately this is what happens :
ERROR unsupported configuration: ACPI requires UEFI on this architecture
Domain installation does not appear to have been successful.
If it was, you can restart your domain by running:
virsh --connect qemu:///system start pi
otherwise, please restart your installation.
WARNING No operating system detected, VM performance may suffer. Specify an OS with --os-variant for optimal results.
Starting install...
ERROR unsupported configuration: ACPI requires UEFI on this architecture
Domain installation does not appear to have been successful.
If it was, you can restart your domain by running:
virsh --connect qemu:///system start pi
otherwise, please restart your installation.
Mario.