diff options
author | Ilya Leoshkevich <iii@linux.ibm.com> | 2023-01-29 22:05:00 +0300 |
---|---|---|
committer | Alexei Starovoitov <ast@kernel.org> | 2023-01-30 06:16:29 +0300 |
commit | af320fb7ddb091a401a407bb256a9abd85587624 (patch) | |
tree | a79f715634efaebe7e58eae975e90c342fe2ec6f | |
parent | 63d7b53ab59f0dd8540e672b49836493d1fa0a79 (diff) | |
download | linux-af320fb7ddb091a401a407bb256a9abd85587624.tar.xz |
selftests/bpf: Fix s390x vmlinux path
After commit edd4a8667355 ("s390/boot: get rid of startup archive")
there is no more compressed/ subdirectory.
Signed-off-by: Ilya Leoshkevich <iii@linux.ibm.com>
Link: https://lore.kernel.org/r/20230129190501.1624747-8-iii@linux.ibm.com
Signed-off-by: Alexei Starovoitov <ast@kernel.org>
-rwxr-xr-x | tools/testing/selftests/bpf/vmtest.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/testing/selftests/bpf/vmtest.sh b/tools/testing/selftests/bpf/vmtest.sh index 316a56d680f2..685034528018 100755 --- a/tools/testing/selftests/bpf/vmtest.sh +++ b/tools/testing/selftests/bpf/vmtest.sh @@ -13,7 +13,7 @@ s390x) QEMU_BINARY=qemu-system-s390x QEMU_CONSOLE="ttyS1" QEMU_FLAGS=(-smp 2) - BZIMAGE="arch/s390/boot/compressed/vmlinux" + BZIMAGE="arch/s390/boot/vmlinux" ;; x86_64) QEMU_BINARY=qemu-system-x86_64 |