Hi all, I need to add a few bytes of 0's in my vmlinux object file.So I have added a LONG(0) statement in arch/mips/ld.script. But the linker spits out a parse error at that line when I do a 'make' Here is the snippet: . = ALIGN(32); __initcall_start = .; .initcall.init : { *(.initcall.init) } __initcall_end = .; LONG(0) . = ALIGN(4096); /* Align double page for init_task_union */ __init_end = .; Can somebody say what is wrong in here? thanks, ps __________________________________ Do you Yahoo!? Yahoo! SiteBuilder - Free, easy-to-use web site design software http://sitebuilder.yahoo.com -- Kernelnewbies: Help each other learn about the Linux kernel. Archive: http://mail.nl.linux.org/kernelnewbies/ FAQ: http://kernelnewbies.org/faq/