From mboxrd@z Thu Jan 1 00:00:00 1970 From: Reinhard Meyer Date: Thu, 04 Nov 2010 11:59:43 +0100 Subject: [U-Boot] [PATCH] powerpc: do not fixup NULL ptrs In-Reply-To: References: <1287049904-18917-1-git-send-email-Joakim.Tjernlund@transmode.se> <20101018203948.676071359B3@gemini.denx.de> <1702240919.111.1287950899754.JavaMail.open-xchange@proteus> <20101024201832.DAF78134F26@gemini.denx.de> <739387466.116.1287952424329.JavaMail.open-xchange@proteus> <4CC58B1B.8040005@matrix-vision.de> <20101104095742.5C4AC12A81E3@gemini.denx.de> Message-ID: <4CD2921F.7090802@emk-elektronik.de> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de Dear Joakim Tjernlund schrieb: > no, the nops has to be directly after _start: > . = EXC_OFF_SYS_RESET > > .globl _start > _start: /* time t 0 */ > nop > nop > nop > nop > > My theory is that e300c2(no FPU) CPUs configured for low > boot vector, 0x100, really uses 0x110 instead. How about a simple test: _start: bra case1 org _start+0x10 bra case2 ... case1: "turn on red led" bra case1 case2: "turn on green led" bra case2 You get the idea :) Best Regards Reinhard