Skip to content

Commit f4e9579

Browse files
authored
cmd: Remove s390x as a default arch (linuxkit#3911)
* cmd: Remove s390x as a default arch Signed-off-by: Rolf Neugebauer <[email protected]> * Update pkg/swap hash to latest Signed-off-by: Rolf Neugebauer <[email protected]> --------- Signed-off-by: Rolf Neugebauer <[email protected]>
1 parent c51ce25 commit f4e9579

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

examples/docker-for-mac.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ onboot:
2626
command: ["/usr/bin/mountie", "/var/lib"]
2727
# make a swap file on the mounted disk
2828
- name: swap
29-
image: linuxkit/swap:cf9b484598f197a31b570012815c679826145bc4
29+
image: linuxkit/swap:d17a7f1c26ff768c26b3c206ccf3aa72349568df
3030
command: ["/swap.sh", "--path", "/var/lib/swap", "--size", "1024M"]
3131
# mount-vpnkit mounts the 9p share used by vpnkit to coordinate port forwarding
3232
- name: mount-vpnkit

examples/swap.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ onboot:
1818
image: linuxkit/mount:a8581e454f846690d09e2e7c6287d3c84ca53257
1919
command: ["/usr/bin/mountie", "/var/external"]
2020
- name: swap
21-
image: linuxkit/swap:cf9b484598f197a31b570012815c679826145bc4
21+
image: linuxkit/swap:d17a7f1c26ff768c26b3c206ccf3aa72349568df
2222
# to use unencrypted swap, use:
2323
# command: ["/swap.sh", "--path", "/var/external/swap", "--size", "1G"]
2424
command: ["/swap.sh", "--path", "/var/external/swap", "--size", "1G", "--encrypt"]

src/cmd/linuxkit/pkglib/pkglib.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ type PkglibConfig struct {
5454
func NewPkgInfo() pkgInfo {
5555
return pkgInfo{
5656
Org: "linuxkit",
57-
Arches: []string{"amd64", "arm64", "s390x"},
57+
Arches: []string{"amd64", "arm64"},
5858
GitRepo: "https://github.com/linuxkit/linuxkit",
5959
Network: false,
6060
DisableCache: false,

0 commit comments

Comments
 (0)