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
We provide two simple examples of invoking `qemu-{arch}-static` (or more
precisely, we let the kernel do the invocation.)
Closes: docker#95
Signed-off-by: Solomon Jacobs <[email protected]>
There were two things that confused me in the beginning, so let me give the information here:
This action is named setup-qemu-action, but it only sets up user mode emulation. You can't use qemu-img or any qemu-system-* functionality.
No qemu-* binaries added to the path. Instead they are registered with the kernel (using binfmt_misc), and the kernel will invoke the correct qemu-* binary by looking at the first few bytes of an executable. Thus, qemu-aarch64-static hello will fail, but ./hello works fine.
It would be great to have a simple example on how to use QEMU in a workflow in the README.
The text was updated successfully, but these errors were encountered: