From mboxrd@z Thu Jan 1 00:00:00 1970 From: Wolfgang Wegner Date: Thu, 28 Jan 2010 12:52:53 +0100 Subject: [U-Boot] Set TEXT_BASE via .h file? In-Reply-To: <001001caa00d$7a2207b0$6e661710$@de> References: <001001caa00d$7a2207b0$6e661710$@de> Message-ID: <20100128115252.GQ23389@leila.ping.de> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de 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 .h file? yes, it is. In my .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 .h failed. Regards, Wolfgang