Skip to content

Commit 688e3ce

Browse files
authored
Merge pull request #1659 from Links2004/arm-support
add ARMv7 support
2 parents cc9cb87 + 8acff5e commit 688e3ce

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ BUILD_FLAGS = -tags osusergo,netgo \
6363
-ldflags "-s -w -extldflags=-static -X sigs.k8s.io/node-feature-discovery/pkg/version.version=$(VERSION) -X sigs.k8s.io/node-feature-discovery/pkg/utils/hostpath.pathPrefix=$(HOSTMOUNT_PREFIX)"
6464

6565
# multi-arch build with buildx
66-
IMAGE_ALL_PLATFORMS ?= linux/amd64,linux/arm64
66+
IMAGE_ALL_PLATFORMS ?= linux/amd64,linux/arm64,linux/arm/v7
6767

6868
# enable buildx
6969
ensure-buildx:
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
#!/bin/bash -e
22

33
# cross build
4-
make image-all
4+
IMAGE_ALL_PLATFORMS=linux/amd64,linux/arm64 make image-all

0 commit comments

Comments
 (0)