From patchwork Sat Mar 26 11:20:00 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Paul Kocialkowski X-Patchwork-Id: 602165 X-Patchwork-Delegate: trini@ti.com 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 3qXHl32qFXz9sD2 for ; Sat, 26 Mar 2016 22:19:59 +1100 (AEDT) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 814F6A75CE; Sat, 26 Mar 2016 12:19:51 +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 i60JUELGo6WM; Sat, 26 Mar 2016 12:19:51 +0100 (CET) Received: from theia.denx.de (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id ABD3B4BF90; Sat, 26 Mar 2016 12:19:41 +0100 (CET) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 707504BE6F for ; Sat, 26 Mar 2016 12:19:33 +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 Id6f_lPA0eFp for ; Sat, 26 Mar 2016 12:19:33 +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 gagarine.paulk.fr (gagarine.paulk.fr [109.190.93.129]) by theia.denx.de (Postfix) with ESMTPS id 3594B4BB1A for ; Sat, 26 Mar 2016 12:19:30 +0100 (CET) Received: by gagarine.paulk.fr (Postfix, from userid 65534) id CFEF3207AF; Sat, 26 Mar 2016 12:19:29 +0100 (CET) X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on gagarine.paulk.fr X-Spam-Level: X-Spam-Status: No, score=0.0 required=5.0 tests=none autolearn=unavailable autolearn_force=no version=3.4.0 Received: from armstrong.paulk.fr (armstrong.paulk.fr [82.233.88.171]) by gagarine.paulk.fr (Postfix) with ESMTPS id EB042207BC; Sat, 26 Mar 2016 12:19:22 +0100 (CET) Received: from localhost.localdomain (aldrin [192.168.0.128]) by armstrong.paulk.fr (Postfix) with ESMTP id 7A7CE378C2; Sat, 26 Mar 2016 12:19:21 +0100 (CET) From: Paul Kocialkowski To: u-boot@lists.denx.de Date: Sat, 26 Mar 2016 12:20:00 +0100 Message-Id: <1458991204-22798-2-git-send-email-contact@paulk.fr> X-Mailer: git-send-email 2.7.4 In-Reply-To: <1458991204-22798-1-git-send-email-contact@paulk.fr> References: <1458991204-22798-1-git-send-email-contact@paulk.fr> Cc: Tom Rini Subject: [U-Boot] [PATCH 2/6] kc1: Move PXE file address to a viable location 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" This moves the PXE file address out of the bounds of the U-Boot image (which is loaded at 0x80100000). This also moves the ramdisk address to a better-looking aligned location. Signed-off-by: Paul Kocialkowski --- include/configs/kc1.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/configs/kc1.h b/include/configs/kc1.h index c2ac148..4eb6f85 100644 --- a/include/configs/kc1.h +++ b/include/configs/kc1.h @@ -226,8 +226,8 @@ "loadaddr=0x82000000\0" \ "fdt_addr_r=0x88000000\0" \ "fdtaddr=0x88000000\0" \ - "ramdisk_addr_r=0x88080000\0" \ - "pxefile_addr_r=0x80100000\0" \ + "ramdisk_addr_r=0x84000000\0" \ + "pxefile_addr_r=0x86000000\0" \ "scriptaddr=0x80000000\0" \ "bootm_size=0x10000000\0" \ "boot_mmc_dev=0\0" \