|
@@ -20,7 +20,8 @@
|
|
*
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
|
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
+
|
|
* GNU General Public License for more details.
|
|
* GNU General Public License for more details.
|
|
*
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* You should have received a copy of the GNU General Public License
|
|
@@ -49,23 +50,9 @@ SECTIONS
|
|
. = ALIGN(4);
|
|
. = ALIGN(4);
|
|
.data : {
|
|
.data : {
|
|
*(.data)
|
|
*(.data)
|
|
- __datarel_start = .;
|
|
|
|
- *(.data.rel)
|
|
|
|
- __datarelrolocal_start = .;
|
|
|
|
- *(.data.rel.ro.local)
|
|
|
|
- __datarellocal_start = .;
|
|
|
|
- *(.data.rel.local)
|
|
|
|
- __datarelro_start = .;
|
|
|
|
- *(.data.rel.ro)
|
|
|
|
}
|
|
}
|
|
|
|
|
|
. = ALIGN(4);
|
|
. = ALIGN(4);
|
|
- __rel_dyn_start = .;
|
|
|
|
- .rel.dyn : { *(.rel.dyn) }
|
|
|
|
- __rel_dyn_end = .;
|
|
|
|
-
|
|
|
|
- __dynsym_start = .;
|
|
|
|
- .dynsym : { *(.dynsym) }
|
|
|
|
|
|
|
|
. = .;
|
|
. = .;
|
|
__u_boot_cmd_start = .;
|
|
__u_boot_cmd_start = .;
|
|
@@ -73,9 +60,24 @@ SECTIONS
|
|
__u_boot_cmd_end = .;
|
|
__u_boot_cmd_end = .;
|
|
|
|
|
|
. = ALIGN(4);
|
|
. = ALIGN(4);
|
|
- __bss_start = .;
|
|
|
|
- .bss (NOLOAD) : { *(.bss) . = ALIGN(4); }
|
|
|
|
- _end = .;
|
|
|
|
|
|
+
|
|
|
|
+ .rel.dyn : {
|
|
|
|
+ __rel_dyn_start = .;
|
|
|
|
+ *(.rel*)
|
|
|
|
+ __rel_dyn_end = .;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ .dynsym : {
|
|
|
|
+ __dynsym_start = .;
|
|
|
|
+ *(.dynsym)
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ .bss __rel_dyn_start (OVERLAY) : {
|
|
|
|
+ __bss_start = .;
|
|
|
|
+ *(.bss)
|
|
|
|
+ . = ALIGN(4);
|
|
|
|
+ _end = .;
|
|
|
|
+ }
|
|
|
|
|
|
/DISCARD/ : { *(.dynstr*) }
|
|
/DISCARD/ : { *(.dynstr*) }
|
|
/DISCARD/ : { *(.dynamic*) }
|
|
/DISCARD/ : { *(.dynamic*) }
|