From patchwork Fri Apr 12 20:36:36 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Pierre-Jean Texier X-Patchwork-Id: 1084912 X-Patchwork-Delegate: sbabic@denx.de 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=fail (p=quarantine dis=none) header.from=koncepto.io Authentication-Results: ozlabs.org; dkim=fail reason="signature verification failed" (2048-bit key; unprotected) header.d=koncepto.io header.i=@koncepto.io header.b="hMfVwqba"; dkim-atps=neutral Received: from lists.denx.de (dione.denx.de [81.169.180.215]) by ozlabs.org (Postfix) with ESMTP id 44gqSn14RZz9ryj for ; Sat, 13 Apr 2019 06:37:12 +1000 (AEST) Received: by lists.denx.de (Postfix, from userid 105) id 414B8C21EC5; Fri, 12 Apr 2019 20:37:08 +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=0.0 required=5.0 tests=SPF_HELO_PASS, T_DKIM_INVALID autolearn=unavailable autolearn_force=no version=3.4.0 Received: from lists.denx.de (localhost [IPv6:::1]) by lists.denx.de (Postfix) with ESMTP id B61B0C21DE8; Fri, 12 Apr 2019 20:37:05 +0000 (UTC) Received: by lists.denx.de (Postfix, from userid 105) id 6B857C21DE8; Fri, 12 Apr 2019 20:37:04 +0000 (UTC) Received: from koncepto.io (koncepto.io [195.154.119.111]) by lists.denx.de (Postfix) with ESMTPS id 3EEF6C21C2C for ; Fri, 12 Apr 2019 20:37:03 +0000 (UTC) Received: from localhost.localdomain (lfbn-1-8938-37.w193-250.abo.wanadoo.fr [193.250.79.37]) by koncepto.io (Postfix) with ESMTPSA id BDC9560046; Fri, 12 Apr 2019 22:37:02 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=koncepto.io; s=default; t=1555101422; bh=5cqxcF4vrrZZHcsRZZ9h6He5ENsU6rYvwIzlokDU4ro=; h=From:To:Cc:Subject:Date:From; b=hMfVwqbaBudoIjdMfml2VX1vy8Q0pwBsr2PYxdmS/uDkdtZCY4MX3siBZU7in6/yP 7EoPxB2bR/kNfv89EwJcSnWGlBxud5EUFN2vqcCb34hDTzwddftcBh41B3hYXtxgvy 9pg+hkJ41jNaN3iyBCNOxnCBFf/mnPL9QRhtzyDq+/wx8sYxybkJdA+QFQgajbSnav j/y8YqTuSdRXB0NKe44YPdTQCyr86+x3K74BjzlJT5Emc4IuPVb2X/yRPFC+6AuNRG JtoaeD+7dCAxJ1k5D3sKIy0IzoSQNCkS+MUMlFfcEP7KKTUsC56r4D8ToC/pUV4upX bSMXvJ5zKmX3w== From: Pierre-Jean Texier To: u-boot@lists.denx.de Date: Fri, 12 Apr 2019 22:36:36 +0200 Message-Id: <1555101396-30914-1-git-send-email-pjtexier@koncepto.io> X-Mailer: git-send-email 2.7.4 Cc: fabio.estevam@nxp.com Subject: [U-Boot] [PATCH] warp7: Fix dfu_alt_info setting after DM conversion 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: , MIME-Version: 1.0 Errors-To: u-boot-bounces@lists.denx.de Sender: "U-Boot" After DM conversion, U-Boot is larger than 512 KiB, so we need to increase the "size" of the dfu_alt_info setting. Signed-off-by: Pierre-Jean Texier Acked-by: Joris Offouga Reviewed-by: Fabio Estevam --- include/configs/warp7.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/configs/warp7.h b/include/configs/warp7.h index 043f286..4947597 100644 --- a/include/configs/warp7.h +++ b/include/configs/warp7.h @@ -39,7 +39,7 @@ #define CONFIG_SERIAL_TAG #define CONFIG_DFU_ENV_SETTINGS \ - "dfu_alt_info=boot raw 0x2 0x400 mmcpart 1\0" \ + "dfu_alt_info=boot raw 0x2 0x1000 mmcpart 1\0" \ #define CONFIG_EXTRA_ENV_SETTINGS \ CONFIG_DFU_ENV_SETTINGS \