* [Qemu-devel] [PATCH 0/2] Deprecate the "collie" machine and Strongarm devices @ 2018-10-26 10:06 Thomas Huth 2018-10-26 10:06 ` [Qemu-devel] [PATCH 1/2] hw/arm: Deprecate the "collie" board Thomas Huth ` (2 more replies) 0 siblings, 3 replies; 12+ messages in thread From: Thomas Huth @ 2018-10-26 10:06 UTC (permalink / raw) To: Peter Maydell, qemu-arm; +Cc: qemu-devel, Markus Armbruster These files lack an entry in the MAINTAINERS file, and according to the initial commits, the board and devices are incomplete. Since there have hardly been any commits in the past to really improve them, we should consider to mark them as deprecated now. Thomas Huth (2): hw/arm: Deprecate the "collie" board arm: Deprecate the Strongarm sa1100 and sa1110 processors hw/arm/collie.c | 1 + qemu-deprecated.texi | 10 ++++++++++ 2 files changed, 11 insertions(+) -- 1.8.3.1 ^ permalink raw reply [flat|nested] 12+ messages in thread
* [Qemu-devel] [PATCH 1/2] hw/arm: Deprecate the "collie" board 2018-10-26 10:06 [Qemu-devel] [PATCH 0/2] Deprecate the "collie" machine and Strongarm devices Thomas Huth @ 2018-10-26 10:06 ` Thomas Huth 2018-10-26 10:06 ` [Qemu-devel] [PATCH 2/2] arm: Deprecate the Strongarm sa1100 and sa1110 processors Thomas Huth 2018-10-26 10:12 ` [Qemu-devel] [PATCH 0/2] Deprecate the "collie" machine and Strongarm devices Peter Maydell 2 siblings, 0 replies; 12+ messages in thread From: Thomas Huth @ 2018-10-26 10:06 UTC (permalink / raw) To: Peter Maydell, qemu-arm; +Cc: qemu-devel, Markus Armbruster "collie" has no entry in the MAINTAINERS file, and the initial commit with ID c64b21d519a6ecae12f65625fa60f3035ed88644 said: "Add very basic implementation of collie PDA emulation. The system lacks LoCoMo and graphics/sound emulation. Linux kernel boots up to mounting rootfs (theoretically it can be provided in pflash images)." Thus the board is incomplete, since after that initial commit, there were only the usual QEMU API-related rework patches applied to this file. Unless someone speaks up and says that this board is still useful, we should consider to remove it, so mark it as deprecated now. Signed-off-by: Thomas Huth <thuth@redhat.com> --- hw/arm/collie.c | 1 + qemu-deprecated.texi | 5 +++++ 2 files changed, 6 insertions(+) diff --git a/hw/arm/collie.c b/hw/arm/collie.c index 48b732c..e41bbc5 100644 --- a/hw/arm/collie.c +++ b/hw/arm/collie.c @@ -60,6 +60,7 @@ static void collie_machine_init(MachineClass *mc) mc->init = collie_init; mc->ignore_memory_transaction_failures = true; mc->default_cpu_type = ARM_CPU_TYPE_NAME("sa1110"); + mc->deprecation_reason = "board is incomplete and unmaintained"; } DEFINE_MACHINE("collie", collie_machine_init) diff --git a/qemu-deprecated.texi b/qemu-deprecated.texi index 11b870c..acf9809 100644 --- a/qemu-deprecated.texi +++ b/qemu-deprecated.texi @@ -129,6 +129,11 @@ This machine type uses an unmaintained firmware, broken in lots of ways, and unable to start post-2004 operating systems. 40p machine type should be used instead. +@subsection collie (ARM) (since 3.1) + +The board is incomplete and unmaintained. Use a different ARM board if +possible instead. + @section Device options @subsection Block device options -- 1.8.3.1 ^ permalink raw reply related [flat|nested] 12+ messages in thread
* [Qemu-devel] [PATCH 2/2] arm: Deprecate the Strongarm sa1100 and sa1110 processors 2018-10-26 10:06 [Qemu-devel] [PATCH 0/2] Deprecate the "collie" machine and Strongarm devices Thomas Huth 2018-10-26 10:06 ` [Qemu-devel] [PATCH 1/2] hw/arm: Deprecate the "collie" board Thomas Huth @ 2018-10-26 10:06 ` Thomas Huth 2018-10-26 10:12 ` [Qemu-devel] [PATCH 0/2] Deprecate the "collie" machine and Strongarm devices Peter Maydell 2 siblings, 0 replies; 12+ messages in thread From: Thomas Huth @ 2018-10-26 10:06 UTC (permalink / raw) To: Peter Maydell, qemu-arm; +Cc: qemu-devel, Markus Armbruster The deprecated "collie" board is the only user of the Strongarm devices, so if "collie" goes away, we should remove the Strongarm devices, too. Signed-off-by: Thomas Huth <thuth@redhat.com> --- qemu-deprecated.texi | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/qemu-deprecated.texi b/qemu-deprecated.texi index acf9809..0de5c7f 100644 --- a/qemu-deprecated.texi +++ b/qemu-deprecated.texi @@ -116,6 +116,11 @@ The @option{[hub_id name]} parameter tuple of the 'hostfwd_add' and The ``ivshmem'' device type is replaced by either the ``ivshmem-plain'' or ``ivshmem-doorbell`` device types. +@subsection Strongarm sa1100 and sa1110 and related devices (since 3.1) + +Without the deprecated "collie" board there is no other machine which is +able to use these devices. + @section System emulator machines @subsection pc-0.10 and pc-0.11 (since 3.0) -- 1.8.3.1 ^ permalink raw reply related [flat|nested] 12+ messages in thread
* Re: [Qemu-devel] [PATCH 0/2] Deprecate the "collie" machine and Strongarm devices 2018-10-26 10:06 [Qemu-devel] [PATCH 0/2] Deprecate the "collie" machine and Strongarm devices Thomas Huth 2018-10-26 10:06 ` [Qemu-devel] [PATCH 1/2] hw/arm: Deprecate the "collie" board Thomas Huth 2018-10-26 10:06 ` [Qemu-devel] [PATCH 2/2] arm: Deprecate the Strongarm sa1100 and sa1110 processors Thomas Huth @ 2018-10-26 10:12 ` Peter Maydell 2018-10-27 11:04 ` Guenter Roeck 2 siblings, 1 reply; 12+ messages in thread From: Peter Maydell @ 2018-10-26 10:12 UTC (permalink / raw) To: Thomas Huth; +Cc: qemu-arm, QEMU Developers, Markus Armbruster, Guenter Roeck On 26 October 2018 at 11:06, Thomas Huth <thuth@redhat.com> wrote: > These files lack an entry in the MAINTAINERS file, and according to > the initial commits, the board and devices are incomplete. Since there > have hardly been any commits in the past to really improve them, we > should consider to mark them as deprecated now. > > Thomas Huth (2): > hw/arm: Deprecate the "collie" board > arm: Deprecate the Strongarm sa1100 and sa1110 processors Hi Guenter; there's a proposal here to deprecate (and eventually remove) the 'collie' board (strongarm) from QEMU. Is that one of the ones you're currently using in your automated testing of Linux kernels on QEMU? thanks -- PMM ^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [Qemu-devel] [PATCH 0/2] Deprecate the "collie" machine and Strongarm devices 2018-10-26 10:12 ` [Qemu-devel] [PATCH 0/2] Deprecate the "collie" machine and Strongarm devices Peter Maydell @ 2018-10-27 11:04 ` Guenter Roeck 2018-10-29 13:24 ` Peter Maydell 0 siblings, 1 reply; 12+ messages in thread From: Guenter Roeck @ 2018-10-27 11:04 UTC (permalink / raw) To: Peter Maydell, Thomas Huth; +Cc: qemu-arm, QEMU Developers, Markus Armbruster On 10/26/18 3:12 AM, Peter Maydell wrote: > On 26 October 2018 at 11:06, Thomas Huth <thuth@redhat.com> wrote: >> These files lack an entry in the MAINTAINERS file, and according to >> the initial commits, the board and devices are incomplete. Since there >> have hardly been any commits in the past to really improve them, we >> should consider to mark them as deprecated now. >> >> Thomas Huth (2): >> hw/arm: Deprecate the "collie" board >> arm: Deprecate the Strongarm sa1100 and sa1110 processors > > Hi Guenter; there's a proposal here to deprecate (and eventually > remove) the 'collie' board (strongarm) from QEMU. Is that one of > the ones you're currently using in your automated testing of Linux > kernels on QEMU? > Yes. I can run the test with older versions of qemu, so it is ok for me if it is removed (as long as that removal is not backported). Guenter ^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [Qemu-devel] [PATCH 0/2] Deprecate the "collie" machine and Strongarm devices 2018-10-27 11:04 ` Guenter Roeck @ 2018-10-29 13:24 ` Peter Maydell 2018-10-29 14:09 ` Guenter Roeck 2018-10-31 18:46 ` Thomas Huth 0 siblings, 2 replies; 12+ messages in thread From: Peter Maydell @ 2018-10-29 13:24 UTC (permalink / raw) To: Guenter Roeck; +Cc: Thomas Huth, qemu-arm, QEMU Developers, Markus Armbruster On 27 October 2018 at 12:04, Guenter Roeck <linux@roeck-us.net> wrote: > On 10/26/18 3:12 AM, Peter Maydell wrote: >> Hi Guenter; there's a proposal here to deprecate (and eventually >> remove) the 'collie' board (strongarm) from QEMU. Is that one of >> the ones you're currently using in your automated testing of Linux >> kernels on QEMU? >> > > Yes. I can run the test with older versions of qemu, so it is ok for me > if it is removed (as long as that removal is not backported). Mmm, but if we have an active user who's testing them then they probably shouldn't be in the frontline of boards to remove. Which other boards do you test with mainline QEMU? thanks -- PMM ^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [Qemu-devel] [PATCH 0/2] Deprecate the "collie" machine and Strongarm devices 2018-10-29 13:24 ` Peter Maydell @ 2018-10-29 14:09 ` Guenter Roeck 2018-10-29 15:03 ` Philippe Mathieu-Daudé 2018-10-30 9:17 ` Markus Armbruster 2018-10-31 18:46 ` Thomas Huth 1 sibling, 2 replies; 12+ messages in thread From: Guenter Roeck @ 2018-10-29 14:09 UTC (permalink / raw) To: Peter Maydell; +Cc: Thomas Huth, qemu-arm, QEMU Developers, Markus Armbruster On 10/29/18 6:24 AM, Peter Maydell wrote: > On 27 October 2018 at 12:04, Guenter Roeck <linux@roeck-us.net> wrote: >> On 10/26/18 3:12 AM, Peter Maydell wrote: >>> Hi Guenter; there's a proposal here to deprecate (and eventually >>> remove) the 'collie' board (strongarm) from QEMU. Is that one of >>> the ones you're currently using in your automated testing of Linux >>> kernels on QEMU? >>> >> >> Yes. I can run the test with older versions of qemu, so it is ok for me >> if it is removed (as long as that removal is not backported). > > Mmm, but if we have an active user who's testing them then they > probably shouldn't be in the frontline of boards to remove. > Which other boards do you test with mainline QEMU? > For arm: akita ast2500-evb beagle beaglexm borzoi collie cubieboard imx25-pdk integratorcp kzm mainstone midway mps2-an385 overo palmetto-bmc raspi2 realview-eb realview-eb-mpcore realview-pb-a8 realview-pbx-a9 romulus-bmc sabrelite smdkc210 spitz terrier tosa versatileab versatilepb vexpress-a15 vexpress-a15-a7 vexpress-a9 witherspoon-bmc xilinx-zynq-a9 z2 Though not all of them are supported by upstream qemu. For some of them I carry local patches, for others I use out-of-tree versions of qemu (beagle/beaglexm). Guenter ^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [Qemu-devel] [PATCH 0/2] Deprecate the "collie" machine and Strongarm devices 2018-10-29 14:09 ` Guenter Roeck @ 2018-10-29 15:03 ` Philippe Mathieu-Daudé 2018-10-29 20:24 ` Guenter Roeck 2018-10-30 9:17 ` Markus Armbruster 1 sibling, 1 reply; 12+ messages in thread From: Philippe Mathieu-Daudé @ 2018-10-29 15:03 UTC (permalink / raw) To: Guenter Roeck, Peter Maydell Cc: Thomas Huth, qemu-arm, QEMU Developers, Markus Armbruster Hi Guenter, On 29/10/18 15:09, Guenter Roeck wrote: > On 10/29/18 6:24 AM, Peter Maydell wrote: >> On 27 October 2018 at 12:04, Guenter Roeck <linux@roeck-us.net> wrote: >>> On 10/26/18 3:12 AM, Peter Maydell wrote: >>>> Hi Guenter; there's a proposal here to deprecate (and eventually >>>> remove) the 'collie' board (strongarm) from QEMU. Is that one of >>>> the ones you're currently using in your automated testing of Linux >>>> kernels on QEMU? >>>> >>> >>> Yes. I can run the test with older versions of qemu, so it is ok for me >>> if it is removed (as long as that removal is not backported). >> >> Mmm, but if we have an active user who's testing them then they >> probably shouldn't be in the frontline of boards to remove. >> Which other boards do you test with mainline QEMU? >> > > For arm: > > akita > ast2500-evb > beagle > beaglexm > borzoi > collie > cubieboard > imx25-pdk > integratorcp > kzm > mainstone > midway > mps2-an385 > overo > palmetto-bmc > raspi2 > realview-eb > realview-eb-mpcore > realview-pb-a8 > realview-pbx-a9 > romulus-bmc > sabrelite > smdkc210 > spitz > terrier > tosa > versatileab > versatilepb > vexpress-a15 > vexpress-a15-a7 > vexpress-a9 > witherspoon-bmc > xilinx-zynq-a9 > z2 > > Though not all of them are supported by upstream qemu. For some of them > I carry local patches, > for others I use out-of-tree versions of qemu (beagle/beaglexm). Are these patches upstream-able? If not, what do we need to get them into upstream qemu? Thanks, Phil. ^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [Qemu-devel] [PATCH 0/2] Deprecate the "collie" machine and Strongarm devices 2018-10-29 15:03 ` Philippe Mathieu-Daudé @ 2018-10-29 20:24 ` Guenter Roeck 2018-10-29 22:17 ` Philippe Mathieu-Daudé 0 siblings, 1 reply; 12+ messages in thread From: Guenter Roeck @ 2018-10-29 20:24 UTC (permalink / raw) To: Philippe Mathieu-Daudé Cc: Peter Maydell, Thomas Huth, qemu-arm, QEMU Developers, Markus Armbruster On Mon, Oct 29, 2018 at 04:03:40PM +0100, Philippe Mathieu-Daudé wrote: > Hi Guenter, > > On 29/10/18 15:09, Guenter Roeck wrote: > >On 10/29/18 6:24 AM, Peter Maydell wrote: > >>On 27 October 2018 at 12:04, Guenter Roeck <linux@roeck-us.net> wrote: > >>>On 10/26/18 3:12 AM, Peter Maydell wrote: > >>>>Hi Guenter; there's a proposal here to deprecate (and eventually > >>>>remove) the 'collie' board (strongarm) from QEMU. Is that one of > >>>>the ones you're currently using in your automated testing of Linux > >>>>kernels on QEMU? > >>>> > >>> > >>>Yes. I can run the test with older versions of qemu, so it is ok for me > >>>if it is removed (as long as that removal is not backported). > >> > >>Mmm, but if we have an active user who's testing them then they > >>probably shouldn't be in the frontline of boards to remove. > >>Which other boards do you test with mainline QEMU? > >> > > > >For arm: > > > >akita > >ast2500-evb > >beagle > >beaglexm > >borzoi > >collie > >cubieboard > >imx25-pdk > >integratorcp > >kzm > >mainstone > >midway > >mps2-an385 > >overo > >palmetto-bmc > >raspi2 > >realview-eb > >realview-eb-mpcore > >realview-pb-a8 > >realview-pbx-a9 > >romulus-bmc > >sabrelite > >smdkc210 > >spitz > >terrier > >tosa > >versatileab > >versatilepb > >vexpress-a15 > >vexpress-a15-a7 > >vexpress-a9 > >witherspoon-bmc > >xilinx-zynq-a9 > >z2 > > > >Though not all of them are supported by upstream qemu. For some of them I > >carry local patches, > >for others I use out-of-tree versions of qemu (beagle/beaglexm). > > Are these patches upstream-able? > Some of the patches (eg to be able to boot a Linux kernel image for mps2-an385 directly from qemu, or zynq CPU clock rate changes to be able to do the same) have been rejected. A few patches were submitted at some point but got lost. I don't keep track, so I don't know the exact number. For some patches, such as basic BCM283x CPRMAN support (needed to boot raspi2), a better implementation was suggested, but didn't go anywhere as far as I know. Some machines, such as beagle support, are from Linaro's tree and were never upstreamed by Linaro. The Linaro branch is based off qemu 2.3, so applying the changes to upstream qemu would be a major effort. I also use the m68k branch from github.com:vivier/qemu-m68k.git for m68k tests. I carry some 20+ patches locally in my qemu tree. Some may be obsolete or not or no longer needed (my understanding of qemu is evolving). Sometimes, if and when I find the time, I pick some and try to upstream, but I often don't follow up if there is no response or if the requested changes are too substantial. Please feel free to have a look at https://github.com/groeck/qemu (check the <version>-local branches) and let me know what might be upstreamable. I'll be happy to (re-)submit the respective patches. Note that I won't be able to make any substantial changes, though. Time is a scarce commodity nowadays, unfortunately. Guenter ^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [Qemu-devel] [PATCH 0/2] Deprecate the "collie" machine and Strongarm devices 2018-10-29 20:24 ` Guenter Roeck @ 2018-10-29 22:17 ` Philippe Mathieu-Daudé 0 siblings, 0 replies; 12+ messages in thread From: Philippe Mathieu-Daudé @ 2018-10-29 22:17 UTC (permalink / raw) To: Guenter Roeck Cc: Peter Maydell, Thomas Huth, qemu-arm, QEMU Developers, Markus Armbruster On 29/10/18 21:24, Guenter Roeck wrote: > On Mon, Oct 29, 2018 at 04:03:40PM +0100, Philippe Mathieu-Daudé wrote: >> On 29/10/18 15:09, Guenter Roeck wrote: >>> On 10/29/18 6:24 AM, Peter Maydell wrote: >>>> On 27 October 2018 at 12:04, Guenter Roeck <linux@roeck-us.net> wrote: >>>>> On 10/26/18 3:12 AM, Peter Maydell wrote: >>>>>> Hi Guenter; there's a proposal here to deprecate (and eventually >>>>>> remove) the 'collie' board (strongarm) from QEMU. Is that one of >>>>>> the ones you're currently using in your automated testing of Linux >>>>>> kernels on QEMU? >>>>>> >>>>> >>>>> Yes. I can run the test with older versions of qemu, so it is ok for me >>>>> if it is removed (as long as that removal is not backported). [...] >>> Though not all of them are supported by upstream qemu. For some of them I >>> carry local patches, >>> for others I use out-of-tree versions of qemu (beagle/beaglexm). >> >> Are these patches upstream-able? >> > > Some of the patches (eg to be able to boot a Linux kernel image for mps2-an385 > directly from qemu, or zynq CPU clock rate changes to be able to do the same) > have been rejected. A few patches were submitted at some point but got lost. > I don't keep track, so I don't know the exact number. For some patches, such > as basic BCM283x CPRMAN support (needed to boot raspi2), a better > implementation was suggested, but didn't go anywhere as far as I know. > > Some machines, such as beagle support, are from Linaro's tree and were never > upstreamed by Linaro. The Linaro branch is based off qemu 2.3, so applying > the changes to upstream qemu would be a major effort. I also use the m68k > branch from github.com:vivier/qemu-m68k.git for m68k tests. > > I carry some 20+ patches locally in my qemu tree. Some may be obsolete or > not or no longer needed (my understanding of qemu is evolving). Sometimes, > if and when I find the time, I pick some and try to upstream, but I often > don't follow up if there is no response or if the requested changes are > too substantial. > > Please feel free to have a look at https://github.com/groeck/qemu > (check the <version>-local branches) and let me know what might be > upstreamable. I'll be happy to (re-)submit the respective patches. > Note that I won't be able to make any substantial changes, though. > Time is a scarce commodity nowadays, unfortunately. Thank you for pointing your work, I'll try to salvage what I can. Regards, Phil. ^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [Qemu-devel] [PATCH 0/2] Deprecate the "collie" machine and Strongarm devices 2018-10-29 14:09 ` Guenter Roeck 2018-10-29 15:03 ` Philippe Mathieu-Daudé @ 2018-10-30 9:17 ` Markus Armbruster 1 sibling, 0 replies; 12+ messages in thread From: Markus Armbruster @ 2018-10-30 9:17 UTC (permalink / raw) To: Guenter Roeck; +Cc: Peter Maydell, Thomas Huth, qemu-arm, QEMU Developers Guenter Roeck <linux@roeck-us.net> writes: > On 10/29/18 6:24 AM, Peter Maydell wrote: >> On 27 October 2018 at 12:04, Guenter Roeck <linux@roeck-us.net> wrote: >>> On 10/26/18 3:12 AM, Peter Maydell wrote: >>>> Hi Guenter; there's a proposal here to deprecate (and eventually >>>> remove) the 'collie' board (strongarm) from QEMU. Is that one of >>>> the ones you're currently using in your automated testing of Linux >>>> kernels on QEMU? >>>> >>> >>> Yes. I can run the test with older versions of qemu, so it is ok for me >>> if it is removed (as long as that removal is not backported). >> >> Mmm, but if we have an active user who's testing them then they >> probably shouldn't be in the frontline of boards to remove. >> Which other boards do you test with mainline QEMU? >> > > For arm: > > akita > ast2500-evb > beagle > beaglexm > borzoi > collie > cubieboard > imx25-pdk > integratorcp > kzm > mainstone > midway > mps2-an385 > overo > palmetto-bmc > raspi2 > realview-eb > realview-eb-mpcore > realview-pb-a8 > realview-pbx-a9 > romulus-bmc > sabrelite > smdkc210 > spitz > terrier > tosa > versatileab > versatilepb > vexpress-a15 > vexpress-a15-a7 > vexpress-a9 > witherspoon-bmc > xilinx-zynq-a9 > z2 > > Though not all of them are supported by upstream qemu. For some of them I carry local patches, > for others I use out-of-tree versions of qemu (beagle/beaglexm). Would it be possible to get useful parts of your automated testing into upstream QEMU's CI? I'm asking because I think we should require at least a smoke test in CI for all machine types, and drop the ones that lack it. Not today, but in the not-too-distant future. ^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [Qemu-devel] [PATCH 0/2] Deprecate the "collie" machine and Strongarm devices 2018-10-29 13:24 ` Peter Maydell 2018-10-29 14:09 ` Guenter Roeck @ 2018-10-31 18:46 ` Thomas Huth 1 sibling, 0 replies; 12+ messages in thread From: Thomas Huth @ 2018-10-31 18:46 UTC (permalink / raw) To: Peter Maydell, Guenter Roeck; +Cc: qemu-arm, QEMU Developers, Markus Armbruster On 2018-10-29 13:24, Peter Maydell wrote: > On 27 October 2018 at 12:04, Guenter Roeck <linux@roeck-us.net> wrote: >> On 10/26/18 3:12 AM, Peter Maydell wrote: >>> Hi Guenter; there's a proposal here to deprecate (and eventually >>> remove) the 'collie' board (strongarm) from QEMU. Is that one of >>> the ones you're currently using in your automated testing of Linux >>> kernels on QEMU? >>> >> >> Yes. I can run the test with older versions of qemu, so it is ok for me >> if it is removed (as long as that removal is not backported). > > Mmm, but if we have an active user who's testing them then they > probably shouldn't be in the frontline of boards to remove. Yes, I agree. I based my patch on the assumption that the board was incomplete and not really usable (as mentioned in the patch description), but if it is still usable to some degree, then please disregard my patch. Thomas ^ permalink raw reply [flat|nested] 12+ messages in thread
end of thread, other threads:[~2018-10-31 18:46 UTC | newest] Thread overview: 12+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2018-10-26 10:06 [Qemu-devel] [PATCH 0/2] Deprecate the "collie" machine and Strongarm devices Thomas Huth 2018-10-26 10:06 ` [Qemu-devel] [PATCH 1/2] hw/arm: Deprecate the "collie" board Thomas Huth 2018-10-26 10:06 ` [Qemu-devel] [PATCH 2/2] arm: Deprecate the Strongarm sa1100 and sa1110 processors Thomas Huth 2018-10-26 10:12 ` [Qemu-devel] [PATCH 0/2] Deprecate the "collie" machine and Strongarm devices Peter Maydell 2018-10-27 11:04 ` Guenter Roeck 2018-10-29 13:24 ` Peter Maydell 2018-10-29 14:09 ` Guenter Roeck 2018-10-29 15:03 ` Philippe Mathieu-Daudé 2018-10-29 20:24 ` Guenter Roeck 2018-10-29 22:17 ` Philippe Mathieu-Daudé 2018-10-30 9:17 ` Markus Armbruster 2018-10-31 18:46 ` Thomas Huth
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox; as well as URLs for NNTP newsgroup(s).