From nobody Sat Apr 20 16:32:27 2024 Delivered-To: importer@patchew.org Received-SPF: none (zoho.com: 192.237.175.120 is neither permitted nor denied by domain of lists.xenproject.org) client-ip=192.237.175.120; envelope-from=xen-devel-bounces@lists.xenproject.org; helo=lists.xenproject.org; Authentication-Results: mx.zohomail.com; spf=none (zoho.com: 192.237.175.120 is neither permitted nor denied by domain of lists.xenproject.org) smtp.mailfrom=xen-devel-bounces@lists.xenproject.org ARC-Seal: i=1; a=rsa-sha256; t=1565732052; cv=none; d=zoho.com; s=zohoarc; b=L5KAr0q+ia0bOkA0XYKhqFwlybsWtHsIKizeU7S5mcxB7W/2mnreYYWovxR5r2a7BJaLUYXxF4G63g3lHr1hF6CeMZZYPm53wg5nFXDFRxdRmT3A5aIo1frQ5luMMe8FNXB6e0W5nVuQbRlG3UJy8ElzqJKYi7NzGQ9wSFtD+6Q= ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=zoho.com; s=zohoarc; t=1565732052; h=Content-Type:Content-Transfer-Encoding:Cc:Date:From:List-Subscribe:List-Post:List-Id:List-Help:List-Unsubscribe:MIME-Version:Message-ID:Sender:Subject:To:ARC-Authentication-Results; bh=lXU/0Brom9gHS1cHcPNyU6B+wX7Idrxy8yPJhJy/ay0=; b=c+V6RnDC2PGllen8AnTlVKLRimOb8ydo3/sdFkeWCVFQJT2q630WzzQ9/5ZnhUnQEes+tYr3WNt4MJyYGehM2MWqhvE1MN3ityxQq0F06aK9QKy5jCK+NlQLAj2hUvcEa1sOsOfY+wfVyCksEWvR1hOnhejuTNjV8ciYmjyjrBk= ARC-Authentication-Results: i=1; mx.zoho.com; spf=none (zoho.com: 192.237.175.120 is neither permitted nor denied by domain of lists.xenproject.org) smtp.mailfrom=xen-devel-bounces@lists.xenproject.org Return-Path: Received: from lists.xenproject.org (lists.xenproject.org [192.237.175.120]) by mx.zohomail.com with SMTPS id 1565732052252498.1453838355096; Tue, 13 Aug 2019 14:34:12 -0700 (PDT) Received: from localhost ([127.0.0.1] helo=lists.xenproject.org) by lists.xenproject.org with esmtp (Exim 4.89) (envelope-from ) id 1hxePR-0001IL-ET; Tue, 13 Aug 2019 21:32:49 +0000 Received: from us1-rack-iad1.inumbo.com ([172.99.69.81]) by lists.xenproject.org with esmtp (Exim 4.89) (envelope-from ) id 1hxePQ-0001IG-8n for xen-devel@lists.xenproject.org; Tue, 13 Aug 2019 21:32:48 +0000 Received: from foss.arm.com (unknown [217.140.110.172]) by us1-rack-iad1.inumbo.com (Halon) with ESMTP id e3fc3502-be11-11e9-b1ac-7f050af175b0; Tue, 13 Aug 2019 21:32:46 +0000 (UTC) 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 C00B71570; Tue, 13 Aug 2019 14:32:45 -0700 (PDT) Received: from e108454-lin.cambridge.arm.com (e108454-lin.cambridge.arm.com [10.1.196.50]) by usa-sjc-imap-foss1.foss.arm.com (Postfix) with ESMTPSA id F22B13F718; Tue, 13 Aug 2019 14:32:44 -0700 (PDT) X-Inumbo-ID: e3fc3502-be11-11e9-b1ac-7f050af175b0 From: Julien Grall To: xen-devel@lists.xenproject.org Date: Tue, 13 Aug 2019 22:32:37 +0100 Message-Id: <20190813213237.4819-1-julien.grall@arm.com> X-Mailer: git-send-email 2.11.0 Subject: [Xen-devel] [PATCH] xen/docs: arm: Update dom0less binding and example X-BeenThere: xen-devel@lists.xenproject.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Xen developer discussion List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , Cc: viktor_mitin@epam.com, Julien Grall , Stefano Stabellini , Volodymyr Babchuk MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Errors-To: xen-devel-bounces@lists.xenproject.org Sender: "Xen-devel" The binding for the dom0less module does not match Xen implementation. Any module should contain the compatible "multiboot,module" to be recognized. This was clearly an oversight as other examples with Xen code base provide the compatible "multiboot,module". So fix the binding and the example associated to it. Signed-off-by: Julien Grall Reviewed-by: Stefano Stabellini --- Cc: viktor_mitin@epam.com We probably want to consolidate all the dom0less documentation in one place rather than having to fix documation issues in a multiple places one by one. --- docs/misc/arm/device-tree/booting.txt | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/docs/misc/arm/device-tree/booting.txt b/docs/misc/arm/device-t= ree/booting.txt index 317a9e962a..0fafa01b5d 100644 --- a/docs/misc/arm/device-tree/booting.txt +++ b/docs/misc/arm/device-tree/booting.txt @@ -160,7 +160,7 @@ The kernel sub-node has the following properties: =20 - compatible =20 - "multiboot,kernel" + "multiboot,kernel", "multiboot,module" =20 - reg =20 @@ -175,7 +175,7 @@ The ramdisk sub-node has the following properties: =20 - compatible =20 - "multiboot,ramdisk" + "multiboot,ramdisk", "multiboot,module" =20 - reg =20 @@ -196,13 +196,13 @@ chosen { vpl011; =20 module@0x4a000000 { - compatible =3D "multiboot,kernel"; + compatible =3D "multiboot,kernel", "multiboot,module"; reg =3D <0x0 0x4a000000 0xffffff>; bootargs =3D "console=3DttyAMA0 init=3D/bin/sh"; }; =20 module@0x4b000000 { - compatible =3D "multiboot,ramdisk"; + compatible =3D "multiboot,ramdisk", "multiboot,module"; reg =3D <0x0 0x4b000000 0xffffff>; }; }; @@ -215,13 +215,13 @@ chosen { cpus =3D <1>; =20 module@0x4c000000 { - compatible =3D "multiboot,kernel"; + compatible =3D "multiboot,kernel", "multiboot,module"; reg =3D <0x0 0x4c000000 0xffffff>; bootargs =3D "console=3DttyAMA0 init=3D/bin/sh"; }; =20 module@0x4d000000 { - compatible =3D "multiboot,ramdisk"; + compatible =3D "multiboot,ramdisk", "multiboot,module"; reg =3D <0x0 0x4d000000 0xffffff>; }; }; --=20 2.11.0 _______________________________________________ Xen-devel mailing list Xen-devel@lists.xenproject.org https://lists.xenproject.org/mailman/listinfo/xen-devel