From patchwork Tue Jan 19 10:26:20 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: Milan Lakhani X-Patchwork-Id: 12029651 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-13.8 required=3.0 tests=BAYES_00,DKIM_SIGNED, DKIM_VALID,HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_CR_TRAILER,INCLUDES_PATCH, MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 2426BC433DB for ; Tue, 19 Jan 2021 10:26:30 +0000 (UTC) Received: from mail02.groups.io (mail02.groups.io [66.175.222.108]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPS id 4F04823134 for ; Tue, 19 Jan 2021 10:26:28 +0000 (UTC) Authentication-Results: mail.kernel.org; dmarc=permerror header.from=codethink.co.uk Authentication-Results: mail.kernel.org; spf=pass smtp.mailfrom=bounce+72012+232+5278000+9232812@lists.elisa.tech X-Received: by 127.0.0.2 with SMTP id eWfqYY5279335x77o9ic3149; Tue, 19 Jan 2021 02:26:28 -0800 X-Received: from ubuntu.localdomain (ubuntu.localdomain [90.222.153.26]) by mx.groups.io with SMTP id smtpd.web08.9678.1611051987092013857 for ; Tue, 19 Jan 2021 02:26:27 -0800 X-Received: by ubuntu.localdomain (Postfix, from userid 0) id 8FF8A160D15; Tue, 19 Jan 2021 10:26:22 +0000 (GMT) From: "Milan Lakhani" To: lukas.bulwahn@gmail.com, sudip.mukherjee@codethink.co.uk, linux-safety@lists.elisa.tech, linux-kernel@vger.kernel.org, linux-doc@vger.kernel.org, corbet@lwn.net, harryxiyou@gmail.com, alex.shi@linux.alibaba.com Cc: Milan Lakhani Subject: [linux-safety] [PATCH] docs: Change reference that was to removed file Date: Tue, 19 Jan 2021 10:26:20 +0000 Message-Id: <1611051980-3834-1-git-send-email-milan.lakhani@codethink.co.uk> MIME-Version: 1.0 Precedence: Bulk List-Unsubscribe: Sender: linux-safety@lists.elisa.tech List-Id: Mailing-List: list linux-safety@lists.elisa.tech; contact linux-safety+owner@lists.elisa.tech List-Post: X-Gm-Message-State: GGtbfT39ILTUk3g0KMnkah4Rx5278000AA= DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=lists.elisa.tech; q=dns/txt; s=20140610; t=1611051988; bh=+NvvZ/QM4p9UDni2T1g+dQwo50h/SOMH3ccxJJYO5Oc=; h=Cc:Content-Type:Date:From:Subject:To; b=nEyoGU7dHTJ6mZSu/YU/xAIe7aabY+kH6g4vbl05Ij+tgItE2sw/M04hxMFAqLatIif iAkOod4/rt+pGGtoNLHz9iti9LBohEG7u23PcU69GpaAPhbpYHvNgRWYFa1rDJdKOCvEY 0flkx2mjSeaFoWGcO5BmFzGpcV0NrLoIYe0= There were two references to Documentation/devicetree/booting-without-of.rst for dtb format information. This file has been removed, so I have changed the links to Documentation/devicetree/usage-model.rst for this information, which itself points to https://elinux.org/Device_Tree_Usage for an overview of the device tree data format. Signed-off-by: Milan Lakhani --- Documentation/arm/booting.rst | 2 +- Documentation/translations/zh_CN/arm/Booting | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Documentation/arm/booting.rst b/Documentation/arm/booting.rst index a226345..5392d01 100644 --- a/Documentation/arm/booting.rst +++ b/Documentation/arm/booting.rst @@ -128,7 +128,7 @@ it. The recommended placement is in the first 16KiB of RAM. The boot loader must load a device tree image (dtb) into system ram at a 64bit aligned address and initialize it with the boot data. The -dtb format is documented in Documentation/devicetree/booting-without-of.rst. +dtb format is documented in Documentation/devicetree/usage-model.rst. The kernel will look for the dtb magic value of 0xd00dfeed at the dtb physical address to determine if a dtb has been passed instead of a tagged list. diff --git a/Documentation/translations/zh_CN/arm/Booting b/Documentation/translations/zh_CN/arm/Booting index c3d26ce..d2939c7 100644 --- a/Documentation/translations/zh_CN/arm/Booting +++ b/Documentation/translations/zh_CN/arm/Booting @@ -124,7 +124,7 @@ bootloader 必须传递一个系统内存的位置和最小值,以及根文件 bootloader 必须以 64bit 地址对齐的形式加载一个设备树映像(dtb)到系统 RAM 中,并用启动数据初始化它。dtb 格式在文档 -Documentation/devicetree/booting-without-of.rst 中。内核将会在 +Documentation/devicetree/usage-model.rst 中。内核将会在 dtb 物理地址处查找 dtb 魔数值(0xd00dfeed),以确定 dtb 是否已经代替 标签列表被传递进来。