pmb/parse/arch.py: add arm64 -> aarch64 to mapping

This allows pmbootstrap to work on aarch64-darwin systems.

Reviewed-by: Oliver Smith <ollieparanoid@postmarketos.org>
Link: https://lists.sr.ht/~postmarketos/pmbootstrap-devel/%3C167000939722.18650.8735853729695007724-0@git.sr.ht%3E
This commit is contained in:
Weijia Wang 2022-12-02 20:25:02 +01:00 committed by Oliver Smith
parent bb5399d6d5
commit a56838fb45
No known key found for this signature in database
GPG Key ID: 5AE7F5513E0885CB
1 changed files with 1 additions and 0 deletions

View File

@ -12,6 +12,7 @@ def alpine_native():
"i686": "x86",
"x86_64": "x86_64",
"aarch64": "aarch64",
"arm64": "aarch64",
"armv6l": "armhf",
"armv7l": "armv7"
}