Lines Matching +full:silicon +full:- +full:id
1 .. SPDX-License-Identifier: GPL-2.0-or-later
6 VMApple is the device model that the macOS built-in hypervisor called "Virtualization.framework"
7 exposes to Apple Silicon macOS guests. The "vmapple" machine model in QEMU implements the same
11 -------------
15 * Run on Apple Silicon
20 `macosvm <https://github.com/s-u/macosvm>`__ CLI.
25 .. code-block:: bash
32 .. code-block:: bash
38 ----------
40 Then, we can launch QEMU with the Virtualization.Framework pre-boot environment and the readily
44 .. code-block:: bash
51 $ qemu-system-aarch64 \
52 -serial mon:stdio \
53 -m 4G \
54 -accel hvf \
55 -M vmapple,uuid="$UUID" \
56 -bios "$AVPBOOTER" \
57 -drive file="$AUX",if=pflash,format=raw \
58 -drive file="$DISK",if=pflash,format=raw \
59 -drive file="$AUX",if=none,id=aux,format=raw \
60 -drive file="$DISK",if=none,id=root,format=raw \
61 -device vmapple-virtio-blk-pci,variant=aux,drive=aux \
62 -device vmapple-virtio-blk-pci,variant=root,drive=root \
63 -netdev user,id=net0,ipv6=off,hostfwd=tcp::2222-:22,hostfwd=tcp::5901-:5900 \
64 -device virtio-net-pci,netdev=net0