forked from Mirror/pmbootstrap
Update alpine_to_hostspec mappings (!1812)
The important part about this patch is the change for armhf, which adjusts the hostspec to the one used by Alpine. Fixes a part of postmarketOS/pmaports#363
This commit is contained in:
parent
1e00ce49b9
commit
f853c0da20
2 changed files with 8 additions and 3 deletions
|
@ -92,8 +92,13 @@ def alpine_to_hostspec(arch):
|
|||
"""
|
||||
mapping = {
|
||||
"aarch64": "aarch64-alpine-linux-musl",
|
||||
"armhf": "armv6-alpine-linux-muslgnueabihf",
|
||||
"armel": "armv5-alpine-linux-musleabi",
|
||||
"armhf": "armv6-alpine-linux-musleabihf",
|
||||
"armv7": "armv7-alpine-linux-musleabihf",
|
||||
"mips": "mips-alpine-linux-musl",
|
||||
"mips64": "mips64-alpine-linux-musl",
|
||||
"mipsel": "mipsel-alpine-linux-musl",
|
||||
"mips64el": "mips64el-alpine-linux-musl",
|
||||
"ppc": "powerpc-alpine-linux-musl",
|
||||
"ppc64": "powerpc64-alpine-linux-musl",
|
||||
"ppc64le": "powerpc64le-alpine-linux-musl",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue