Explorar el Código

microblaze: Add sbss, scommon and COMMON symbols for clearing

Signed-off-by: Michal Simek <monstr@monstr.eu>
Michal Simek hace 15 años
padre
commit
aedb468309
Se han modificado 1 ficheros con 3 adiciones y 0 borrados
  1. 3 0
      board/xilinx/microblaze-generic/u-boot.lds

+ 3 - 0
board/xilinx/microblaze-generic/u-boot.lds

@@ -60,7 +60,10 @@ SECTIONS
 	.bss ALIGN(0x4):
 	{
 		__bss_start = .;
+		*(.sbss)
+		*(.scommon)
 		*(.bss)
+		*(COMMON)
 		. = ALIGN(4);
 		__bss_end = .;
 	}