Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 3 Dec 2014 14:04:58 +0000 (UTC)
From:      Ed Maste <emaste@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r275457 - head/sys/boot/mips/beri/loader
Message-ID:  <201412031404.sB3E4wtj013483@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: emaste
Date: Wed Dec  3 14:04:57 2014
New Revision: 275457
URL: https://svnweb.freebsd.org/changeset/base/275457

Log:
  Increase BERI loader section alignment to 16
  
  The .text, .bss, and .data sections claimed 16-byte alignment, but were
  only aligned to 8 by the linker script.
  
  Discovered with strip(1) from elftoolchain, which performs validation
  absent from the binutils strip(1).
  
  Sponsored by:	DARPA, AFRL

Modified:
  head/sys/boot/mips/beri/loader/loader.ldscript

Modified: head/sys/boot/mips/beri/loader/loader.ldscript
==============================================================================
--- head/sys/boot/mips/beri/loader/loader.ldscript	Wed Dec  3 10:42:10 2014	(r275456)
+++ head/sys/boot/mips/beri/loader/loader.ldscript	Wed Dec  3 14:04:57 2014	(r275457)
@@ -57,7 +57,7 @@ SECTIONS
 	. = __loader_base_vaddr__;
 	. += SIZEOF_HEADERS;
 
-	.text ALIGN(0x8): {
+	.text ALIGN(0x10): {
 		start.o(.text*)
 		*(EXCLUDE_FILE (start.o) .text*)
 		*(.rodata*)
@@ -66,8 +66,8 @@ SECTIONS
 		KEEP(*(set_Xcommand_set))
 		__stop_set_Xcommand_set = .;
 	}
-	.data ALIGN(0x8): { *(.data*)}
-	.bss ALIGN(0x8): { *(.bss*) }
+	.data ALIGN(0x10): { *(.data*)}
+	.bss ALIGN(0x10): { *(.bss*) }
 
 	__heap = ALIGN(0x8);	/* 64-bit aligned heap pointer */
 	__data_end = .;



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201412031404.sB3E4wtj013483>