the following patch was just integrated into master:
commit 8ff3d68e93c74d82dc289036347c3da74c395c88
Author: Kyösti Mälkki <kyosti.malkki(a)gmail.com>
Date: Mon Aug 12 16:11:34 2013 +0300
usbdebug: Add logging level to debugging
Increase existing level from DEBUG to INFO.
Change-Id: Ic5934aec449f921af96dd3a6524f7275f8de1304
Signed-off-by: Kyösti Mälkki <kyosti.malkki(a)gmail.com>
Reviewed-on: http://review.coreboot.org/3859
Tested-by: build bot (Jenkins)
Reviewed-by: Stefan Reinauer <stefan.reinauer(a)coreboot.org>
See http://review.coreboot.org/3859 for details.
-gerrit
the following patch was just integrated into master:
commit eabfd3a7c162d5eb96f65085ad8b05238e53a437
Author: Andrew Wu <arw(a)dmp.com.tw>
Date: Mon Aug 19 11:43:36 2013 +0800
Don't include LZMA in romstage if ramstage is not compressed.
If ramstage is not compressed, the CBFS module in romstage doesn't
need to support LZMA. Removing the LZMA module in this case can save
about 3000 bytes in romstage.
Change-Id: Id6f7869e32979080e2985c07029edcb39eee9106
Signed-off-by: Andrew Wu <arw(a)dmp.com.tw>
Reviewed-on: http://review.coreboot.org/3878
Reviewed-by: Paul Menzel <paulepanter(a)users.sourceforge.net>
Tested-by: build bot (Jenkins)
Reviewed-by: Patrick Georgi <patrick(a)georgi-clan.de>
See http://review.coreboot.org/3878 for details.
-gerrit
Paul Menzel (paulepanter(a)users.sourceforge.net) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/3878
-gerrit
commit 9360f8ccc54ea65a43ed91485eaf411586b3344f
Author: Andrew Wu <arw(a)dmp.com.tw>
Date: Mon Aug 19 11:43:36 2013 +0800
Don't include LZMA in romstage if ramstage is not compressed.
If ramstage is not compressed, the CBFS module in romstage doesn't
need to support LZMA. Removing the LZMA module in this case can save
about 3000 bytes in romstage.
Change-Id: Id6f7869e32979080e2985c07029edcb39eee9106
Signed-off-by: Andrew Wu <arw(a)dmp.com.tw>
---
src/lib/Makefile.inc | 2 +-
src/lib/cbfs.c | 2 ++
2 files changed, 3 insertions(+), 1 deletion(-)
diff --git a/src/lib/Makefile.inc b/src/lib/Makefile.inc
index c421038..90efe6c 100644
--- a/src/lib/Makefile.inc
+++ b/src/lib/Makefile.inc
@@ -42,7 +42,7 @@ endif
romstage-y += memcmp.c
rmodules-y += memcmp.c
romstage-y += cbfs.c
-romstage-y += lzma.c
+romstage-$(CONFIG_COMPRESS_RAMSTAGE) += lzma.c
#romstage-y += lzmadecode.c
romstage-$(CONFIG_CACHE_AS_RAM) += ramtest.c
romstage-$(CONFIG_CONSOLE_SERIAL8250) += uart8250.c
diff --git a/src/lib/cbfs.c b/src/lib/cbfs.c
index f48d887..4ccc9e6 100644
--- a/src/lib/cbfs.c
+++ b/src/lib/cbfs.c
@@ -29,6 +29,8 @@
# define CBFS_MINI_BUILD
#elif defined(__BOOT_BLOCK__)
/* No LZMA in boot block. */
+#elif defined(__PRE_RAM__) && !CONFIG_COMPRESS_RAMSTAGE
+ /* No LZMA in romstage if ramstage is not compressed. */
#else
# define CBFS_CORE_WITH_LZMA
# include <lib.h>
Andrew Wu (arw(a)dmp.com.tw) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/3878
-gerrit
commit 52eba24aeaf20066b91ac1fd2351b461a35d0ff4
Author: Andrew Wu <arw(a)dmp.com.tw>
Date: Mon Aug 19 11:43:36 2013 +0800
Don't include LZMA in romstage if ramstage is not compressed.
If ramstage is not compressed, CBFS module in romstage doesn't need
to support LZMA. Removing LZMA module in this case can save about
3000 bytes in romstage.
Change-Id: Id6f7869e32979080e2985c07029edcb39eee9106
Signed-off-by: Andrew Wu <arw(a)dmp.com.tw>
---
src/lib/Makefile.inc | 2 +-
src/lib/cbfs.c | 2 ++
2 files changed, 3 insertions(+), 1 deletion(-)
diff --git a/src/lib/Makefile.inc b/src/lib/Makefile.inc
index c421038..90efe6c 100644
--- a/src/lib/Makefile.inc
+++ b/src/lib/Makefile.inc
@@ -42,7 +42,7 @@ endif
romstage-y += memcmp.c
rmodules-y += memcmp.c
romstage-y += cbfs.c
-romstage-y += lzma.c
+romstage-$(CONFIG_COMPRESS_RAMSTAGE) += lzma.c
#romstage-y += lzmadecode.c
romstage-$(CONFIG_CACHE_AS_RAM) += ramtest.c
romstage-$(CONFIG_CONSOLE_SERIAL8250) += uart8250.c
diff --git a/src/lib/cbfs.c b/src/lib/cbfs.c
index f48d887..4ccc9e6 100644
--- a/src/lib/cbfs.c
+++ b/src/lib/cbfs.c
@@ -29,6 +29,8 @@
# define CBFS_MINI_BUILD
#elif defined(__BOOT_BLOCK__)
/* No LZMA in boot block. */
+#elif defined(__PRE_RAM__) && !CONFIG_COMPRESS_RAMSTAGE
+ /* No LZMA in romstage if ramstage is not compressed. */
#else
# define CBFS_CORE_WITH_LZMA
# include <lib.h>
Patrick Georgi (patrick(a)georgi-clan.de) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/3876
-gerrit
commit 6b820dce646f3038b08c426ca0f82f22d9807450
Author: Patrick Georgi <patrick(a)georgi-clan.de>
Date: Fri Aug 16 21:33:42 2013 +0200
kontron/ktqm77: Drop MRC_FILE definition
The northbridge defines it already and to the same value.
Change-Id: Ia5d856258fac52ea0b249142f70a89123ca04f82
Signed-off-by: Patrick Georgi <patrick(a)georgi-clan.de>
---
src/mainboard/kontron/ktqm77/Kconfig | 4 ----
1 file changed, 4 deletions(-)
diff --git a/src/mainboard/kontron/ktqm77/Kconfig b/src/mainboard/kontron/ktqm77/Kconfig
index 58550e8..e9d1ce7 100644
--- a/src/mainboard/kontron/ktqm77/Kconfig
+++ b/src/mainboard/kontron/ktqm77/Kconfig
@@ -18,10 +18,6 @@ config BOARD_SPECIFIC_OPTIONS # dummy
select ENABLE_VMX
select HAVE_MRC
-config MRC_FILE
- string
- default "3rdparty/northbridge/intel/sandybridge/systemagent-r6.bin"
-
config MAINBOARD_DIR
string
default kontron/ktqm77