From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jean-Christophe PLAGNIOL-VILLARD Date: Fri, 05 Oct 2007 00:40:44 +0200 Subject: [U-Boot-Users] Booting Nucleus OS using Uboot In-Reply-To: <1191535841.7694.4.camel@localhost> Message-ID: List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de Le 5/10/07 0:10, ??Shiju Mathew?? a ?crit?: > Hello, > I am tryng to boot Nucleus OS using uboot. I tried the raw binary and > elf image format , but could not boot the OS. I could boot the OS using > the RVI debugger. To boot the binary image I just load the image to a > RAM address and called the "go" command. For elf I used bootelf command. > Has anyone have tried to load Nucleus though U-boot? > You Just need to create a U-Boot Image with mkimage and specify your load address and the entry point. If you use tftpboot to load your image as follow tftpboot 0xA0000000 /tftpboot/image And to boot go 0xA00000020 Your load address is 0xA0000000 Ans your entry point is 0xA00000020 tools/mkimage -A your-arch -c none -T firmware -a 0xA0000000 -e 0xA00000020 -d image image.bin > Thanks, > Shiju > > > ------------------------------------------------------------------------- > This SF.net email is sponsored by: Splunk Inc. > Still grepping through log files to find problems? Stop. > Now Search log events and configuration files using AJAX and a browser. > Download your FREE copy of Splunk now >> http://get.splunk.com/ > _______________________________________________ > U-Boot-Users mailing list > U-Boot-Users at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/u-boot-users >