Mel Gorman wrote:
>   LD      arch/i386/boot/setup.elf
> ld:arch/i386/boot/setup.ld:47: syntax error

Does this patch fix it for you?

        -hpa
diff --git a/arch/i386/boot/setup.ld b/arch/i386/boot/setup.ld
index e9ca0c2..c9c5530 100644
--- a/arch/i386/boot/setup.ld
+++ b/arch/i386/boot/setup.ld
@@ -44,5 +44,5 @@ SECTIONS
 
        /DISCARD/ : { *(.note*) }
 
-       ASSERT(_end <= 0x8000, "Setup too big!")
+       . = ASSERT(_end <= 0x8000, "Setup too big!")
 }

Reply via email to