From patchwork Tue Jan 17 08:54:26 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Mike Looijmans X-Patchwork-Id: 716060 X-Patchwork-Delegate: monstr@monstr.eu 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 3v2kTF4d43z9ryk for ; Tue, 17 Jan 2017 19:55:29 +1100 (AEDT) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id D8102B3893; Tue, 17 Jan 2017 09:55:22 +0100 (CET) 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 reBRghqi6lJe; Tue, 17 Jan 2017 09:55:22 +0100 (CET) Received: from theia.denx.de (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id EDA08A7638; Tue, 17 Jan 2017 09:54:53 +0100 (CET) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id BBB5EA75E6 for ; Tue, 17 Jan 2017 09:54:39 +0100 (CET) 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 fLb_RnJxQw7x for ; Tue, 17 Jan 2017 09:54:39 +0100 (CET) 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 atl4mhob08.myregisteredsite.com (atl4mhob08.myregisteredsite.com [209.17.115.46]) by theia.denx.de (Postfix) with ESMTP id 2DF26A75D5 for ; Tue, 17 Jan 2017 09:54:34 +0100 (CET) Received: from mailpod.hostingplatform.com ([10.30.71.207]) by atl4mhob08.myregisteredsite.com (8.14.4/8.14.4) with ESMTP id v0H8sXxV019920 for ; Tue, 17 Jan 2017 03:54:33 -0500 Received: (qmail 13687 invoked by uid 0); 17 Jan 2017 08:54:33 -0000 X-TCPREMOTEIP: 37.74.225.130 X-Authenticated-UID: mike@milosoftware.com Received: from unknown (HELO mikebuntu.TOPIC.LOCAL) (mike@milosoftware.com@37.74.225.130) by 0 with ESMTPA; 17 Jan 2017 08:54:32 -0000 From: Mike Looijmans To: u-boot@lists.denx.de Date: Tue, 17 Jan 2017 09:54:26 +0100 Message-Id: <1484643266-25216-4-git-send-email-mike.looijmans@topic.nl> X-Mailer: git-send-email 1.9.1 In-Reply-To: <1484643266-25216-1-git-send-email-mike.looijmans@topic.nl> References: <1484643266-25216-1-git-send-email-mike.looijmans@topic.nl> Cc: michal.simek@xilinx.com Subject: [U-Boot] [PATCH 3/3] configs/topic_miami.h: Correct kernel_size in default environment 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" The kernel partition in QSPI is 0x440000 large, not 0x400000. Fix this in the environment, otherwise the kernel will fail to boot if it occupies more space. Signed-off-by: Mike Looijmans --- include/configs/topic_miami.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/configs/topic_miami.h b/include/configs/topic_miami.h index 3b0fa29..42cfbb0 100644 --- a/include/configs/topic_miami.h +++ b/include/configs/topic_miami.h @@ -110,7 +110,7 @@ "bootscript=autorun.scr\0" \ "loadbit_addr=0x100000\0" \ "loadbootenv_addr=0x2000000\0" \ - "kernel_size=0x400000\0" \ + "kernel_size=0x440000\0" \ "devicetree_size=0x10000\0" \ "boot_size=0xF00000\0" \ "fdt_high=0x20000000\0" \