[Qemu-devel] [PULL 0/8] Add the m68k next-cube machine

Thomas Huth posted 8 patches 4 years, 7 months ago
Test docker-clang@ubuntu failed
Test FreeBSD passed
Test checkpatch passed
Test docker-mingw@fedora passed
Patches applied successfully (tree, apply log)
git fetch https://github.com/patchew-project/qemu tags/patchew/20190907154744.4136-1-huth@tuxfamily.org
.travis.yml                               |   7 +-
MAINTAINERS                               |   7 +
default-configs/m68k-softmmu.mak          |   1 +
hw/char/escc.c                            |  30 +-
hw/display/Makefile.objs                  |   1 +
hw/display/next-fb.c                      | 146 +++++
hw/m68k/Kconfig                           |   5 +
hw/m68k/Makefile.objs                     |   1 +
hw/m68k/next-cube.c                       | 978 ++++++++++++++++++++++++++++++
hw/m68k/next-kbd.c                        | 291 +++++++++
include/hw/char/escc.h                    |   1 +
include/hw/m68k/next-cube.h               |  47 ++
tests/acceptance/machine_m68k_nextcube.py | 121 ++++
tests/boot-serial-test.c                  |  12 +
14 files changed, 1641 insertions(+), 7 deletions(-)
create mode 100644 hw/display/next-fb.c
create mode 100644 hw/m68k/next-cube.c
create mode 100644 hw/m68k/next-kbd.c
create mode 100644 include/hw/m68k/next-cube.h
create mode 100644 tests/acceptance/machine_m68k_nextcube.py
[Qemu-devel] [PULL 0/8] Add the m68k next-cube machine
Posted by Thomas Huth 4 years, 7 months ago
 Hi Peter,

the following changes since commit 90b1e3afd33226b6078fec6d77a18373712a975c:

  Merge remote-tracking branch 'remotes/huth-gitlab/tags/pull-request-2019-09-05-v2' into staging (2019-09-05 17:09:13 +0100)

are available in the Git repository at:

  https://gitlab.com/huth/qemu.git tags/m68k-pull-2019-09-07

for you to fetch changes up to 25311649592f5584b1e1012d69c7327ef87473f4:

  .travis.yml: Let the avocado job run the NeXTcube tests (2019-09-07 08:35:41 +0200)

----------------------------------------------------------------
Add the m68k next-cube machine
----------------------------------------------------------------

Laurent Vivier (1):
      escc: introduce a selector for the register bit

Philippe Mathieu-Daudé (2):
      tests/acceptance: Add test of NeXTcube framebuffer using OCR
      .travis.yml: Let the avocado job run the NeXTcube tests

Thomas Huth (5):
      m68k: Add NeXTcube framebuffer device emulation
      m68k: Add NeXTcube keyboard device
      m68k: Add NeXTcube machine
      m68k: Add serial controller to the NeXTcube machine
      m68k: Add an entry for the NeXTcube machine to the MAINTAINERS file

 .travis.yml                               |   7 +-
 MAINTAINERS                               |   7 +
 default-configs/m68k-softmmu.mak          |   1 +
 hw/char/escc.c                            |  30 +-
 hw/display/Makefile.objs                  |   1 +
 hw/display/next-fb.c                      | 146 +++++
 hw/m68k/Kconfig                           |   5 +
 hw/m68k/Makefile.objs                     |   1 +
 hw/m68k/next-cube.c                       | 978 ++++++++++++++++++++++++++++++
 hw/m68k/next-kbd.c                        | 291 +++++++++
 include/hw/char/escc.h                    |   1 +
 include/hw/m68k/next-cube.h               |  47 ++
 tests/acceptance/machine_m68k_nextcube.py | 121 ++++
 tests/boot-serial-test.c                  |  12 +
 14 files changed, 1641 insertions(+), 7 deletions(-)
 create mode 100644 hw/display/next-fb.c
 create mode 100644 hw/m68k/next-cube.c
 create mode 100644 hw/m68k/next-kbd.c
 create mode 100644 include/hw/m68k/next-cube.h
 create mode 100644 tests/acceptance/machine_m68k_nextcube.py

Re: [Qemu-devel] [PULL 0/8] Add the m68k next-cube machine
Posted by Peter Maydell 4 years, 7 months ago
On Sat, 7 Sep 2019 at 16:47, Thomas Huth <huth@tuxfamily.org> wrote:
>
>  Hi Peter,
>
> the following changes since commit 90b1e3afd33226b6078fec6d77a18373712a975c:
>
>   Merge remote-tracking branch 'remotes/huth-gitlab/tags/pull-request-2019-09-05-v2' into staging (2019-09-05 17:09:13 +0100)
>
> are available in the Git repository at:
>
>   https://gitlab.com/huth/qemu.git tags/m68k-pull-2019-09-07
>
> for you to fetch changes up to 25311649592f5584b1e1012d69c7327ef87473f4:
>
>   .travis.yml: Let the avocado job run the NeXTcube tests (2019-09-07 08:35:41 +0200)
>
> ----------------------------------------------------------------
> Add the m68k next-cube machine
> ----------------------------------------------------------------


Applied, thanks.

Please update the changelog at https://wiki.qemu.org/ChangeLog/4.2
for any user-visible changes.

-- PMM