mirror of
https://ops.gitlab.net/gitlab-org/gitlab-build-images.git
synced 2025-12-09 10:02:56 +01:00
9 lines
367 B
Bash
Executable file
9 lines
367 B
Bash
Executable file
#!/bin/bash
|
|
|
|
ls -al /proc/sys/fs/binfmt_misc
|
|
|
|
echo -1 > /proc/sys/fs/binfmt_misc/qemu-aarch64 || true
|
|
|
|
apk add -U qemu-aarch64
|
|
|
|
echo ":qemu-aarch64:M::\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:/usr/bin/qemu-aarch64:OCF" > /proc/sys/fs/binfmt_misc/register
|