altos/telelco-v2.0: A bit fancier with the drag-mode LED show
[fw/altos] / src / lpc / altos-loader.ld
index 4f78f552de0d524ec59fd59400ae417d3259613c..84d7610c21036a65b5c21e2448d61ed24cf5c2e0 100644 (file)
@@ -3,7 +3,8 @@
  *
  * This program is free software; you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; version 2 of the License.
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
  *
  * This program is distributed in the hope that it will be useful, but
  * WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -53,7 +54,7 @@ SECTIONS {
         */
        .boot ORIGIN(ram) + SIZEOF(.interrupt) (NOLOAD) : {
                __boot_start__ = .;
-               *(.boot)
+               *(.boot*)
                __boot_end__ = .;
        } >ram
 
@@ -61,15 +62,15 @@ SECTIONS {
         */
        .data : {
                __data_start__ = .;
-               *(.data       /* initialized data */
+               *(.data*)       /* initialized data */
                __data_end__ = .;
        } >ram AT>rom
 
 
        .bss : {
                __bss_start__ = .;
-               *(.bss)
-               *(COMMON)
+               *(.bss*)
+               *(COMMON*)
                __bss_end__ = .;
        } >ram