diff options
author | Valentin Rothberg <vrothberg@redhat.com> | 2022-08-24 15:38:14 +0200 |
---|---|---|
committer | Valentin Rothberg <vrothberg@redhat.com> | 2022-08-24 17:13:58 +0200 |
commit | 88e4e4c82e0d5da27ce522f82f5dad2afdabb7b1 (patch) | |
tree | 0d4d50510a45a02873a3797f2fe0fb761a8872a9 /vendor/golang.org/x/sys/unix/mkall.sh | |
parent | 0f92cf22a69876975ca6ad97a08751bf2008e257 (diff) | |
download | podman-88e4e4c82e0d5da27ce522f82f5dad2afdabb7b1.tar.gz podman-88e4e4c82e0d5da27ce522f82f5dad2afdabb7b1.tar.bz2 podman-88e4e4c82e0d5da27ce522f82f5dad2afdabb7b1.zip |
vendor containers/psgo@v1.7.3
Add three new capabilities that would otherwise be reported as unknown.
Also add an e2e test making sure that `podman top` knows all
capabilities of the current kernel. I refrained from adding a system
test since this may blow up in gating tests.
Signed-off-by: Valentin Rothberg <vrothberg@redhat.com>
Diffstat (limited to 'vendor/golang.org/x/sys/unix/mkall.sh')
-rw-r--r-- | vendor/golang.org/x/sys/unix/mkall.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/vendor/golang.org/x/sys/unix/mkall.sh b/vendor/golang.org/x/sys/unix/mkall.sh index 6fc18353d..3b2335d5f 100644 --- a/vendor/golang.org/x/sys/unix/mkall.sh +++ b/vendor/golang.org/x/sys/unix/mkall.sh @@ -156,10 +156,10 @@ openbsd_amd64) mktypes="GOARCH=$GOARCH go tool cgo -godefs" ;; openbsd_arm) + mkasm="go run mkasm.go" mkerrors="$mkerrors" - mksyscall="go run mksyscall.go -l32 -openbsd -arm" + mksyscall="go run mksyscall.go -l32 -openbsd -arm -libc" mksysctl="go run mksysctl_openbsd.go" - mksysnum="go run mksysnum.go 'https://cvsweb.openbsd.org/cgi-bin/cvsweb/~checkout~/src/sys/kern/syscalls.master'" # Let the type of C char be signed for making the bare syscall # API consistent across platforms. mktypes="GOARCH=$GOARCH go tool cgo -godefs -- -fsigned-char" |