diff options
Diffstat (limited to 'firmware')
-rw-r--r-- | firmware/boot.lds | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/firmware/boot.lds b/firmware/boot.lds index f361e45e9e..97a9f784c0 100644 --- a/firmware/boot.lds +++ b/firmware/boot.lds @@ -7,15 +7,10 @@ INPUT(target/coldfire/crt0.o) #elif defined (CPU_ARM) OUTPUT_FORMAT(elf32-littlearm) OUTPUT_ARCH(arm) -#ifndef IPOD_ARCH -/* the ipods can't have the crt0.o mentioned here, but the others can't do - without it! */ -#ifdef CPU_PP -INPUT(target/arm/crt0-pp.o) -#else +#ifndef CPU_PP +/* PortalPlayer-based machines won't work if crt0 is included */ INPUT(target/arm/crt0.o) #endif -#endif #else OUTPUT_FORMAT(elf32-sh) INPUT(target/sh/crt0.o) |