-
Notifications
You must be signed in to change notification settings - Fork 4.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
9 changed files
with
51 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 4 additions & 0 deletions
4
deploy/iso/minikube-iso/arch/aarch64/package/docker-buildx-aarch64/Config.in
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
config BR2_PACKAGE_DOCKER_BUILDX_AARCH64 | ||
bool "docker-buildx" | ||
default y | ||
depends on BR2_aarch64 |
1 change: 1 addition & 0 deletions
1
deploy/iso/minikube-iso/arch/aarch64/package/docker-buildx-aarch64/docker-buildx.hash
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
sha256 565e36085a35bba5104f37365ba796c111338eea1a0902b3a7ff42e2e1248815 buildx-v0.11.2.linux-arm64 |
19 changes: 19 additions & 0 deletions
19
deploy/iso/minikube-iso/arch/aarch64/package/docker-buildx-aarch64/docker-buildx.mk
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
################################################################################ | ||
# | ||
# docker-buildx | ||
# | ||
################################################################################ | ||
|
||
DOCKER_BUILDX_AARCH64_VERSION = v0.11.2 | ||
DOCKER_BUILDX_AARCH64_COMMIT = 9872040b6626fb7d87ef7296fd5b832e8cc2ad17 | ||
|
||
define DOCKER_BUILDX_AARCH64_CONFIGURE_CMDS | ||
mkdir -p $(TARGET_DIR)/usr/libexec/docker/cli-plugins | ||
endef | ||
|
||
define DOCKER_BUILDX_AARCH64_INSTALL_TARGET_CMDS | ||
curl -Lo $(TARGET_DIR)/usr/libexec/docker/cli-plugins/docker-buildx https://github.com/docker/buildx/releases/download/$(DOCKER_BUILDX_AARCH64_VERSION)/buildx-$(DOCKER_BUILDX_AARCH64_VERSION).linux-arm64 | ||
chmod 0755 $(TARGET_DIR)/usr/libexec/docker/cli-plugins/docker-buildx | ||
endef | ||
|
||
$(eval $(generic-package)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 4 additions & 0 deletions
4
deploy/iso/minikube-iso/arch/x86_64/package/docker-buildx/Config.in
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
config BR2_PACKAGE_DOCKER_BUILDX | ||
bool "docker-buildx" | ||
default y | ||
depends on BR2_x86_64 |
1 change: 1 addition & 0 deletions
1
deploy/iso/minikube-iso/arch/x86_64/package/docker-buildx/docker-buildx.hash
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
sha256 311568ee69715abc46163fd688e56c77ab0144ff32e116d0f293bfc3470e75b7 buildx-v0.11.2.linux-amd64 |
19 changes: 19 additions & 0 deletions
19
deploy/iso/minikube-iso/arch/x86_64/package/docker-buildx/docker-buildx.mk
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
################################################################################ | ||
# | ||
# docker-buildx | ||
# | ||
################################################################################ | ||
|
||
DOCKER_BUILDX_VERSION = v0.11.2 | ||
DOCKER_BUILDX_COMMIT = 9872040b6626fb7d87ef7296fd5b832e8cc2ad17 | ||
|
||
define DOCKER_BUILDX_CONFIGURE_CMDS | ||
mkdir -p $(TARGET_DIR)/usr/libexec/docker/cli-plugins | ||
endef | ||
|
||
define DOCKER_BUILDX_INSTALL_TARGET_CMDS | ||
curl -Lo $(TARGET_DIR)/usr/libexec/docker/cli-plugins/docker-buildx https://github.com/docker/buildx/releases/download/$(DOCKER_BUILDX_VERSION)/buildx-$(DOCKER_BUILDX_VERSION).linux-amd64 | ||
chmod 0755 $(TARGET_DIR)/usr/libexec/docker/cli-plugins/docker-buildx | ||
endef | ||
|
||
$(eval $(generic-package)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters