Add ppc64 support for test images

Signed-off-by: Aurelien Lun-Sin <alunsin@us.ibm.com>
This commit is contained in:
Aurelien Lun-Sin 2021-12-14 14:57:26 +01:00
parent 62a4e7020d
commit c0a31a7a40
No known key found for this signature in database
GPG Key ID: 15B0D6BD4607F4CE
2 changed files with 4 additions and 2 deletions

View File

@ -41,7 +41,7 @@ OSVERSION ?= 1809
OUTPUT_TYPE ?= docker OUTPUT_TYPE ?= docker
ALL_OS = linux ALL_OS = linux
ALL_ARCH.linux = amd64 arm64 ALL_ARCH.linux = amd64 arm64 ppc64le
ALL_OS_ARCH.linux = $(foreach arch, ${ALL_ARCH.linux}, linux-$(arch)) ALL_OS_ARCH.linux = $(foreach arch, ${ALL_ARCH.linux}, linux-$(arch))
ifneq ($(REMOTE_DOCKER_URL),) ifneq ($(REMOTE_DOCKER_URL),)
@ -53,6 +53,7 @@ endif
BASE.linux.amd64 := busybox BASE.linux.amd64 := busybox
BASE.linux.arm64 := arm64v8/busybox BASE.linux.arm64 := arm64v8/busybox
BASE.linux.ppc64le := busybox
BASE.linux := ${BASE.linux.${ARCH}} BASE.linux := ${BASE.linux.${ARCH}}
BASE := ${BASE.${OS}} BASE := ${BASE.${OS}}

View File

@ -41,7 +41,7 @@ OSVERSION ?= 1809
OUTPUT_TYPE ?= docker OUTPUT_TYPE ?= docker
ALL_OS = linux ALL_OS = linux
ALL_ARCH.linux = amd64 arm64 ALL_ARCH.linux = amd64 arm64 ppc64le
ALL_OS_ARCH.linux = $(foreach arch, ${ALL_ARCH.linux}, linux-$(arch)) ALL_OS_ARCH.linux = $(foreach arch, ${ALL_ARCH.linux}, linux-$(arch))
ifneq ($(REMOTE_DOCKER_URL),) ifneq ($(REMOTE_DOCKER_URL),)
@ -53,6 +53,7 @@ endif
BASE.linux.amd64 := busybox BASE.linux.amd64 := busybox
BASE.linux.arm64 := arm64v8/busybox BASE.linux.arm64 := arm64v8/busybox
BASE.linux.ppc64le := busybox
BASE.linux := ${BASE.linux.${ARCH}} BASE.linux := ${BASE.linux.${ARCH}}
BASE := ${BASE.${OS}} BASE := ${BASE.${OS}}