Initial commit.
[virt-efivars.git] / run-test.sh.in
1 #!/bin/bash -
2 # virt-efivars test script
3 # @configure_input@
4 # (C) Copyright 2014-2015 Red Hat Inc.
5 #
6 # This program is free software; you can redistribute it and/or modify
7 # it under the terms of the GNU General Public License as published by
8 # the Free Software Foundation; either version 2 of the License, or
9 # (at your option) any later version.
10 #
11 # This program is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 # GNU General Public License for more details.
15 #
16 # You should have received a copy of the GNU General Public License
17 # along with this program; if not, write to the Free Software
18 # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
19 #
20 # Written by Richard W.M. Jones <rjones@redhat.com>
21
22 unset CDPATH
23 set -e
24
25 qemu="@QEMU@"
26
27 varstore="example-varstore"
28 output="example-varstore-edited"
29 cp "$varstore" "$output"
30
31 console="console=ttyS0"
32 mach=
33 extra_args=
34 scsi=virtio-scsi-pci
35 case `uname -m` in
36     aarch64)
37         uefi_code=/usr/share/AAVMF/AAVMF_CODE.fd
38         console="console=ttyAMA0"
39         mach="-M virt -cpu cortex-a57"
40         scsi=virtio-scsi-device
41         ;;
42     i?86|x86_64)
43         uefi_code=/usr/share/OVMF/OVMF_CODE.fd
44         extra_args="-device sga"
45         ;;
46     *)
47 esac
48
49 set -x
50
51 "$qemu" \
52     -nodefaults \
53     -nographic \
54     $mach \
55     -m 1024 \
56     -no-reboot \
57     -kernel kernel \
58     -initrd initrd \
59     -append "$console" \
60     -drive if=pflash,format=raw,file=$uefi_code,readonly \
61     -drive if=pflash,format=raw,file=$output \
62     -device $scsi,id=scsi \
63     -drive file=virt-efivars.qcow2,snapshot=on,cache=unsafe,format=qcow2,if=none,id=hd0 \
64     -device scsi-hd,drive=hd0 \
65     -serial stdio \
66     $extra_args