[coreboot-gerrit] New patch to review for coreboot: program.ld: terminate ALIGN statement

Patrick Georgi (pgeorgi@google.com) gerrit at coreboot.org
Sun Sep 27 11:45:47 CET 2015


Patrick Georgi (pgeorgi at google.com) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/11729

-gerrit

commit d3760c573f38da7d01b6b5545197465c36d28f68
Author: Patrick Georgi <patrick at georgi-clan.de>
Date:   Sun Sep 27 13:45:17 2015 +0200

    program.ld: terminate ALIGN statement
    
    This fixes building with CONFIG_COVERAGE=y
    
    Change-Id: I5128ae0ef0d4f71e3ede7bcb3ee7ed7e265d1bb7
    Signed-off-by: Patrick Georgi <patrick at georgi-clan.de>
---
 src/lib/program.ld | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/lib/program.ld b/src/lib/program.ld
index ab36239..4c24231 100644
--- a/src/lib/program.ld
+++ b/src/lib/program.ld
@@ -69,7 +69,7 @@
 
 #if ENV_RAMSTAGE && IS_ENABLED(CONFIG_COVERAGE)
 .ctors . : {
-	. = ALIGN(0x100)
+	. = ALIGN(0x100);
 	__CTOR_LIST__ = .;
 	KEEP(*(.ctors));
 	LONG(0);



More information about the coreboot-gerrit mailing list