aboutsummaryrefslogtreecommitdiff
path: root/pk
diff options
context:
space:
mode:
authorAndrew Waterman <andrew@sifive.com>2018-12-19 12:59:01 -0800
committerAndrew Waterman <aswaterman@gmail.com>2019-01-04 13:40:23 -0800
commit474d787f1b290acd16c2c27071d15afe98aaa196 (patch)
treed7b478c6f203ded2d5a008fb053277c4f573d64d /pk
parent92434c4f697564929f2ceb724bc82d3b6bc58879 (diff)
downloadpk-474d787f1b290acd16c2c27071d15afe98aaa196.zip
pk-474d787f1b290acd16c2c27071d15afe98aaa196.tar.gz
pk-474d787f1b290acd16c2c27071d15afe98aaa196.tar.bz2
Clean up linker scripts a bit
Diffstat (limited to 'pk')
-rw-r--r--pk/pk.lds5
1 files changed, 1 insertions, 4 deletions
diff --git a/pk/pk.lds b/pk/pk.lds
index 52a7239..5665251 100644
--- a/pk/pk.lds
+++ b/pk/pk.lds
@@ -14,7 +14,6 @@ SECTIONS
/* Begining of code and text segment */
. = 0x80000000;
_ftext = .;
- PROVIDE( eprol = . );
.text :
{
@@ -39,7 +38,6 @@ SECTIONS
}
/* End of code and read-only segment */
- PROVIDE( etext = . );
_etext = .;
/*--------------------------------------------------------------------*/
@@ -72,8 +70,7 @@ SECTIONS
}
/* End of initialized data segment */
- . = ALIGN(4);
- PROVIDE( edata = . );
+ . = ALIGN(16);
_edata = .;
/*--------------------------------------------------------------------*/