mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-09-18 22:14:16 +00:00
rcutorture: add support for s390
Add the required values to identify_qemu() and identify_bootimage(). Signed-off-by: Sven Schnelle <svens@linux.ibm.com> Acked-by: Heiko Carstens <hca@linux.ibm.com> Signed-off-by: Willy Tarreau <w@1wt.eu> Signed-off-by: Paul E. McKenney <paulmck@kernel.org>
This commit is contained in:
parent
0043e6f21d
commit
16d4b2bd79
1 changed files with 6 additions and 0 deletions
|
@ -159,6 +159,9 @@ identify_boot_image () {
|
|||
qemu-system-aarch64)
|
||||
echo arch/arm64/boot/Image
|
||||
;;
|
||||
qemu-system-s390x)
|
||||
echo arch/s390/boot/bzImage
|
||||
;;
|
||||
*)
|
||||
echo vmlinux
|
||||
;;
|
||||
|
@ -184,6 +187,9 @@ identify_qemu () {
|
|||
elif echo $u | grep -q aarch64
|
||||
then
|
||||
echo qemu-system-aarch64
|
||||
elif echo $u | grep -q 'IBM S/390'
|
||||
then
|
||||
echo qemu-system-s390x
|
||||
elif uname -a | grep -q ppc64
|
||||
then
|
||||
echo qemu-system-ppc64
|
||||
|
|
Loading…
Add table
Reference in a new issue