From mboxrd@z Thu Jan 1 00:00:00 1970 From: Chris Hallinan Date: Fri, 13 Dec 2002 09:56:54 -0500 Subject: [U-Boot-Users] Big ppcboot image In-Reply-To: <81A66F72DCACD511B0600002A551BFCB4E9CE4@kuumex05.barco.com> 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 The fact that PPCBoot is reporting incorrect sizes indicates that your image is too big for the linker script (.lds file) object file allocation and memory organization. Your image is far too big. You would have to customize your .lds file and it isn't worth the effort. Another option might be this: burn your linux kernel image into an unused portion of your flash at a known address, and have your boot command do the "bootm" command at that address, such as the following: prog 0xffa00000 ppcboot-linux-image and your boot command would be: bootm 0xffa00000 Chris Hallinan DS4.COM, Inc. > -----Original Message----- > From: u-boot-users-admin at lists.sourceforge.net > [mailto:u-boot-users-admin at lists.sourceforge.net]On > Behalf Of Callebaut, > Beno?t > Sent: Friday, December 13, 2002 9:37 AM > To: U-Boot-Users at Sourceforge. Net (E-mail) > Subject: [U-Boot-Users] Big ppcboot image > > > > Hello, > I am using ppcboot 2.0.0 and I placed the linux kernel in > the ppcboot image > ( included in an header file). > Note that I use automatic boot (ie I don't use the main loop) > The idea is that instead of loading the image from an > esternal source > (nfs,...) I use only bootm to boot the image directly from memory. > THe problem is that the ppcboot image is now around 720 > kBytes instead of > 120 kBytes. And something goes wrong at the end of the > board_init_f just > before the realocation (realocate_code) or in it. > PPCBoot give me the following message "PPCBoot size > -292044 > reserved > (786432)" > > Some tips on what is going wrong. > ---------------------------------------------------------- > ------------------ > ------ > Benoit Callebaut > Software Development Engineer > Barco | Control Rooms > Noordlaan 5, 8520 Kuurne, Belgium > > Tel +32(0)56 36 84 28 > Fax +32(0)56 36 86 05 > > mailto:benoit.callebaut at barco.com > http://www.barcocontrolrooms.com > > > > ------------------------------------------------------- > This sf.net email is sponsored by: > With Great Power, Comes Great Responsibility > Learn to use your power at OSDN's High Performance > Computing Channel > http://hpc.devchannel.org/ > _______________________________________________ > U-Boot-Users mailing list > U-Boot-Users at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/u-boot-users >