X-Git-Url: https://git.zerfleddert.de/cgi-bin/gitweb.cgi/proxmark3-svn/blobdiff_plain/9b87d273b5f529e4e5d5433da60209f0566c8a3a..daf8b85cdaed21ace94bae1a49526d09ea389c73:/armsrc/ldscript

diff --git a/armsrc/ldscript b/armsrc/ldscript
index a61938ed..840b8196 100644
--- a/armsrc/ldscript
+++ b/armsrc/ldscript
@@ -11,8 +11,7 @@ INCLUDE ../common/ldscript.common
 
 PHDRS
 {
-	fpgaimage PT_LOAD FLAGS(4);
-	text PT_LOAD;
+	text PT_LOAD FLAGS(5);
 	data PT_LOAD;
 	bss PT_LOAD;
 }
@@ -20,10 +19,6 @@ PHDRS
 ENTRY(Vector)
 SECTIONS
 {
-	.fpgaimage : {
-		*(fpga_bit.data)
-	} >fpgaimage :fpgaimage
-
 	.start : {
 		*(.startos)
 	} >osimage :text
@@ -39,7 +34,9 @@ SECTIONS
 	.rodata : {
 		*(.rodata)
 		*(.rodata.*)
-		*(.version_information)
+		*(fpga_lf_bit.data)
+		*(fpga_hf_bit.data)
+		KEEP(*(.version_information))
 	} >osimage :text
 
 	. = ALIGN(4);
@@ -47,6 +44,7 @@ SECTIONS
 	.data : {
 		*(.data)
 		*(.data.*)
+		*(.ramfunc)
 		. = ALIGN(4);
 	} >ram AT>osimage :data