From nobody Thu May 2 08:28:05 2024 Delivered-To: importer@patchew.org Received-SPF: pass (zohomail.com: domain of lists.xenproject.org designates 192.237.175.120 as permitted sender) client-ip=192.237.175.120; envelope-from=xen-devel-bounces@lists.xenproject.org; helo=lists.xenproject.org; Authentication-Results: mx.zohomail.com; spf=pass (zohomail.com: domain of lists.xenproject.org designates 192.237.175.120 as permitted sender) smtp.mailfrom=xen-devel-bounces@lists.xenproject.org; dmarc=fail(p=none dis=none) header.from=arm.com Return-Path: Received: from lists.xenproject.org (lists.xenproject.org [192.237.175.120]) by mx.zohomail.com with SMTPS id 1638457563824196.76691693991916; Thu, 2 Dec 2021 07:06:03 -0800 (PST) Received: from list by lists.xenproject.org with outflank-mailman.236700.410573 (Exim 4.92) (envelope-from ) id 1msneN-0004cX-Fp; Thu, 02 Dec 2021 15:05:31 +0000 Received: by outflank-mailman (output) from mailman id 236700.410573; Thu, 02 Dec 2021 15:05:31 +0000 Received: from localhost ([127.0.0.1] helo=lists.xenproject.org) by lists.xenproject.org with esmtp (Exim 4.92) (envelope-from ) id 1msneN-0004cQ-Ca; Thu, 02 Dec 2021 15:05:31 +0000 Received: by outflank-mailman (input) for mailman id 236700; Thu, 02 Dec 2021 15:05:30 +0000 Received: from se1-gles-sth1-in.inumbo.com ([159.253.27.254] helo=se1-gles-sth1.inumbo.com) by lists.xenproject.org with esmtp (Exim 4.92) (envelope-from ) id 1msneM-0004cH-Bz for xen-devel@lists.xenproject.org; Thu, 02 Dec 2021 15:05:30 +0000 Received: from foss.arm.com (foss.arm.com [217.140.110.172]) by se1-gles-sth1.inumbo.com (Halon) with ESMTP id 48bde4e8-5381-11ec-976b-d102b41d0961; Thu, 02 Dec 2021 16:05:28 +0100 (CET) Received: from usa-sjc-imap-foss1.foss.arm.com (unknown [10.121.207.14]) by usa-sjc-mx-foss1.foss.arm.com (Postfix) with ESMTP id 90442142F; Thu, 2 Dec 2021 07:05:27 -0800 (PST) Received: from e125770.cambridge.arm.com (e125770.cambridge.arm.com [10.1.195.16]) by usa-sjc-imap-foss1.foss.arm.com (Postfix) with ESMTPSA id 3FDF33F73B; Thu, 2 Dec 2021 07:05:26 -0800 (PST) X-Outflank-Mailman: Message body and most headers restored to incoming version X-BeenThere: xen-devel@lists.xenproject.org List-Id: Xen developer discussion List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , Errors-To: xen-devel-bounces@lists.xenproject.org Precedence: list Sender: "Xen-devel" X-Inumbo-ID: 48bde4e8-5381-11ec-976b-d102b41d0961 From: Luca Fancellu To: xen-devel@lists.xenproject.org Cc: bertrand.marquis@arm.com, wei.chen@arm.com, Andrew Cooper , George Dunlap , Ian Jackson , Jan Beulich , Julien Grall , Stefano Stabellini , Wei Liu Subject: [PATCH] docs/efi: Fix wrong compatible in dts example Date: Thu, 2 Dec 2021 15:05:17 +0000 Message-Id: <20211202150517.53029-1-luca.fancellu@arm.com> X-Mailer: git-send-email 2.17.1 X-ZM-MESSAGEID: 1638457566385100001 Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" The example in section "UEFI boot and dom0less on ARM" has a wrong compatible for the DTB passthrough, it is "ramdisk" instead of "device-tree". This patch fixes the example. Fixes: a1743fc3a9 ("arm/efi: Use dom0less configuration when using EFI boot= ") Signed-off-by: Luca Fancellu Acked-by: Julien Grall Reviewed-by: Bertrand Marquis --- Question: Does it makes sense to backport it to 4.16? --- docs/misc/efi.pandoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/misc/efi.pandoc b/docs/misc/efi.pandoc index 4abbb5bb82..abafb34527 100644 --- a/docs/misc/efi.pandoc +++ b/docs/misc/efi.pandoc @@ -222,7 +222,7 @@ domU1 { xen,uefi-binary =3D "initrd-3.0.31-0.4-xen"; }; module@3 { - compatible =3D "multiboot,ramdisk", "multiboot,module"; + compatible =3D "multiboot,device-tree", "multiboot,module"; xen,uefi-binary =3D "passthrough.dtb"; }; }; --=20 2.17.1