From c1f04a024a3d48e39ac5bfc82af7ba9fec04539c Mon Sep 17 00:00:00 2001 From: Valentin Rothberg Date: Thu, 21 Jul 2022 09:58:18 +0200 Subject: podman-remote pull: fix duplicate progress outputs By vendoring the fixes from containers/image. Also add a test (thanks @edsantiago) to make sure we won't regress in the future again. Signed-off-by: Valentin Rothberg --- vendor/golang.org/x/sys/cpu/cpu_other_riscv64.go | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 vendor/golang.org/x/sys/cpu/cpu_other_riscv64.go (limited to 'vendor/golang.org/x/sys/cpu') diff --git a/vendor/golang.org/x/sys/cpu/cpu_other_riscv64.go b/vendor/golang.org/x/sys/cpu/cpu_other_riscv64.go new file mode 100644 index 000000000..dd10eb79f --- /dev/null +++ b/vendor/golang.org/x/sys/cpu/cpu_other_riscv64.go @@ -0,0 +1,12 @@ +// Copyright 2022 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +//go:build !linux && riscv64 +// +build !linux,riscv64 + +package cpu + +func archInit() { + Initialized = true +} -- cgit v1.2.3-54-g00ecf