Adding qemu 5.1 for rpi3 emulation

This commit is contained in:
Gerardo J. Puerta Cardelles
2021-02-22 09:23:51 +01:00
parent 73dd5b7bae
commit f9ef2aa84c
20 changed files with 4002 additions and 0 deletions

View File

@ -0,0 +1,14 @@
eend 0
}
stop() {
# We unregister everything in the "qemu-xxx" namespace.
ebegin "Unregistering qemu-user binaries"
local f
for f in /proc/sys/fs/binfmt_misc/qemu-* ; do
if [ -f "${f}" ] ; then
echo '-1' > "${f}"
fi
done
eend 0
}