The following pull request was submitted through Github. It can be accessed and reviewed at: https://github.com/lxc/lxd/pull/5476
This e-mail was sent by the LXC bot, direct replies will not reach the author unless they happen to be subscribed to this list. === Description (from pull-request) === Signed-off-by: Stéphane Graber <[email protected]>
From 8b6c03202d9b056fd05bd44b24019c5cc073e70b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Graber?= <[email protected]> Date: Sat, 9 Feb 2019 23:52:33 -0500 Subject: [PATCH] shared/osarch: Add gentoo armhf variant MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Stéphane Graber <[email protected]> --- shared/osarch/architectures.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shared/osarch/architectures.go b/shared/osarch/architectures.go index f398411230..266d9a81c4 100644 --- a/shared/osarch/architectures.go +++ b/shared/osarch/architectures.go @@ -30,7 +30,7 @@ var architectureNames = map[int]string{ var architectureAliases = map[int][]string{ ARCH_32BIT_INTEL_X86: {"i386", "386"}, ARCH_64BIT_INTEL_X86: {"amd64"}, - ARCH_32BIT_ARMV7_LITTLE_ENDIAN: {"armel", "armhf", "arm", "armhfp"}, + ARCH_32BIT_ARMV7_LITTLE_ENDIAN: {"armel", "armhf", "arm", "armhfp", "armv7a_hardfp"}, ARCH_64BIT_ARMV8_LITTLE_ENDIAN: {"arm64"}, ARCH_32BIT_POWERPC_BIG_ENDIAN: {"powerpc"}, ARCH_64BIT_POWERPC_BIG_ENDIAN: {"powerpc64", "ppc64"},
_______________________________________________ lxc-devel mailing list [email protected] http://lists.linuxcontainers.org/listinfo/lxc-devel
