Re: [PATCH] mpc85xx: relocate code in non-SPL build

2023-10-28 Thread Martin Fäcknitz
Works now. I used T1042D4RDB_SDCARD_defconfig. relocate_code in arch/powerpc/cpu/mpc85xx/start.o before patch (non-SPL build): 0dc0 : dc0: 7c 61 1b 78 mr r1,r3 dc4: 7c 89 23 78 mr r9,r4 dc8: 7c aa 2b 78 mr r10,r5 dcc: 48 00 00 05 bl dd0 dd0:

Re: [PATCH] mpc85xx: relocate code in non-SPL build

2023-10-28 Thread Tom Rini
On Sat, Oct 28, 2023 at 04:21:18PM +0200, Martin Fäcknitz wrote: > Works now. I used T1042D4RDB_SDCARD_defconfig. > > relocate_code in arch/powerpc/cpu/mpc85xx/start.o before patch (non-SPL > build): > > 0dc0 : > dc0: 7c 61 1b 78 mr r1,r3 > dc4: 7c 89 23 78 mr r9,r4 >

Re: [PATCH] mpc85xx: relocate code in non-SPL build

2023-10-28 Thread Tom Rini
On Fri, Oct 20, 2023 at 01:06:55AM +0200, Martin Fäcknitz wrote: > When building a non-SPL image, relocation is needed. This patch restores > the old behaviour before commit b35316fb67: CONFIG_SPL_SKIP_RELOCATE was > only defined if CONFIG_SPL_BUILD was defined. > > Fixes: b35316fb67cb ("Convert

[PATCH] mpc85xx: relocate code in non-SPL build

2023-10-19 Thread Martin Fäcknitz
When building a non-SPL image, relocation is needed. This patch restores the old behaviour before commit b35316fb67: CONFIG_SPL_SKIP_RELOCATE was only defined if CONFIG_SPL_BUILD was defined. Fixes: b35316fb67cb ("Convert CONFIG_SPL_INIT_MINIMAL et al to Kconfig") Signed-off-by: Martin Fäcknitz -