forked from Mirror/pmbootstrap
Enable running pmbootstrap on x86 architecture (#1155)
This commit is contained in:
parent
3a01537332
commit
845d946389
1 changed files with 3 additions and 1 deletions
|
@ -25,6 +25,7 @@ def alpine_native():
|
|||
ret = ""
|
||||
|
||||
mapping = {
|
||||
"i686": "x86",
|
||||
"x86_64": "x86_64",
|
||||
"aarch64": "aarch64",
|
||||
"armv7l": "armhf"
|
||||
|
@ -55,7 +56,8 @@ def alpine_to_debian(arch):
|
|||
"""
|
||||
|
||||
mapping = {
|
||||
"x86_64": "amd64",
|
||||
"x86": "i386",
|
||||
"x86_64": "x86_64",
|
||||
"armhf": "arm",
|
||||
"aarch64": "aarch64",
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue