target/mips: Remove XBurst Media eXtension Unit dead code
[qemu/ar7.git] / README.rst
blob91aa1e314c56a428df43fd5f01c864949edc0146
1 ===========
2 QEMU README
3 ===========
5 QEMU is a generic and open source machine & userspace emulator and
6 virtualizer.
8 QEMU is capable of emulating a complete machine in software without any
9 need for hardware virtualization support. By using dynamic translation,
10 it achieves very good performance. QEMU can also integrate with the Xen
11 and KVM hypervisors to provide emulated hardware while allowing the
12 hypervisor to manage the CPU. With hypervisor support, QEMU can achieve
13 near native performance for CPUs. When QEMU emulates CPUs directly it is
14 capable of running operating systems made for one machine (e.g. an ARMv7
15 board) on a different machine (e.g. an x86_64 PC board).
17 QEMU is also capable of providing userspace API virtualization for Linux
18 and BSD kernel interfaces. This allows binaries compiled against one
19 architecture ABI (e.g. the Linux PPC64 ABI) to be run on a host using a
20 different architecture ABI (e.g. the Linux x86_64 ABI). This does not
21 involve any hardware emulation, simply CPU and syscall emulation.
23 QEMU aims to fit into a variety of use cases. It can be invoked directly
24 by users wishing to have full control over its behaviour and settings.
25 It also aims to facilitate integration into higher level management
26 layers, by providing a stable command line interface and monitor API.
27 It is commonly invoked indirectly via the libvirt library when using
28 open source applications such as oVirt, OpenStack and virt-manager.
30 QEMU as a whole is released under the GNU General Public License,
31 version 2. For full licensing details, consult the LICENSE file.
34 Building
35 ========
37 QEMU is multi-platform software intended to be buildable on all modern
38 Linux platforms, OS-X, Win32 (via the Mingw64 toolchain) and a variety
39 of other UNIX targets. The simple steps to build QEMU are:
42 .. code-block:: shell
44   mkdir build
45   cd build
46   ../configure
47   make
49 Additional information can also be found online via the QEMU website:
51 * `<https://qemu.org/Hosts/Linux>`_
52 * `<https://qemu.org/Hosts/Mac>`_
53 * `<https://qemu.org/Hosts/W32>`_
56 Submitting patches
57 ==================
59 The QEMU source code is maintained under the GIT version control system.
61 .. code-block:: shell
63    git clone https://gitlab.com/qemu-project/qemu.git
65 When submitting patches, one common approach is to use 'git
66 format-patch' and/or 'git send-email' to format & send the mail to the
67 qemu-devel@nongnu.org mailing list. All patches submitted must contain
68 a 'Signed-off-by' line from the author. Patches should follow the
69 guidelines set out in the `style section
70 <https://www.qemu.org/docs/master/devel/style.html>` of
71 the Developers Guide.
73 Additional information on submitting patches can be found online via
74 the QEMU website
76 * `<https://qemu.org/Contribute/SubmitAPatch>`_
77 * `<https://qemu.org/Contribute/TrivialPatches>`_
79 The QEMU website is also maintained under source control.
81 .. code-block:: shell
83   git clone https://gitlab.com/qemu-project/qemu-web.git
85 * `<https://www.qemu.org/2017/02/04/the-new-qemu-website-is-up/>`_
87 A 'git-publish' utility was created to make above process less
88 cumbersome, and is highly recommended for making regular contributions,
89 or even just for sending consecutive patch series revisions. It also
90 requires a working 'git send-email' setup, and by default doesn't
91 automate everything, so you may want to go through the above steps
92 manually for once.
94 For installation instructions, please go to
96 *  `<https://github.com/stefanha/git-publish>`_
98 The workflow with 'git-publish' is:
100 .. code-block:: shell
102   $ git checkout master -b my-feature
103   $ # work on new commits, add your 'Signed-off-by' lines to each
104   $ git publish
106 Your patch series will be sent and tagged as my-feature-v1 if you need to refer
107 back to it in the future.
109 Sending v2:
111 .. code-block:: shell
113   $ git checkout my-feature # same topic branch
114   $ # making changes to the commits (using 'git rebase', for example)
115   $ git publish
117 Your patch series will be sent with 'v2' tag in the subject and the git tip
118 will be tagged as my-feature-v2.
120 Bug reporting
121 =============
123 The QEMU project uses Launchpad as its primary upstream bug tracker. Bugs
124 found when running code built from QEMU git or upstream released sources
125 should be reported via:
127 * `<https://bugs.launchpad.net/qemu/>`_
129 If using QEMU via an operating system vendor pre-built binary package, it
130 is preferable to report bugs to the vendor's own bug tracker first. If
131 the bug is also known to affect latest upstream code, it can also be
132 reported via launchpad.
134 For additional information on bug reporting consult:
136 * `<https://qemu.org/Contribute/ReportABug>`_
139 ChangeLog
140 =========
142 For version history and release notes, please visit
143 `<https://wiki.qemu.org/ChangeLog/>`_ or look at the git history for
144 more detailed information.
147 Contact
148 =======
150 The QEMU community can be contacted in a number of ways, with the two
151 main methods being email and IRC
153 * `<mailto:qemu-devel@nongnu.org>`_
154 * `<https://lists.nongnu.org/mailman/listinfo/qemu-devel>`_
155 * #qemu on irc.oftc.net
157 Information on additional methods of contacting the community can be
158 found online via the QEMU website:
160 * `<https://qemu.org/Contribute/StartHere>`_