From patchwork Mon Jul 15 14:29:51 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: =?utf-8?q?Micka=C3=ABl_Tansorier?= X-Patchwork-Id: 1132079 X-Patchwork-Delegate: trini@ti.com Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=none (mailfrom) smtp.mailfrom=lists.denx.de (client-ip=81.169.180.215; helo=lists.denx.de; envelope-from=u-boot-bounces@lists.denx.de; receiver=) Authentication-Results: ozlabs.org; dmarc=none (p=none dis=none) header.from=smile.fr Received: from lists.denx.de (dione.denx.de [81.169.180.215]) by ozlabs.org (Postfix) with ESMTP id 45nS3D3sRXz9sRJ for ; Tue, 16 Jul 2019 01:23:20 +1000 (AEST) Received: by lists.denx.de (Postfix, from userid 105) id 391A6C21F63; Mon, 15 Jul 2019 15:23:16 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on lists.denx.de X-Spam-Level: * X-Spam-Status: No, score=1.6 required=5.0 tests=RCVD_IN_BRBL_LASTEXT autolearn=no autolearn_force=no version=3.4.0 Received: from lists.denx.de (localhost [IPv6:::1]) by lists.denx.de (Postfix) with ESMTP id DE694C21E7D; Mon, 15 Jul 2019 15:23:14 +0000 (UTC) Received: by lists.denx.de (Postfix, from userid 105) id D61FAC21E7D; Mon, 15 Jul 2019 14:29:56 +0000 (UTC) Received: from idris.smile.fr (idris.smile.fr [91.216.209.19]) by lists.denx.de (Postfix) with ESMTPS id 8FEC7C21E57 for ; Mon, 15 Jul 2019 14:29:56 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by idris.smile.fr (Postfix) with ESMTP id 39FA91F5D3AF; Mon, 15 Jul 2019 16:29:56 +0200 (CEST) X-Virus-Scanned: Debian amavisd-new at smile.fr Received: from idris.smile.fr ([127.0.0.1]) by localhost (bluemind-mta.prod.vitry.intranet [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id emyhTrFrSRB4; Mon, 15 Jul 2019 16:29:56 +0200 (CEST) Received: from P-ASN-Amnesia.nantes.intranet (static-css-ccs-204145.business.bouyguestelecom.com [176.157.204.145]) by idris.smile.fr (Postfix) with ESMTPSA id E10281F5D3AD; Mon, 15 Jul 2019 16:29:55 +0200 (CEST) From: =?utf-8?q?Micka=C3=ABl_Tansorier?= To: u-boot@lists.denx.de Date: Mon, 15 Jul 2019 16:29:51 +0200 Message-Id: <20190715142951.19852-1-mickael.tansorier@smile.fr> X-Mailer: git-send-email 2.22.0 MIME-Version: 1.0 X-Mailman-Approved-At: Mon, 15 Jul 2019 15:23:13 +0000 Subject: [U-Boot] [PATCH] doc: fitImage: Fix conf number incrementation X-BeenThere: u-boot@lists.denx.de X-Mailman-Version: 2.1.18 Precedence: list List-Id: U-Boot discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: u-boot-bounces@lists.denx.de Sender: "U-Boot" Increment conf id to avoid to have two same conf name into one configuration description. Signed-off-by: Mickaƫl Tansorier --- doc/uImage.FIT/signature.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/uImage.FIT/signature.txt b/doc/uImage.FIT/signature.txt index 78b59e7203..27bcbef5d6 100644 --- a/doc/uImage.FIT/signature.txt +++ b/doc/uImage.FIT/signature.txt @@ -216,7 +216,7 @@ As an example, consider this FIT: kernel = "kernel-1"; fdt = "fdt-1"; }; - conf-1 { + conf-2 { kernel = "kernel-2"; fdt = "fdt-2"; }; @@ -232,7 +232,7 @@ configuration 3 with kernel 1 and fdt 2: kernel = "kernel-1"; fdt = "fdt-1"; }; - conf-1 { + conf-2 { kernel = "kernel-2"; fdt = "fdt-2"; };