[coreboot-gerrit] Patch set updated for coreboot: 3f9bbe4 cpu/allwinner/a10: Clean up include order in Makefile.inc

Alexandru Gagniuc (mr.nuke.me@gmail.com) gerrit at coreboot.org
Fri Jan 10 05:17:25 CET 2014


Alexandru Gagniuc (mr.nuke.me at gmail.com) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/4639

-gerrit

commit 3f9bbe497bf151ec85baad85f6fad6c4f091640e
Author: Alexandru Gagniuc <mr.nuke.me at gmail.com>
Date:   Thu Jan 9 20:42:13 2014 -0600

    cpu/allwinner/a10: Clean up include order in Makefile.inc
    
    Alphabetize the sources for each stage (bootblock, rom, ram), and
    include twi.c in both romstage and ramstage.
    
    Change-Id: I5526f5a66f6600560005731a3ee536eb858f4ff0
    Signed-off-by: Alexandru Gagniuc <mr.nuke.me at gmail.com>
---
 src/cpu/allwinner/a10/Makefile.inc | 20 ++++++++++++--------
 1 file changed, 12 insertions(+), 8 deletions(-)

diff --git a/src/cpu/allwinner/a10/Makefile.inc b/src/cpu/allwinner/a10/Makefile.inc
index 3e7b535..240986e 100644
--- a/src/cpu/allwinner/a10/Makefile.inc
+++ b/src/cpu/allwinner/a10/Makefile.inc
@@ -1,23 +1,27 @@
+bootblock-y	+= bootblock_media.c
 bootblock-y	+= clock.c
-bootblock-y	+= raminit.c
 bootblock-y	+= gpio.c
 bootblock-y	+= pinmux.c
+bootblock-y	+= raminit.c
 bootblock-y	+= timer.c
-bootblock-y	+= bootblock_media.c
 bootblock-$(CONFIG_BOOTBLOCK_CONSOLE) += uart.c
 bootblock-$(CONFIG_BOOTBLOCK_CONSOLE) += uart_console.c
 
+romstage-y	+= clock.c
+romstage-y	+= bootblock_media.c
+romstage-y	+= pinmux.c
+romstage-y	+= timer.c
+romstage-y	+= twi.c
 romstage-y	+= uart.c
 romstage-y	+= uart_console.c
-romstage-y	+= bootblock_media.c
 
-ramstage-y	+= uart.c
-ramstage-y	+= uart_console.c
+ramstage-y	+= bootblock_media.c
+ramstage-y	+= clock.c
+ramstage-y	+= monotonic_timer.c
 ramstage-y	+= timer.c
 ramstage-y	+= twi.c
-ramstage-y	+= monotonic_timer.c
-ramstage-y	+= bootblock_media.c
-
+ramstage-y	+= uart.c
+ramstage-y	+= uart_console.c
 
 real-target: $(obj)/BOOT0
 



More information about the coreboot-gerrit mailing list