<feed xmlns='http://www.w3.org/2005/Atom'>
<title>bwlp/qemu.git/pc-bios/keymaps, branch spice_video_codecs</title>
<subtitle>Experimental fork of QEMU with video encoding patches</subtitle>
<id>https://git.openslx.org/bwlp/qemu.git/atom/pc-bios/keymaps?h=spice_video_codecs</id>
<link rel='self' href='https://git.openslx.org/bwlp/qemu.git/atom/pc-bios/keymaps?h=spice_video_codecs'/>
<link rel='alternate' type='text/html' href='https://git.openslx.org/bwlp/qemu.git/'/>
<updated>2022-09-01T05:42:37+00:00</updated>
<entry>
<title>meson: remove dead code</title>
<updated>2022-09-01T05:42:37+00:00</updated>
<author>
<name>Paolo Bonzini</name>
</author>
<published>2022-07-14T08:43:46+00:00</published>
<link rel='alternate' type='text/html' href='https://git.openslx.org/bwlp/qemu.git/commit/?id=eccae02d99dfcf32d5c5db76f59c8f6ba25b5cb0'/>
<id>urn:sha1:eccae02d99dfcf32d5c5db76f59c8f6ba25b5cb0</id>
<content type='text'>
Found with "muon analyze".

Reviewed-by: Marc-André Lureau &lt;marcandre.lureau@redhat.com&gt;
Signed-off-by: Paolo Bonzini &lt;pbonzini@redhat.com&gt;
</content>
</entry>
<entry>
<title>datadir: Use bundle mechanism</title>
<updated>2022-07-13T14:58:57+00:00</updated>
<author>
<name>Akihiko Odaki</name>
</author>
<published>2022-06-24T14:50:38+00:00</published>
<link rel='alternate' type='text/html' href='https://git.openslx.org/bwlp/qemu.git/commit/?id=882084a04ae9bec00e510a2319feba1d1a653fb1'/>
<id>urn:sha1:882084a04ae9bec00e510a2319feba1d1a653fb1</id>
<content type='text'>
softmmu/datadir.c had its own implementation to find files in the
build tree, but now bundle mechanism provides the unified
implementation which works for datadir and the other files.

Signed-off-by: Akihiko Odaki &lt;akihiko.odaki@gmail.com&gt;
Message-Id: &lt;20220624145039.49929-4-akihiko.odaki@gmail.com&gt;
Signed-off-by: Paolo Bonzini &lt;pbonzini@redhat.com&gt;
</content>
</entry>
<entry>
<title>meson: look up cp and dtrace with find_program()</title>
<updated>2021-09-13T11:56:26+00:00</updated>
<author>
<name>Paolo Bonzini</name>
</author>
<published>2021-09-07T17:23:49+00:00</published>
<link rel='alternate' type='text/html' href='https://git.openslx.org/bwlp/qemu.git/commit/?id=d051d0e14c7a0b198d41694a4e20f0bc5ae76048'/>
<id>urn:sha1:d051d0e14c7a0b198d41694a4e20f0bc5ae76048</id>
<content type='text'>
Avoid that meson prints a "Program xyz found" test once per
custom_target.

Signed-off-by: Paolo Bonzini &lt;pbonzini@redhat.com&gt;
</content>
</entry>
<entry>
<title>Remove superfluous .gitignore files</title>
<updated>2020-10-13T10:48:17+00:00</updated>
<author>
<name>Thomas Huth</name>
</author>
<published>2020-09-19T10:27:20+00:00</published>
<link rel='alternate' type='text/html' href='https://git.openslx.org/bwlp/qemu.git/commit/?id=2ae00c8b2f7536f1bb38c3eb40d76f4196c61d0c'/>
<id>urn:sha1:2ae00c8b2f7536f1bb38c3eb40d76f4196c61d0c</id>
<content type='text'>
Since we are now always doing out-of-tree builds, these gitignore
files should not be necessary anymore.

Message-Id: &lt;20200919133637.72744-1-thuth@redhat.com&gt;
Signed-off-by: Thomas Huth &lt;thuth@redhat.com&gt;
</content>
</entry>
<entry>
<title>meson: fix installation of keymaps</title>
<updated>2020-09-30T17:11:36+00:00</updated>
<author>
<name>Anthony PERARD</name>
</author>
<published>2020-09-18T13:03:54+00:00</published>
<link rel='alternate' type='text/html' href='https://git.openslx.org/bwlp/qemu.git/commit/?id=6e01884c3694807fd39fe0aab9e5f7d5e6c06969'/>
<id>urn:sha1:6e01884c3694807fd39fe0aab9e5f7d5e6c06969</id>
<content type='text'>
Signed-off-by: Anthony PERARD &lt;anthony.perard@citrix.com&gt;

