summaryrefslogtreecommitdiffstats
path: root/src/module.ld
diff options
context:
space:
mode:
Diffstat (limited to 'src/module.ld')
-rw-r--r--src/module.ld11
1 files changed, 9 insertions, 2 deletions
diff --git a/src/module.ld b/src/module.ld
index ddabf3981..02239b8d3 100644
--- a/src/module.ld
+++ b/src/module.ld
@@ -5,9 +5,9 @@
/* */
/* OpenPOWER HostBoot Project */
/* */
-/* Contributors Listed Below - COPYRIGHT 2010,2014 */
-/* [+] International Business Machines Corp. */
+/* Contributors Listed Below - COPYRIGHT 2010,2015 */
/* [+] Google Inc. */
+/* [+] International Business Machines Corp. */
/* */
/* */
/* Licensed under the Apache License, Version 2.0 (the "License"); */
@@ -34,6 +34,13 @@ SECTIONS
.rodata ALIGN(0x8): {
__minimum_data_start_addr = ALIGN(0x1000);
+ tls_start_address = .;
+ *(.tdata)
+ *(.tdata.*)
+ *(.tbss)
+ *(.tbss.*)
+ tls_end_address = .;
+ . = ALIGN(0x8);
ctor_start_address = .;
*(.ctors)
*(.ctors.*)
OpenPOWER on IntegriCloud