├── .dockerignore ├── Dockerfile ├── LICENSE ├── README.md ├── command ├── base ├── configure ├── extract ├── fetch ├── install ├── make ├── package └── patch └── patch ├── 0001-linux-user-signal.c-define-__SIGRTMIN-MAX-for-non-GN.patch ├── 0002-linux-user-syscall.c-zero-initialize-msg-in-do_sendr.patch ├── 0003-linux-user-fix-mremap-unmapping-adjacent-region.patch ├── 0004-linux-user-fix-mremap-errors-for-invalid-ranges.patch ├── 0005-linux-user-fix-reserved_va-page-leak-in-do_munmap.patch └── 0006-linux-user-elfload.c-explicit-PROT_WRITE-in-zero_bss.patch /.dockerignore: -------------------------------------------------------------------------------- 1 | .git/ 2 | LICENSE 3 | README.md 4 | artifact/ 5 | qemu.cid 6 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziglang/qemu-static/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziglang/qemu-static/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziglang/qemu-static/HEAD/README.md -------------------------------------------------------------------------------- /command/base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziglang/qemu-static/HEAD/command/base -------------------------------------------------------------------------------- /command/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziglang/qemu-static/HEAD/command/configure -------------------------------------------------------------------------------- /command/extract: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziglang/qemu-static/HEAD/command/extract -------------------------------------------------------------------------------- /command/fetch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziglang/qemu-static/HEAD/command/fetch -------------------------------------------------------------------------------- /command/install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziglang/qemu-static/HEAD/command/install -------------------------------------------------------------------------------- /command/make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziglang/qemu-static/HEAD/command/make -------------------------------------------------------------------------------- /command/package: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziglang/qemu-static/HEAD/command/package -------------------------------------------------------------------------------- /command/patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziglang/qemu-static/HEAD/command/patch -------------------------------------------------------------------------------- /patch/0001-linux-user-signal.c-define-__SIGRTMIN-MAX-for-non-GN.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziglang/qemu-static/HEAD/patch/0001-linux-user-signal.c-define-__SIGRTMIN-MAX-for-non-GN.patch -------------------------------------------------------------------------------- /patch/0002-linux-user-syscall.c-zero-initialize-msg-in-do_sendr.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziglang/qemu-static/HEAD/patch/0002-linux-user-syscall.c-zero-initialize-msg-in-do_sendr.patch -------------------------------------------------------------------------------- /patch/0003-linux-user-fix-mremap-unmapping-adjacent-region.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziglang/qemu-static/HEAD/patch/0003-linux-user-fix-mremap-unmapping-adjacent-region.patch -------------------------------------------------------------------------------- /patch/0004-linux-user-fix-mremap-errors-for-invalid-ranges.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziglang/qemu-static/HEAD/patch/0004-linux-user-fix-mremap-errors-for-invalid-ranges.patch -------------------------------------------------------------------------------- /patch/0005-linux-user-fix-reserved_va-page-leak-in-do_munmap.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziglang/qemu-static/HEAD/patch/0005-linux-user-fix-reserved_va-page-leak-in-do_munmap.patch -------------------------------------------------------------------------------- /patch/0006-linux-user-elfload.c-explicit-PROT_WRITE-in-zero_bss.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ziglang/qemu-static/HEAD/patch/0006-linux-user-elfload.c-explicit-PROT_WRITE-in-zero_bss.patch --------------------------------------------------------------------------------