Message-Id: &lt;20200918130354.1879275-1-anthony.perard@citrix.com&gt;
Signed-off-by: Paolo Bonzini &lt;pbonzini@redhat.com&gt;
</content>
</entry>
<entry>
<title>meson: fix keymaps without qemu-keymap</title>
<updated>2020-09-03T10:46:56+00:00</updated>
<author>
<name>Gerd Hoffmann</name>
</author>
<published>2020-08-27T10:26:17+00:00</published>
<link rel='alternate' type='text/html' href='https://git.openslx.org/bwlp/qemu.git/commit/?id=09db9b9db38e82acbc1fd4fa4661ac19c387380c'/>
<id>urn:sha1:09db9b9db38e82acbc1fd4fa4661ac19c387380c</id>
<content type='text'>
In case the qemu-keymap tool generating them is neither installed on the
system nor built from sources (due to xkbcommon not being available)
qemu will not find the keymaps when started directly from the build
tree,

This happens because commit ddcf607fa3d6 ("meson: drop keymaps symlink")
removed the symlink to the source tree, and the special handling for
install doesn't help in case we do not install qemu.

Lets fix that by simply copying over the file from the source tree as
fallback.

Reported-by: Thomas Huth &lt;thuth@redhat.com&gt;
Signed-off-by: Gerd Hoffmann &lt;kraxel@redhat.com&gt;
Message-Id: &lt;20200827102617.14448-1-kraxel@redhat.com&gt;
[thuth: Rebased, changed "config_host['qemu_datadir']" to "qemu_datadir",
        added Gerd's UNLINK fix to configure script]
Signed-off-by: Thomas Huth &lt;thuth@redhat.com&gt;
</content>
</entry>
<entry>
<title>meson: use meson datadir instead of qemu_datadir</title>
<updated>2020-09-01T12:51:33+00:00</updated>
<author>
<name>Marc-André Lureau</name>
</author>
<published>2020-08-26T11:04:16+00:00</published>
<link rel='alternate' type='text/html' href='https://git.openslx.org/bwlp/qemu.git/commit/?id=ab4c0996f80d43d1fc28c6e76f4ecb27423a7e29'/>
<id>urn:sha1:ab4c0996f80d43d1fc28c6e76f4ecb27423a7e29</id>
<content type='text'>
When cross-compiling, by default qemu_datadir is 'c:\Program
Files\QEMU', which is not recognized as being an absolute path, and
meson will end up adding the prefix again.

Signed-off-by: Marc-André Lureau &lt;marcandre.lureau@redhat.com&gt;
Message-Id: &lt;20200826110419.528931-6-marcandre.lureau@redhat.com&gt;
Signed-off-by: Paolo Bonzini &lt;pbonzini@redhat.com&gt;
</content>
</entry>
<entry>
<title>keymaps: update</title>
<updated>2020-08-21T21:06:17+00:00</updated>
<author>
<name>Paolo Bonzini</name>
</author>
<published>2020-08-21T16:09:29+00:00</published>
<link rel='alternate' type='text/html' href='https://git.openslx.org/bwlp/qemu.git/commit/?id=460b4664c6ad2b88ccfb2d69ab4cbb7d6c9165a0'/>
<id>urn:sha1:460b4664c6ad2b88ccfb2d69ab4cbb7d6c9165a0</id>
<content type='text'>
Looks like update-keymaps has not been run in a while.

Signed-off-by: Paolo Bonzini &lt;pbonzini@redhat.com&gt;
</content>
</entry>
<entry>
<title>meson: convert pc-bios/keymaps/Makefile</title>
<updated>2020-08-21T21:06:17+00:00</updated>
<author>
<name>Marc-André Lureau</name>
</author>
<published>2019-09-19T16:24:43+00:00</published>
<link rel='alternate' type='text/html' href='https://git.openslx.org/bwlp/qemu.git/commit/?id=28742467c9c0bd49f594bfd46ecca5e6398ddb12'/>
<id>urn:sha1:28742467c9c0bd49f594bfd46ecca5e6398ddb12</id>
<content type='text'>
Note that sl and sv keymaps were not created by qemu-keymap.

Signed-off-by: Marc-André Lureau &lt;marcandre.lureau@redhat.com&gt;
Tested-by: Philippe Mathieu-Daudé &lt;philmd@redhat.com&gt;
Signed-off-by: Paolo Bonzini &lt;pbonzini@redhat.com&gt;
</content>
</entry>
<entry>
<title>keymaps: regenerate keymaps</title>
<updated>2019-03-18T11:06:04+00:00</updated>
<author>
<name>Gerd Hoffmann</name>
</author>
<published>2019-03-15T11:02:48+00:00</published>
<link rel='alternate' type='text/html' href='https://git.openslx.org/bwlp/qemu.git/commit/?id=0a87602268884f977ba67df8b51735bf5ac141ec'/>
<id>urn:sha1:0a87602268884f977ba67df8b51735bf5ac141ec</id>
<content type='text'>
Pick up the config updates.  Also add a few keys to the maps which
got a QKeyCode assigned since the last time we generated the maps
(Hiragana_Katakana, Muhenkan).  Sync with xkbcommon updates.

Signed-off-by: Gerd Hoffmann &lt;kraxel@redhat.com&gt;
Message-id: 20190315110248.29208-3-kraxel@redhat.com
</content>
</entry>
</feed>
