From patchwork Wed May 27 04:11:44 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Fabio Estevam X-Patchwork-Id: 476910 X-Patchwork-Delegate: sbabic@denx.de Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from theia.denx.de (theia.denx.de [85.214.87.163]) by ozlabs.org (Postfix) with ESMTP id C7E341406AA for ; Wed, 27 May 2015 14:12:29 +1000 (AEST) Authentication-Results: ozlabs.org; dkim=fail reason="signature verification failed" (2048-bit key; unprotected) header.d=gmail.com header.i=@gmail.com header.b=y6jNw3Bo; dkim-atps=neutral Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 140B74B61D; Wed, 27 May 2015 06:12:27 +0200 (CEST) Received: from theia.denx.de ([127.0.0.1]) by localhost (theia.denx.de [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id SADBD12fkO7K; Wed, 27 May 2015 06:12:26 +0200 (CEST) Received: from theia.denx.de (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 298444B615; Wed, 27 May 2015 06:12:26 +0200 (CEST) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id BE7D44A039 for ; Wed, 27 May 2015 06:12:22 +0200 (CEST) Received: from theia.denx.de ([127.0.0.1]) by localhost (theia.denx.de [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id SEXw7kexh9Pw for ; Wed, 27 May 2015 06:12:22 +0200 (CEST) X-policyd-weight: NOT_IN_SBL_XBL_SPAMHAUS=-1.5 NOT_IN_SPAMCOP=-1.5 NOT_IN_BL_NJABL=-1.5 (only DNSBL check requested) Received: from mail-yh0-f44.google.com (mail-yh0-f44.google.com [209.85.213.44]) by theia.denx.de (Postfix) with ESMTPS id 3F0014A01C for ; Wed, 27 May 2015 06:12:19 +0200 (CEST) Received: by yhrr66 with SMTP id r66so36580891yhr.3 for ; Tue, 26 May 2015 21:12:18 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:cc:subject:date:message-id; bh=e9/WM3T4YUC8T2sICxNbec71gYZLGpBIgd2FF7eKZ2U=; b=y6jNw3BohQJ99rOzijvf90w5qV+JjzaXHa8QwV40rDT3VR/MGyNjMrldYgr95ew2hS otnzohRZNKdcx0W9oVm04j4IWu7Q/xuUiisrsb1hNHElO40P6s60DF1+t8P80To1Jrmd jqLFhogRgwSkT6Xf6BT8J9tXr+DQ/72j82BdSngNx5z0bckXhf8lxiW0KWv0vmw5iqhh gY84AQ7Bkpr9ryKoB5WetE9oaQZSXK6jPcBk2EDxrbha8dxCjcRFucGxAXNLg5nfTLDv oWDnnSKNMtqAcPq2oZKdQRKxj++0yoBhkzGHTdRGuFtirEIE16rzQ7W8FijR+3HgQy47 vHxg== X-Received: by 10.170.45.136 with SMTP id 130mr28462543ykn.105.1432699937925; Tue, 26 May 2015 21:12:17 -0700 (PDT) Received: from localhost.localdomain ([179.159.11.148]) by mx.google.com with ESMTPSA id f35sm13117805yhq.56.2015.05.26.21.12.15 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Tue, 26 May 2015 21:12:16 -0700 (PDT) From: Fabio Estevam To: sbabic@denx.de Date: Wed, 27 May 2015 01:11:44 -0300 Message-Id: <1432699908-15898-1-git-send-email-festevam@gmail.com> X-Mailer: git-send-email 1.9.1 Cc: Fabio Estevam , u-boot@lists.denx.de, otavio@ossystems.com.br Subject: [U-Boot] [PATCH 1/5] warp: Adjust CONFIG_SYS_DFU_DATA_BUF_SIZE X-BeenThere: u-boot@lists.denx.de X-Mailman-Version: 2.1.15 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" From: Fabio Estevam Adjust CONFIG_SYS_DFU_DATA_BUF_SIZE in order to avoid the following error when running the dfu command: => dfu 0 mmc 0 dfu_get_buf: Could not memalign 0x2000000 bytes Signed-off-by: Fabio Estevam --- include/configs/warp.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/configs/warp.h b/include/configs/warp.h index 2673948..f0a912b 100644 --- a/include/configs/warp.h +++ b/include/configs/warp.h @@ -94,7 +94,7 @@ #define CONFIG_CMD_DFU #define CONFIG_DFU_FUNCTION #define CONFIG_DFU_MMC -#define CONFIG_SYS_DFU_DATA_BUF_SIZE SZ_32M +#define CONFIG_SYS_DFU_DATA_BUF_SIZE SZ_16M #define DFU_DEFAULT_POLL_TIMEOUT 300 #define CONFIG_EXTRA_ENV_SETTINGS \