the following patch was just integrated into master:
commit d600ff6ef170bf01ae074c0e71560923ff2d185e
Author: Kyösti Mälkki <kyosti.malkki(a)gmail.com>
Date: Fri Oct 28 16:15:47 2011 +0300
Clear improper use of CONFIG_CACHE_AS_RAM
Choice between printk/print_ is related to CAR, but really
depends whether we compiled with GCC or ROMCC.
Change-Id: I9fe831a215736462e8b3f4b96ffe231133ecf79b
Signed-off-by: Kyösti Mälkki <kyosti.malkki(a)gmail.com>
Build-Tested: build bot (Jenkins) at Fri Oct 28 15:31:29 2011, giving +1
Reviewed-By: Stefan Reinauer <stefan.reinauer(a)coreboot.org> at Fri Oct 28 22:13:48 2011, giving +2
See http://review.coreboot.org/347 for details.
-gerrit
the following patch was just integrated into master:
commit 9aaaa2f0eb979ae254a9fa8c5774af419f53989b
Author: Sven Schnelle <svens(a)stackframe.org>
Date: Fri Oct 28 21:26:16 2011 +0200
T60: remove redundant usbdebug_init call()
called from console code, no need to call it here.
Change-Id: I4c34f89c82cc2478db8de4e98584e69d7ab0ca82
Signed-off-by: Sven Schnelle <svens(a)stackframe.org>
Build-Tested: build bot (Jenkins) at Fri Oct 28 21:47:32 2011, giving +1
Reviewed-By: Stefan Reinauer <stefan.reinauer(a)coreboot.org> at Fri Oct 28 22:07:17 2011, giving +2
See http://review.coreboot.org/350 for details.
-gerrit
the following patch was just integrated into master:
commit b0553bd318581d3cce15f2247321f17a9038e590
Author: Stefan Reinauer <reinauer(a)chromium.org>
Date: Fri Oct 21 12:57:59 2011 -0700
copy e7501 component to e7505
Change-Id: Ie69a6b6a040a8b0e7693083b3a2d13c327a165b3
Signed-off-by: Stefan Reinauer <reinauer(a)google.com>
Reviewed-By: Patrick Georgi <patrick(a)georgi-clan.de> at Tue Oct 25 08:44:51 2011, giving +2
Build-Tested: build bot (Jenkins) at Fri Oct 21 22:23:58 2011, giving +1
See http://review.coreboot.org/310 for details.
-gerrit
the following patch was just integrated into master:
commit 13b6a887ba3b4c28b1695bdb1974dc6a6fa65cd8
Author: Patrick Georgi <patrick(a)georgi-clan.de>
Date: Tue Oct 25 14:32:21 2011 -0700
Prevent multiple inclusions of object files and rules
This removes 54 make warnings from the build
Change-Id: I94ac9875526febe2f95334c1c3971641c1d27f8f
Signed-off-by: Stefan Reinauer <reinauer(a)google.com>
Signed-off-by: Patrick Georgi <patrick(a)georgi-clan.de>
Build-Tested: build bot (Jenkins) at Fri Oct 28 21:11:06 2011, giving +1
Reviewed-By: Stefan Reinauer <stefan.reinauer(a)coreboot.org> at Fri Oct 28 21:48:41 2011, giving +2
See http://review.coreboot.org/338 for details.
-gerrit
Sven Schnelle (svens(a)stackframe.org) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/350
-gerrit
commit 9aaaa2f0eb979ae254a9fa8c5774af419f53989b
Author: Sven Schnelle <svens(a)stackframe.org>
Date: Fri Oct 28 21:26:16 2011 +0200
T60: remove redundant usbdebug_init call()
called from console code, no need to call it here.
Change-Id: I4c34f89c82cc2478db8de4e98584e69d7ab0ca82
Signed-off-by: Sven Schnelle <svens(a)stackframe.org>
---
src/mainboard/lenovo/t60/romstage.c | 5 -----
1 files changed, 0 insertions(+), 5 deletions(-)
diff --git a/src/mainboard/lenovo/t60/romstage.c b/src/mainboard/lenovo/t60/romstage.c
index 7ed7768..13faee2 100644
--- a/src/mainboard/lenovo/t60/romstage.c
+++ b/src/mainboard/lenovo/t60/romstage.c
@@ -240,11 +240,6 @@ void main(unsigned long bist)
early_superio_config();
}
-#if CONFIG_USBDEBUG
- i82801gx_enable_usbdebug(1);
- early_usbdebug_init();
-#endif
-
/* Setup the console */
console_init();
Patrick Georgi (patrick(a)georgi-clan.de) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/338
-gerrit
commit 13b6a887ba3b4c28b1695bdb1974dc6a6fa65cd8
Author: Patrick Georgi <patrick(a)georgi-clan.de>
Date: Tue Oct 25 14:32:21 2011 -0700
Prevent multiple inclusions of object files and rules
This removes 54 make warnings from the build
Change-Id: I94ac9875526febe2f95334c1c3971641c1d27f8f
Signed-off-by: Stefan Reinauer <reinauer(a)google.com>
Signed-off-by: Patrick Georgi <patrick(a)georgi-clan.de>
---
Makefile | 3 +++
1 files changed, 3 insertions(+), 0 deletions(-)
diff --git a/Makefile b/Makefile
index c543897..f2277d1 100644
--- a/Makefile
+++ b/Makefile
@@ -204,6 +204,9 @@ evaluate_subdirs= \
subdirs:=$(TOPLEVEL)
$(eval $(call evaluate_subdirs))
+# Eliminate duplicate mentions of source files in a class
+$(foreach class,$(classes),$(eval $(class)-srcs:=$(sort $($(class)-srcs))))
+
src-to-obj=$(addsuffix .$(1).o, $(basename $(patsubst src/%, $(obj)/%, $($(1)-srcs))))
$(foreach class,$(classes),$(eval $(class)-objs:=$(call src-to-obj,$(class))))