mirror of
https://github.com/andreili/SBC_builder.git
synced 2025-08-23 11:04:04 +02:00
9 lines
413 B
Bash
9 lines
413 B
Bash
#!/bin/sh
|
|
|
|
QEMU_AARCH64_FILTER="\x7fELF\x02\x01\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x00\xb7\x00:\xff\xff\xff\xff\xff\xff\xff\x00\xff\xff\xff\xff\xff\xff\xff\xff\xfe\xff\xff\xff"
|
|
if [ ! -f "/proc/sys/fs/binfmt_misc/qemu-${CARCH}" ]
|
|
then
|
|
# only aarch64 is supported
|
|
sudo sh -c "printf '%s\n' ':qemu-${CARCH}:M::${QEMU_AARCH64_FILTER}:/usr/bin/qemu-${CARCH}:' > /proc/sys/fs/binfmt_misc/register"
|
|
fi
|