From nobody Thu Nov 6 10:15:20 2025 Delivered-To: importer@patchew.org Received-SPF: pass (zoho.com: domain of gnu.org designates 208.118.235.17 as permitted sender) client-ip=208.118.235.17; envelope-from=qemu-devel-bounces+importer=patchew.org@nongnu.org; helo=lists.gnu.org; Authentication-Results: mx.zohomail.com; spf=pass (zoho.com: domain of gnu.org designates 208.118.235.17 as permitted sender) smtp.mailfrom=qemu-devel-bounces+importer=patchew.org@nongnu.org; dmarc=fail(p=none dis=none) header.from=redhat.com Return-Path: Received: from lists.gnu.org (lists.gnu.org [208.118.235.17]) by mx.zohomail.com with SMTPS id 1540548559227155.9188126937437; Fri, 26 Oct 2018 03:09:19 -0700 (PDT) Received: from localhost ([::1]:59298 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gFz3O-0000GP-0c for importer@patchew.org; Fri, 26 Oct 2018 06:09:18 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:35411) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gFz1I-0006G6-3z for qemu-devel@nongnu.org; Fri, 26 Oct 2018 06:07:13 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gFz1G-0005jA-Ex for qemu-devel@nongnu.org; Fri, 26 Oct 2018 06:07:08 -0400 Received: from mx1.redhat.com ([209.132.183.28]:41738) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1gFz19-0005TU-3Q; Fri, 26 Oct 2018 06:06:59 -0400 Received: from smtp.corp.redhat.com (int-mx02.intmail.prod.int.phx2.redhat.com [10.5.11.12]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id C369AA53C4; Fri, 26 Oct 2018 10:06:55 +0000 (UTC) Received: from thuth.com (ovpn-117-235.ams2.redhat.com [10.36.117.235]) by smtp.corp.redhat.com (Postfix) with ESMTP id 7EA5260CD8; Fri, 26 Oct 2018 10:06:54 +0000 (UTC) From: Thomas Huth To: Peter Maydell , qemu-arm@nongnu.org Date: Fri, 26 Oct 2018 11:06:48 +0100 Message-Id: <1540548409-22560-2-git-send-email-thuth@redhat.com> In-Reply-To: <1540548409-22560-1-git-send-email-thuth@redhat.com> References: <1540548409-22560-1-git-send-email-thuth@redhat.com> X-Scanned-By: MIMEDefang 2.79 on 10.5.11.12 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.26]); Fri, 26 Oct 2018 10:06:55 +0000 (UTC) X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Received-From: 209.132.183.28 Subject: [Qemu-devel] [PATCH 1/2] hw/arm: Deprecate the "collie" board X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: qemu-devel@nongnu.org, Markus Armbruster Errors-To: qemu-devel-bounces+importer=patchew.org@nongnu.org Sender: "Qemu-devel" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" "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 --- 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 =3D collie_init; mc->ignore_memory_transaction_failures =3D true; mc->default_cpu_type =3D ARM_CPU_TYPE_NAME("sa1110"); + mc->deprecation_reason =3D "board is incomplete and unmaintained"; } =20 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, broke= n in lots of ways, and unable to start post-2004 operating systems. 40p machine type should be used instead. =20 +@subsection collie (ARM) (since 3.1) + +The board is incomplete and unmaintained. Use a different ARM board if +possible instead. + @section Device options =20 @subsection Block device options --=20 1.8.3.1