From mboxrd@z Thu Jan 1 00:00:00 1970 From: Pierre Kestener Date: Wed, 27 Apr 2005 17:01:35 +0200 Subject: [U-Boot-Users] Re: Download U-Boot in RAM on Memec Board In-Reply-To: <20050426221217.98E031224C@sc8-sf-spam2.sourceforge.net> References: <20050426221217.98E031224C@sc8-sf-spam2.sourceforge.net> Message-ID: <426FA94F.8070500@cea.fr> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de >Subject: [U-Boot-Users] Download U-Boot in RAM on Memec Board > >Hei at all > >I have comiled u-boot and want to download the u-boot in RAM on Memec Evaluation Board. >The board has 64K RAM and address is 0x00000000 to 0x03FFFFFF. > >When i use the commands described in examples e.g. >xmd> ppcconnect >xmd> dow uboot.elf >xmd> run >the xmd begins to download at address 0x04000000 !!! and at the console I get information >on which addresses the sectors were placed. > > > You have to change TEXT_BASE (see "board/xilinx/ml300/config.mk" file, default is 0x04000000) to some address inside RAM (for example 0x100000) and change accordingly CFG_MONITOR_BASE in file "include/configs/ml300.h" (see README at top of u-boot sources). It should be sufficient to run u-boot this way on a Memec board via xmd. Pierre Kestener.