From nobody Wed Nov 5 22:43:06 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; dkim=fail; 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 Return-Path: Received: from lists.gnu.org (lists.gnu.org [208.118.235.17]) by mx.zohomail.com with SMTPS id 1537859502399989.8858150781715; Tue, 25 Sep 2018 00:11:42 -0700 (PDT) Received: from localhost ([::1]:51307 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1g4hVV-0006wv-Ay for importer@patchew.org; Tue, 25 Sep 2018 03:11:41 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:45936) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1g4hMH-0006ty-F8 for qemu-devel@nongnu.org; Tue, 25 Sep 2018 03:02:15 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1g4hMC-0006N7-Ki for qemu-devel@nongnu.org; Tue, 25 Sep 2018 03:02:09 -0400 Received: from ozlabs.org ([203.11.71.1]:33265) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1g4hMC-000664-4c; Tue, 25 Sep 2018 03:02:04 -0400 Received: by ozlabs.org (Postfix, from userid 1007) id 42KBnz514vz9sBW; Tue, 25 Sep 2018 17:01:59 +1000 (AEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=gibson.dropbear.id.au; s=201602; t=1537858919; bh=W8oQYccgBzTNLowgDO7nH7K8KkqeaxwPx0es4WnkHtU=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=Ui6mlUWMVrKlaYcKdQPSu0JrKRFA/HTXVu73jXy5xhpG7PZBJf6v8Z29Y5KeP2vxc Qcpd3pewY5xSmHMYe2CFnyVIBs2RK43yhJrwwtSNtSvH4MMBFKrb2UyZcnmVtrssem RC4X0gGFdOlVTnVCAOOdi8hQm3dYfBKZlu5u8rg8= From: David Gibson To: peter.maydell@linaro.org Date: Tue, 25 Sep 2018 17:01:41 +1000 Message-Id: <20180925070154.5812-2-david@gibson.dropbear.id.au> X-Mailer: git-send-email 2.17.1 In-Reply-To: <20180925070154.5812-1-david@gibson.dropbear.id.au> References: <20180925070154.5812-1-david@gibson.dropbear.id.au> X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Received-From: 203.11.71.1 Subject: [Qemu-devel] [PULL 01/14] Record history of ppcemb target in common.json 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: Thomas Huth , mark.cave-ayland@ilande.co.uk, qemu-devel@nongnu.org, groug@kaod.org, qemu-ppc@nongnu.org, clg@kaod.org, David Gibson Errors-To: qemu-devel-bounces+importer=patchew.org@nongnu.org Sender: "Qemu-devel" X-ZohoMail-DKIM: fail (Header signature does not verify) X-ZohoMail: RDKM_2 RSF_0 Z_629925259 SPT_0 Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" From: Thomas Huth We recently removed the long deprecated "ppcemb" target. This adds a comment in common.json about the SysEmuTarget type, recording when it was removed. Suggested-by: Eric Blake Signed-off-by: David Gibson --- qapi/common.json | 2 ++ 1 file changed, 2 insertions(+) diff --git a/qapi/common.json b/qapi/common.json index 50ac121d25..021174f04e 100644 --- a/qapi/common.json +++ b/qapi/common.json @@ -140,6 +140,8 @@ # prefix to produce the corresponding QEMU executable name. This # is true even for "qemu-system-x86_64". # +# ppcemb: dropped in 3.1 +# # Since: 3.0 ## { 'enum' : 'SysEmuTarget', --=20 2.17.1