From mboxrd@z Thu Jan 1 00:00:00 1970 From: Armand Ciejak Date: Wed, 01 Jun 2005 15:49:05 +0200 Subject: [U-Boot-Users] printf and MPC8540 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 When compiling u-boot 1.1.2 for a MPC8540 board. I have a crash in the printf function. After looking at the assembler code generated I found the "stswi" instruction which is not supported by the e500 core. The config file I use is based on the MPC8540ADS config file which has the following defines: /* High Level Configuration Options */ #define CONFIG_BOOKE 1 /* BOOKE */ #define CONFIG_E500 1 /* BOOKE e500 family */ #define CONFIG_MPC85xx 1 /* MPC8540/MPC8560 */ #define CONFIG_MPC8540 1 /* MPC8540 specific */ #define CONFIG_MPC8540ADS 1 /* MPC8540ADS board specific */ I use ELDK3.1 and CROSS_COMPILE = ppc_6xx- What should I do ?