Skip to content
Snippets Groups Projects
Unverified Commit c78b89f3 authored by Oliver Smith's avatar Oliver Smith
Browse files

mrhlpr.pipeline.get_arch…: add riscv64 and arm64

Add riscv64 for... well you know it, and also arm64 -> aarch64 for
aarch64-darwin systems similar to this patch:
https://lists.sr.ht/~postmarketos/pmbootstrap-devel/%3C167000939722.18650.8735853729695007724-0@git.sr.ht%3E
parent cc4cdc9b
No related branches found
No related tags found
No related merge requests found
......@@ -11,9 +11,11 @@ def get_arch_alpine_native():
mapping = {
"aarch64": "aarch64",
"arm64": "aarch64",
"armv6l": "armhf",
"armv7l": "armv7",
"i686": "x86",
"riscv64": "riscv64",
"x86_64": "x86_64",
}
if machine in mapping:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment