[coreboot-gerrit] New patch to review for coreboot: 8859431 armv7: provide compiler options for rmodules

Marc Jones (marc.jones@se-eng.com) gerrit at coreboot.org
Wed Dec 10 03:08:27 CET 2014


Marc Jones (marc.jones at se-eng.com) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/7744

-gerrit

commit 8859431349d96323d060d20aadcfbdd1bdd278f9
Author: Aaron Durbin <adurbin at chromium.org>
Date:   Thu Mar 20 15:02:17 2014 -0500

    armv7: provide compiler options for rmodules
    
    In order to build rmodules for armv7 boards, the default
    compiler options need to be set so the assembler sources
    can correclty compile. For now assume rmodules for arm
    devices use the ramstage compiler options.
    
    BUG=chrome-os-partner:27094
    BRANCH=None
    TEST=Built vboot as rmodule for nyan.
    
    Original-Change-Id: I8d12a2a57944b187cbdff2f22176de5b4de87a54
    Original-Signed-off-by: Aaron Durbin <adurbin at chromium.org>
    Original-Reviewed-on: https://chromium-review.googlesource.com/190926
    (cherry picked from commit cd091ae8ced30e6e2543f36bdb5c14518e7879c3)
    Signed-off-by: Marc Jones <marc.jones at se-eng.com>
    
    Change-Id: I24706f7d72a53f71abd2770f0d12de8c6ed31f63
---
 src/arch/arm/armv7/Makefile.inc | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/src/arch/arm/armv7/Makefile.inc b/src/arch/arm/armv7/Makefile.inc
index 01069c4..62d5434 100644
--- a/src/arch/arm/armv7/Makefile.inc
+++ b/src/arch/arm/armv7/Makefile.inc
@@ -78,4 +78,7 @@ ramstage-y += mmu.c
 ramstage-c-ccopts += $(armv7_flags)
 ramstage-S-ccopts += $(armv7_asm_flags)
 
+# All rmodule code is armv7 if ramstage is armv7.
+rmodules-c-ccopts += $(armv7_flags)
+rmodules-S-ccopts += $(armv7_asm_flags)
 endif # CONFIG_ARCH_RAMSTAGE_ARMV7



More information about the coreboot-gerrit mailing list