Add -m/--machine option.
[qemu-sanity-check.git] / qemu-sanity-check.pod.in
1 =encoding utf8
2
3 =head1 NAME
4
5 qemu-sanity-check - run a simple sanity check on qemu and the Linux kernel
6
7 =head1 SUMMARY
8
9 qemu-sanity-check [options]
10
11 =head1 DESCRIPTION
12
13 B<qemu-sanity-check> is a short shell script that test-boots a Linux
14 kernel under qemu, making sure it boots up to userspace.  The idea is
15 to test the Linux kernel and/or qemu to make sure they are working.
16
17 You can use the command on its own:
18
19  qemu-sanity-check
20
21 In this case, the script will look for a suitable qemu binary on the
22 C<$PATH> and the latest Linux kernel in C</boot> and try to boot that
23 kernel on that qemu.
24
25 You can also specify a qemu binary or a Linux kernel (either or both
26 options can be omitted):
27
28  qemu-sanity-check --qemu=/path/to/qemu --kernel=/path/to/vmlinuz
29
30 =head2 KVM
31
32 KVM (C<kvm> or C<qemu-kvm>) can be used in place of qemu.
33
34 =head2 KERNEL DRIVERS
35
36 No kernel modules or special drivers are required except as noted
37 below.  The test uses an initramfs containing a static binary, so the
38 kernel is B<not> required to locate block devices, use virtio, mount
39 filesystems, etc.
40
41 The kernel B<must> support only the following, compiled in (not as
42 modules):
43
44 =over 4
45
46 =item *
47
48 A serial port (usually: C<CONFIG_SERIAL_8250=y>)
49
50 =item *
51
52 Initrd/initramfs (C<CONFIG_BLK_DEV_INITRD=y>)
53
54 =back
55
56 =head1 OPTIONS
57
58 =over 4
59
60 =item B<--help>
61
62 Display short help message and exit.
63
64 =item B<--accel>=kvm
65
66 =item B<--accel>=tcg
67
68 =item B<--accel>=kvm:tcg
69
70 This sets the C<-machine accel=...> parameter which is passed to
71 qemu.
72
73 If not set, then C<kvm:tcg> is the default, which means to try to use
74 KVM (hardware-assisted virtualization), and fall back to software
75 emulation if KVM is not possible.
76
77 Other typical values of this parameter are: C<tcg>, which means to
78 force software emulation.  C<kvm>, which means to force KVM and fail
79 if KVM is unavailable.
80
81 =item B<-i> INITRD
82
83 =item B<--initrd>=INITRD
84
85 Use the initramfs image named C<INITRD> instead of the default.
86
87 =item B<-k> VMLINUZ
88
89 =item B<--kernel>=VMLINUZ
90
91 Use the kernel image C<VMLINUZ> instead of searching for the latest
92 kernel installed in C</boot>.
93
94 =item B<-m> MACHINE
95
96 =item B<--machine>=MACHINE
97
98 Set the qemu I<-m> (machine type) option.  If not set then a suitable
99 default is picked depending on the architecture.  You can also use
100 I<--machine=> to let qemu pick the default.
101
102 =item B<-q> QEMU
103
104 =item B<--qemu>=QEMU
105
106 Use the qemu (or KVM) binary C<QEMU> instead of searching C<$PATH> for
107 a suitable binary.
108
109 =item B<-t> TIMEOUT
110
111 =item B<--timeout>=TIMEOUT
112
113 Specify a timeout instead of the default which is C<10m> (10 minutes).
114
115 The syntax for the C<TIMEOUT> is described in full in the man page for
116 L<timeout(1)>.
117
118 =item B<-V>
119
120 =item B<--version>
121
122 Display version and exit.
123
124 =back
125
126 =head1 EXIT STATUS
127
128 The exit status is 0 if the Linux kernel booted as far as userspace
129 under qemu; or if the I<--help> or I<--version> options were used.
130
131 The exit status is 1 if the kernel boot failed under qemu.
132
133 The exit status is 2 if the script itself failed (eg. incorrect
134 command line options were used, a suitable kernel could not be found).
135
136 =head1 FILES
137
138 =over 4
139
140 =item B<@libdir@/qemu-sanity-check/initrd>
141
142 The default location for the small initramfs image that is used to
143 test that userspace has been reached.
144
145 =back
146
147 =head1 SEE ALSO
148
149 L<http://qemu.org>,
150 L<http://kernel.org>
151
152 =head1 AUTHORS
153
154 Richard W.M. Jones <rjones@redhat.com>
155
156 =head1 COPYRIGHT
157
158 (C) Copyright 2013-2020 Red Hat Inc.
159
160 This program is free software; you can redistribute it and/or modify
161 it under the terms of the GNU General Public License as published by
162 the Free Software Foundation; either version 2 of the License, or
163 (at your option) any later version.
164
165 This program is distributed in the hope that it will be useful,
166 but WITHOUT ANY WARRANTY; without even the implied warranty of
167 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
168 GNU General Public License for more details.
169
170 You should have received a copy of the GNU General Public License along
171 with this program; if not, write to the Free Software Foundation, Inc.,
172 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.