]> git.hungrycats.org Git - linux/commitdiff
[PATCH] add support to m68knommu linker script for console init section
authorGreg Ungerer <gerg@snapgear.com>
Sun, 16 Mar 2003 13:45:48 +0000 (05:45 -0800)
committerLinus Torvalds <torvalds@home.transmeta.com>
Sun, 16 Mar 2003 13:45:48 +0000 (05:45 -0800)
Also fix some spelling.

arch/m68knommu/vmlinux.lds.S

index 0aa6099a5b1d81eed1935ee0dae79f85e9928c4b..4f936da88b7f13b072da0c2d952e0939f9f758a3 100644 (file)
 
 /*
  *     The standard Arnewsh 5206 board only has 1MiB of ram. Not normally
- *     enough to be usefull. Assume the user has fitted something larger,
+ *     enough to be useful. Assume the user has fitted something larger,
  *     at least 4MiB in size. No point in not letting the kernel completely
  *     link, it will be obvious if it is too big when they go to load it.
  */
@@ -300,6 +300,9 @@ SECTIONS {
                *(.initcall6.init)
                *(.initcall7.init)
                __initcall_end = .;
+               __con_initcall_start = .;
+               *(.con_initcall.init)
+               __con_initcall_end = .;
                . = ALIGN(4);
                __initramfs_start = .;
                *(.init.ramfs)