From 08f2ab6aac9d4e5d0f992d25b9bc8d77620f03d9 Mon Sep 17 00:00:00 2001 From: Patrick Georgi Date: Fri, 27 Mar 2015 14:03:22 +0100 Subject: [PATCH] build system: rename mips/bootblock.inc to mips/bootblock.S This is inspired by the commit listed below, but rewritten to match upstream, and split in smaller pieces to keep intent clear. Change-Id: I192fa50989b586fd8e967d4c22db56ac9de7a30e Signed-off-by: Patrick Georgi Based-On-Change-Id: I50af7dacf616e0f8ff4c43f4acc679089ad7022b Based-On-Signed-off-by: Julius Werner Based-On-Reviewed-on: https://chromium-review.googlesource.com/219170 Reviewed-on: http://review.coreboot.org/9108 Tested-by: build bot (Jenkins) Reviewed-by: Aaron Durbin --- src/arch/mips/Makefile.inc | 2 +- src/arch/mips/{bootblock.inc => bootblock.S} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename src/arch/mips/{bootblock.inc => bootblock.S} (100%) diff --git a/src/arch/mips/Makefile.inc b/src/arch/mips/Makefile.inc index 956f2d511f..42c3007754 100644 --- a/src/arch/mips/Makefile.inc +++ b/src/arch/mips/Makefile.inc @@ -44,7 +44,7 @@ bootblock-y += ../../lib/memset.c bootblock_lds = $(src)/arch/mips/bootblock.ld -bootblock_inc += $(src)/arch/mips/bootblock.inc +bootblock_inc += $(src)/arch/mips/bootblock.S bootblock_inc += $(objgenerated)/bootblock.inc # Much of the assembly code is generated by the compiler, and may contain diff --git a/src/arch/mips/bootblock.inc b/src/arch/mips/bootblock.S similarity index 100% rename from src/arch/mips/bootblock.inc rename to src/arch/mips/bootblock.S