From 2972a335350d9bb4c2d5ce0807e2006b6909198c Mon Sep 17 00:00:00 2001 From: Harshal Patil Date: Fri, 23 Mar 2018 11:46:40 +0530 Subject: [PATCH] rootfs: Install the right golang binaries for ppc64le On ppc64le golang binaries should be pulled correctly Fixes #72 Signed-off-by: Harshal Patil --- rootfs-builder/rootfs.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/rootfs-builder/rootfs.sh b/rootfs-builder/rootfs.sh index 7b41594b43..0108dc52fa 100755 --- a/rootfs-builder/rootfs.sh +++ b/rootfs-builder/rootfs.sh @@ -93,6 +93,10 @@ generate_dockerfile() { dir="$1" case "$(arch)" in + "ppc64le") + goarch=ppc64le + ;; + "aarch64") goarch=arm64 ;;