Enable running pmbootstrap on x86 architecture (#1155)

This commit is contained in:
Daniele Debernardi 2018-01-24 01:56:11 +01:00 committed by Oliver Smith
parent 3a01537332
commit 845d946389
1 changed files with 3 additions and 1 deletions

View File

@ -25,6 +25,7 @@ def alpine_native():
ret = "" ret = ""
mapping = { mapping = {
"i686": "x86",
"x86_64": "x86_64", "x86_64": "x86_64",
"aarch64": "aarch64", "aarch64": "aarch64",
"armv7l": "armhf" "armv7l": "armhf"
@ -55,7 +56,8 @@ def alpine_to_debian(arch):
""" """
mapping = { mapping = {
"x86_64": "amd64", "x86": "i386",
"x86_64": "x86_64",
"armhf": "arm", "armhf": "arm",
"aarch64": "aarch64", "aarch64": "aarch64",
} }