<feed xmlns='http://www.w3.org/2005/Atom'>
<title>bwlp/qemu.git/default-configs/hppa-softmmu.mak, branch spice_video_codecs</title>
<subtitle>Experimental fork of QEMU with video encoding patches</subtitle>
<id>https://git.openslx.org/bwlp/qemu.git/atom/default-configs/hppa-softmmu.mak?h=spice_video_codecs</id>
<link rel='self' href='https://git.openslx.org/bwlp/qemu.git/atom/default-configs/hppa-softmmu.mak?h=spice_video_codecs'/>
<link rel='alternate' type='text/html' href='https://git.openslx.org/bwlp/qemu.git/'/>
<updated>2020-10-03T12:07:35+00:00</updated>
<entry>
<title>default-configs: move files to default-configs/devices/</title>
<updated>2020-10-03T12:07:35+00:00</updated>
<author>
<name>Paolo Bonzini</name>
</author>
<published>2020-09-18T10:06:09+00:00</published>
<link rel='alternate' type='text/html' href='https://git.openslx.org/bwlp/qemu.git/commit/?id=1bb4cb1c33805c0da0db5b76852bb73759625c4e'/>
<id>urn:sha1:1bb4cb1c33805c0da0db5b76852bb73759625c4e</id>
<content type='text'>
Make room for target files in default-configs/targets/

Reviewed-by: Richard Henderson &lt;richard.henderson@linaro.org&gt;
Signed-off-by: Paolo Bonzini &lt;pbonzini@redhat.com&gt;
</content>
</entry>
<entry>
<title>hppa-softmmu.mak: express dependencies with Kconfig</title>
<updated>2019-03-07T20:46:19+00:00</updated>
<author>
<name>Paolo Bonzini</name>
</author>
<published>2019-01-29T14:04:49+00:00</published>
<link rel='alternate' type='text/html' href='https://git.openslx.org/bwlp/qemu.git/commit/?id=9483cf27dd363926b59ee3a9c117538c834beb4e'/>
<id>urn:sha1:9483cf27dd363926b59ee3a9c117538c834beb4e</id>
<content type='text'>
%-softmmu.mak only keep boards and optional device
definitions in Kconfig mode.

Note that the Dino board uses a memory mapped 16550 UART and
therefore only CONFIG_SERIAL is needed, not CONFIG_SERIAL_ISA.

Signed-off-by: Paolo Bonzini &lt;pbonzini@redhat.com&gt;
</content>
</entry>
<entry>
<title>scsi: express dependencies with Kconfig</title>
<updated>2019-03-07T20:45:53+00:00</updated>
<author>
<name>Paolo Bonzini</name>
</author>
<published>2019-01-23T06:56:07+00:00</published>
<link rel='alternate' type='text/html' href='https://git.openslx.org/bwlp/qemu.git/commit/?id=03b348bdcbd1eda4ce097b2b84527dec774d80c4'/>
<id>urn:sha1:03b348bdcbd1eda4ce097b2b84527dec774d80c4</id>
<content type='text'>
This automatically removes the SCSI subsystem from the
binary altogether if no controllers are selected.

Signed-off-by: Paolo Bonzini &lt;pbonzini@redhat.com&gt;
Signed-off-by: Yang Zhong &lt;yang.zhong@intel.com&gt;
Message-Id: &lt;20190123065618.3520-34-yang.zhong@intel.com&gt;
Signed-off-by: Paolo Bonzini &lt;pbonzini@redhat.com&gt;
</content>
</entry>
<entry>
<title>build: convert usb.mak to Kconfig</title>
<updated>2019-03-07T20:45:53+00:00</updated>
<author>
<name>Paolo Bonzini</name>
</author>
<published>2019-01-23T06:56:06+00:00</published>
<link rel='alternate' type='text/html' href='https://git.openslx.org/bwlp/qemu.git/commit/?id=d6e9c470fc91f75db1785f17a9d3567d5a27953d'/>
<id>urn:sha1:d6e9c470fc91f75db1785f17a9d3567d5a27953d</id>
<content type='text'>
Instead of including the same list of devices for each target,
let the host controllers select CONFIG_USB and make the devices
default to present whenever USB is available.

Done with the following script:
  while read i; do
     i=${i%=y}; i=${i#CONFIG_}
     sed -i -e'/^config '$i'$/!b' -en \
            -e'a\' -e'    default y\' -e'    depends on USB' \
          `grep -lw $i hw/*/Kconfig`
  done &lt; default-configs/usb.mak

followed by adding "select USB" on the host controllers.

Signed-off-by: Paolo Bonzini &lt;pbonzini@redhat.com&gt;
Signed-off-by: Yang Zhong &lt;yang.zhong@intel.com&gt;
Reviewed-by: Thomas Huth &lt;thuth@redhat.com&gt;
Message-Id: &lt;20190123065618.3520-33-yang.zhong@intel.com&gt;
Acked-by: Richard Henderson &lt;richard.henderson@linaro.org&gt;
Signed-off-by: Paolo Bonzini &lt;pbonzini@redhat.com&gt;
</content>
</entry>
<entry>
<title>build: convert pci.mak to Kconfig</title>
<updated>2019-03-07T20:45:53+00:00</updated>
<author>
<name>Paolo Bonzini</name>
</author>
<published>2019-01-23T06:56:04+00:00</published>
<link rel='alternate' type='text/html' href='https://git.openslx.org/bwlp/qemu.git/commit/?id=7c28b925b7e176b4e44ed05d23cf883561000546'/>
<id>urn:sha1:7c28b925b7e176b4e44ed05d23cf883561000546</id>
<content type='text'>
Instead of including the same list of devices for each target,
set CONFIG_PCI to true, and make the devices default to present
whenever PCI is available.  However, s390x does not want all the
PCI devices, so there is a separate symbol to enable them.

Done mostly with the following script:

  while read i; do
     i=${i%=y}; i=${i#CONFIG_}
     sed -i -e'/^config '$i'$/!b' -en \
            -e'a\' -e'    default y if PCI_DEVICES\' -e'    depends on PCI' \
          `grep -lw $i hw/*/Kconfig`
  done &lt; default-configs/pci.mak

followed by replacing a few "depends on" clauses with "select"
whenever the symbol is not really related to PCI.

Signed-off-by: Paolo Bonzini &lt;pbonzini@redhat.com&gt;
Signed-off-by: Yang Zhong &lt;yang.zhong@intel.com&gt;
Cc: Michael S. Tsirkin &lt;mst@redhat.com&gt;
Reviewed-by: Thomas Huth &lt;thuth@redhat.com&gt;
Message-Id: &lt;20190123065618.3520-31-yang.zhong@intel.com&gt;
Acked-by: Richard Henderson &lt;richard.henderson@linaro.org&gt;
Signed-off-by: Paolo Bonzini &lt;pbonzini@redhat.com&gt;
</content>
</entry>
<entry>
<title>ide: express dependencies with Kconfig</title>
<updated>2019-03-07T20:45:53+00:00</updated>
<author>
<name>Paolo Bonzini</name>
</author>
<published>2019-01-23T06:56:02+00:00</published>
<link rel='alternate' type='text/html' href='https://git.openslx.org/bwlp/qemu.git/commit/?id=8f01b41e1098d8cb9491fa3ea7bd59cf187a5bd7'/>
<id>urn:sha1:8f01b41e1098d8cb9491fa3ea7bd59cf187a5bd7</id>
<content type='text'>
Signed-off-by: Paolo Bonzini &lt;pbonzini@redhat.com&gt;
Reviewed-by: Thomas Huth &lt;thuth@redhat.com&gt;
Message-Id: &lt;20190123065618.3520-29-yang.zhong@intel.com&gt;
Signed-off-by: Paolo Bonzini &lt;pbonzini@redhat.com&gt;
</content>
</entry>
<entry>
<title>hw/hppa/Makefile.objs: Create CONFIG_* for hppa</title>
<updated>2019-02-05T15:50:20+00:00</updated>
<author>
<name>Yang Zhong</name>
</author>
<published>2019-02-02T07:24:51+00:00</published>
<link rel='alternate' type='text/html' href='https://git.openslx.org/bwlp/qemu.git/commit/?id=714e74621e605486e9854650fed524f1c63f3ec2'/>
<id>urn:sha1:714e74621e605486e9854650fed524f1c63f3ec2</id>
<content type='text'>
Add the new configs to default-configs/hppa-sofmmu.mak.

Signed-off-by: Yang Zhong &lt;yang.zhong@intel.com&gt;
Signed-off-by: Paolo Bonzini &lt;pbonzini@redhat.com&gt;
Reviewed-by: Richard Henderson &lt;richard.henderson@linaro.org&gt;
Message-Id: &lt;20190202072456.6468-23-yang.zhong@intel.com&gt;
Signed-off-by: Paolo Bonzini &lt;pbonzini@redhat.com&gt;
</content>
</entry>
<entry>
<title>hw: make virtio devices configurable via default-configs/</title>
<updated>2018-06-01T13:14:31+00:00</updated>
<author>
<name>Paolo Bonzini</name>
</author>
<published>2018-05-22T19:48:22+00:00</published>
<link rel='alternate' type='text/html' href='https://git.openslx.org/bwlp/qemu.git/commit/?id=b5dfdb082fc350f3e68dfa61dc988d97cad28cfe'/>
<id>urn:sha1:b5dfdb082fc350f3e68dfa61dc988d97cad28cfe</id>
<content type='text'>
This is only half of the work, because the proxy devices (virtio-*-pci,
virtio-*-ccw, etc.) are still included unconditionally.  It is still a
move in the right direction.

Based-on: &lt;20180522194943.24871-1-pbonzini@redhat.com&gt;
Signed-off-by: Paolo Bonzini &lt;pbonzini@redhat.com&gt;
</content>
</entry>
<entry>
<title>hw/hppa: Implement DINO system board</title>
<updated>2018-01-31T13:30:50+00:00</updated>
<author>
<name>Helge Deller</name>
</author>
<published>2017-10-08T20:47:27+00:00</published>
<link rel='alternate' type='text/html' href='https://git.openslx.org/bwlp/qemu.git/commit/?id=a72bd606ca9754e2d2aecf75acd3c27564ad4fe0'/>
<id>urn:sha1:a72bd606ca9754e2d2aecf75acd3c27564ad4fe0</id>
<content type='text'>
Now that we have the prerequisites in target/hppa/,
implement the hardware for a PA7100LC.

This also enables build for hppa-softmmu.

Signed-off-by: Helge Deller &lt;deller@gmx.de&gt;
[rth: Since it is all new code, squashed all branch development
withing hw/hppa/ to a single patch.]
Signed-off-by: Richard Henderson &lt;richard.henderson@linaro.org&gt;
</content>
</entry>
</feed>
