Stefan Reinauer (stefan.reinauer@coreboot.org) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/338
-gerrit
commit d1507987b60529ea42105ed295f872c06a83ecf7 Author: Stefan Reinauer reinauer@chromium.org Date: Tue Oct 25 14:32:21 2011 -0700
Prevent multiple inclusions of cpu/x86/name
This removes 54 make warnings from the build
Change-Id: I94ac9875526febe2f95334c1c3971641c1d27f8f Signed-off-by: Stefan Reinauer reinauer@google.com --- src/cpu/x86/name/Makefile.inc | 4 ++++ 1 files changed, 4 insertions(+), 0 deletions(-)
diff --git a/src/cpu/x86/name/Makefile.inc b/src/cpu/x86/name/Makefile.inc index 1528ed7..d65404b 100644 --- a/src/cpu/x86/name/Makefile.inc +++ b/src/cpu/x86/name/Makefile.inc @@ -17,5 +17,9 @@ ## Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA ##
+ifneq ($(CPU_X86_NAME_INCLUDED),y) +CPU_X86_NAME_INCLUDED:=y + ramstage-y += name.c
+endif