From 474d787f1b290acd16c2c27071d15afe98aaa196 Mon Sep 17 00:00:00 2001 From: Andrew Waterman Date: Wed, 19 Dec 2018 12:59:01 -0800 Subject: Clean up linker scripts a bit --- bbl/bbl.lds | 12 ++---------- 1 file changed, 2 insertions(+), 10 deletions(-) (limited to 'bbl') diff --git a/bbl/bbl.lds b/bbl/bbl.lds index 26f5816..892621a 100644 --- a/bbl/bbl.lds +++ b/bbl/bbl.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 = .; /*--------------------------------------------------------------------*/ @@ -48,7 +46,7 @@ SECTIONS . = ALIGN(0x1000); .htif : { - PROVIDE( __htif_base = .); + PROVIDE( __htif_base = . ); *(.htif) } . = ALIGN(0x1000); @@ -72,8 +70,7 @@ SECTIONS } /* End of initialized data segment */ - . = ALIGN(4); - PROVIDE( edata = . ); + . = ALIGN(16); _edata = .; /*--------------------------------------------------------------------*/ @@ -99,11 +96,6 @@ SECTIONS *(COMMON) } - .sbi : - { - *(.sbi) - } - .payload : { *(.payload) -- cgit v1.1