From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from phobos.denx.de (phobos.denx.de [85.214.62.61]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id AB4E0ECAAD5 for ; Sun, 4 Sep 2022 01:29:52 +0000 (UTC) Received: from h2850616.stratoserver.net (localhost [IPv6:::1]) by phobos.denx.de (Postfix) with ESMTP id 8AF87844E3; Sun, 4 Sep 2022 03:29:35 +0200 (CEST) Authentication-Results: phobos.denx.de; dmarc=pass (p=none dis=none) header.from=kernel.org Authentication-Results: phobos.denx.de; spf=pass smtp.mailfrom=u-boot-bounces@lists.denx.de Authentication-Results: phobos.denx.de; dkim=pass (2048-bit key; unprotected) header.d=kernel.org header.i=@kernel.org header.b="iOW4F5fs"; dkim-atps=neutral Received: by phobos.denx.de (Postfix, from userid 109) id A9B6A84382; Sun, 4 Sep 2022 03:29:31 +0200 (CEST) Received: from ams.source.kernel.org (ams.source.kernel.org [145.40.68.75]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by phobos.denx.de (Postfix) with ESMTPS id D8D3783FC6 for ; Sun, 4 Sep 2022 03:29:27 +0200 (CEST) Authentication-Results: phobos.denx.de; dmarc=pass (p=none dis=none) header.from=kernel.org Authentication-Results: phobos.denx.de; spf=pass smtp.mailfrom=pali@kernel.org Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ams.source.kernel.org (Postfix) with ESMTPS id 33968B80C87 for ; Sun, 4 Sep 2022 01:29:27 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id C37C5C433D7 for ; Sun, 4 Sep 2022 01:29:25 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1662254965; bh=Uh7MdZsOUYzvc9hbjLtsagKBajD6ouCrGV+ecHp2EPU=; h=From:To:Subject:Date:In-Reply-To:References:From; b=iOW4F5fs8UJflTmbNelxlo+KzeTbqFUwhY5tiYOQlvRymkW50hLPDidbaAYsleJh/ f8pVSOQ53Wzm7FgDcbxt9jB8vK4Rs3mlLnxbpvWqaadR9+llsJNkEV4/q+nY+pGTVZ tGpqeKRb1aGZSqYsKeLdlsDWEewRz2fC5Fhoq2azNyMvcr4mrj1HOC/Gm0ZfRsA3ez Oc8K+oMN47I/QYb8hdZXGv0HSd5OUpCCopQ7gbCRzT34f8D1CUjYlB+p8inp9DKNkd rkV0ZNPXaDUoRY66PDOA4EFYmtS1XV4G5j1k0btuQ7KGCIopZ8cqsbrCR+UBwj8yP0 vT+or3SmR0+Tw== Received: by pali.im (Postfix) id 7CF5D4E0C; Sun, 4 Sep 2022 03:29:25 +0200 (CEST) From: =?UTF-8?q?Pali=20Roh=C3=A1r?= To: u-boot@lists.denx.de Subject: [PATCH 3/9] Nokia RX-51: Set default SYS_LOAD_ADDR to 0x80008000 Date: Sun, 4 Sep 2022 03:29:00 +0200 Message-Id: <20220904012906.17718-4-pali@kernel.org> X-Mailer: git-send-email 2.20.1 In-Reply-To: <20220904012906.17718-1-pali@kernel.org> References: <20220904012906.17718-1-pali@kernel.org> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: u-boot@lists.denx.de X-Mailman-Version: 2.1.39 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.103.6 at phobos.denx.de X-Virus-Status: Clean At address 0x80000100 are stored initial atags passed to U-Boot by NOLO. So do not overwrite them when using $loadaddr variable which value is set from CONFIG_SYS_LOAD_ADDR option. Signed-off-by: Pali Rohár --- configs/nokia_rx51_defconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configs/nokia_rx51_defconfig b/configs/nokia_rx51_defconfig index 41f8268ec2d3..6629137d0047 100644 --- a/configs/nokia_rx51_defconfig +++ b/configs/nokia_rx51_defconfig @@ -4,7 +4,7 @@ CONFIG_SYS_L2CACHE_OFF=y CONFIG_ARCH_OMAP2PLUS=y CONFIG_SYS_MALLOC_LEN=0xc0000 CONFIG_TARGET_NOKIA_RX51=y -CONFIG_SYS_LOAD_ADDR=0x80000000 +CONFIG_SYS_LOAD_ADDR=0x80008000 CONFIG_OPTIMIZE_INLINING=y CONFIG_LTO=y # CONFIG_FIT is not set -- 2.20.1