Hi Wolfgang, Thanks for the fast response. I have tried you're suggestion, but than U-Boot doesn't start. But I don't get an compiler error. What could be the problem? I work with an PXA270 CPU and TEXT_BASE defines the base address of the RAM copy monitor code.
Regards, Andreas -----Ursprüngliche Nachricht----- Von: Wolfgang Wegner [mailto:[email protected]] Gesendet: Donnerstag, 28. Januar 2010 12:53 An: A. Geisreiter Cc: [email protected] Betreff: Re: [U-Boot] Set TEXT_BASE via <project>.h file? Hi Andreas, On Thu, Jan 28, 2010 at 12:31:44PM +0100, A. Geisreiter wrote: > Hi, > > I have a question to the TEXT_BASE setting in the config.mk file. Is it > possible to set TEXT_BASE via a setting in the <project>.h file? yes, it is. In my <project>.h I set: #define CONFIG_TEXT_BASE 0x40020000 (depending on some CONFIG_MK_... variable) and in config.mk: TEXT_BASE=$(CONFIG_TEXT_BASE) Of course there may be other possibilities, but I found this one to work after setting TEXT_BASE directly in <project>.h failed. Regards, Wolfgang _______________________________________________ U-Boot mailing list [email protected] http://lists.denx.de/mailman/listinfo/u-boot

