From patchwork Sun Sep 20 16:29:00 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Mauro Condarelli X-Patchwork-Id: 1367930 X-Patchwork-Delegate: daniel.schwierzeck@googlemail.com Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=pass (sender SPF authorized) smtp.mailfrom=lists.denx.de (client-ip=85.214.62.61; helo=phobos.denx.de; envelope-from=u-boot-bounces@lists.denx.de; receiver=) Authentication-Results: ozlabs.org; dmarc=none (p=none dis=none) header.from=mclink.it Received: from phobos.denx.de (phobos.denx.de [85.214.62.61]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 4BvY1p0Zs3z9sSC for ; Mon, 21 Sep 2020 02:29:33 +1000 (AEST) Received: from h2850616.stratoserver.net (localhost [IPv6:::1]) by phobos.denx.de (Postfix) with ESMTP id 90508824E5; Sun, 20 Sep 2020 18:29:13 +0200 (CEST) Authentication-Results: phobos.denx.de; dmarc=none (p=none dis=none) header.from=mclink.it Authentication-Results: phobos.denx.de; spf=pass smtp.mailfrom=u-boot-bounces@lists.denx.de Received: by phobos.denx.de (Postfix, from userid 109) id 39F4B824B2; Sun, 20 Sep 2020 18:29:11 +0200 (CEST) X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on phobos.denx.de X-Spam-Level: X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00,SPF_HELO_NONE, URIBL_BLOCKED autolearn=ham autolearn_force=no version=3.4.2 Received: from relaygw4-20.mclink.it (relaygw4-20.mclink.it [195.78.211.246]) by phobos.denx.de (Postfix) with ESMTP id EC8678248F for ; Sun, 20 Sep 2020 18:29:08 +0200 (CEST) Authentication-Results: phobos.denx.de; dmarc=none (p=none dis=none) header.from=mclink.it Authentication-Results: phobos.denx.de; spf=none smtp.mailfrom=mc5686@mclink.it Received: from [172.24.30.44] (HELO cgp-esgout01-rm.mail.irds.it) by relaygw4-20.mclink.it (CommuniGate Pro SMTP 6.0.6) with ESMTPS id 187175773 for u-boot@lists.denx.de; Sun, 20 Sep 2020 18:29:08 +0200 X-Envelope-From: Received: from cinderella.condarelli.it (host-82-51-144-38.retail.telecomitalia.it [82.51.144.38]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) (Authenticated sender: mc5686@mclink.it) by cgp-esgout01-rm.mail.irds.it (Postfix) with ESMTPSA id 8997541AF2; Sun, 20 Sep 2020 18:29:02 +0200 (CEST) From: Mauro Condarelli To: u-boot@lists.denx.de Cc: Mauro Condarelli Subject: [PATCH 2/3] Enlarge SPL malloc area to prevent failure in lzma decompression. Date: Sun, 20 Sep 2020 18:29:00 +0200 Message-Id: <20200920162901.442748-3-mc5686@mclink.it> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20200920162901.442748-1-mc5686@mclink.it> References: <20200920162901.442748-1-mc5686@mclink.it> MIME-Version: 1.0 X-Irideos-Libra-ESVA-Information: Please contact Irideos for more information X-Irideos-Libra-ESVA-ID: 8997541AF2.A9F56 X-Irideos-Libra-ESVA: No virus found X-Irideos-Libra-ESVA-From: mc5686@mclink.it X-Irideos-Libra-ESVA-Watermark: 1601224143.21308@Phd13gFguu3Wydn5XxFcrg X-BeenThere: u-boot@lists.denx.de X-Mailman-Version: 2.1.34 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" X-Virus-Scanned: clamav-milter 0.102.3 at phobos.denx.de X-Virus-Status: Clean Signed-off-by: Mauro Condarelli --- configs/vocore2_defconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configs/vocore2_defconfig b/configs/vocore2_defconfig index 99a1143e6e..5776aada15 100644 --- a/configs/vocore2_defconfig +++ b/configs/vocore2_defconfig @@ -6,7 +6,7 @@ CONFIG_ENV_SIZE=0x1000 CONFIG_ENV_OFFSET=0x04e000 CONFIG_ENV_SECT_SIZE=0x1000 CONFIG_SYS_BOOTCOUNT_ADDR=0xb000006c -CONFIG_SPL_SYS_MALLOC_F_LEN=0x20000 +CONFIG_SPL_SYS_MALLOC_F_LEN=0x40000 CONFIG_SPL=y CONFIG_SYS_BOOTCOUNT_SINGLEWORD=y CONFIG_ARCH_MTMIPS=y