the following patch was just integrated into master:
commit 0c70e2ca93cf61777adc077971bbd6724d844f2a
Author: Aaron Durbin <adurbin(a)chromium.org>
Date: Wed Mar 5 14:54:13 2014 -0600
cbfstool: elfheaders: use proper parameters to calloc()
Though the result doesn't matter much, the callers of calloc()
should order the parameters correctly. i.e. the first paramter
is the number of elements in an array and the second is the
size of each element.
Change-Id: Ic7c2910d623d96f380feb4e5f6fa432376f49e9b
Signed-off-by: Aaron Durbin <adurbin(a)chromium.org>
See http://review.coreboot.org/5371 for details.
-gerrit
the following patch was just integrated into master:
commit 9d1e92f75ab8df0fee2546812e8afa584e4e9c2c
Author: Aaron Durbin <adurbin(a)chromium.org>
Date: Wed Mar 5 12:12:09 2014 -0600
cbfstool: add eflparsing.h
elfparsing.h serves as the header to working with the elf
parser. Additionally, only include what is needed by the other
files. Many had no reason to be including elf.h aside from fixing
compilation problems when including cbfs.h.
Change-Id: I9eb5f09f3122aa18beeca52d2e4dc2102d70fb9d
Signed-off-by: Aaron Durbin <adurbin(a)chromium.org>
See http://review.coreboot.org/5370 for details.
-gerrit
the following patch was just integrated into master:
commit 58d88f70dd4636b9343b949e345a7e0bc18e7aa5
Author: Aaron Durbin <adurbin(a)chromium.org>
Date: Wed Mar 5 12:01:36 2014 -0600
cbfstool: move iself() to eflheaders.c
The only user of iself() was in elfheaders.c. Move it there,
and make it local to the compilation unit.
Change-Id: I0d919ce372f6e2fce75885fb4fcba20d985979b3
Signed-off-by: Aaron Durbin <adurbin(a)chromium.org>
See http://review.coreboot.org/5369 for details.
-gerrit
the following patch was just integrated into master:
commit f0bdc15503b836a27ef1f4bcd6020540f928f034
Author: Aaron Durbin <adurbin(a)chromium.org>
Date: Tue Mar 4 22:08:05 2014 -0600
cbfstool: elfheaders: use common checks and buffer helpers
The elfheaders code was manipulating struct buffers. Use
the introduced buffer helper functions. Additionally fix
up offset and size checks for the program headers and section
headers by using common code paths.
Change-Id: I279c77f77aaa1860a0be43fb111df890dd1d84d5
Signed-off-by: Aaron Durbin <adurbin(a)chromium.org>
See http://review.coreboot.org/5368 for details.
-gerrit
Edward O'Callaghan (eocallaghan(a)alterapraxis.com) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/5383
-gerrit
commit 96bb8ce3b6d2599704ce72cbd63b2f792ccb844a
Author: Edward O'Callaghan <eocallaghan(a)alterapraxis.com>
Date: Thu Mar 13 03:33:35 2014 +1100
mainboard/jetway/nf81-t56n-lf: Fix HWM base addr.
The target board has a different base addr. for its hardware
monitor (fans, temp, etc) from the Fintek Super I/O datasheet.
Change-Id: Ifc025cb92d0fc4e8f813091d00a6c87deae05863
Signed-off-by: Edward O'Callaghan <eocallaghan(a)alterapraxis.com>
---
src/mainboard/jetway/nf81-t56n-lf/devicetree.cb | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/mainboard/jetway/nf81-t56n-lf/devicetree.cb b/src/mainboard/jetway/nf81-t56n-lf/devicetree.cb
index 99b2266..5f49b41 100644
--- a/src/mainboard/jetway/nf81-t56n-lf/devicetree.cb
+++ b/src/mainboard/jetway/nf81-t56n-lf/devicetree.cb
@@ -80,7 +80,7 @@ chip northbridge/amd/agesa/family14/root_complex
drq 0x74 = 3
end
device pnp 2e.04 on # Hardware Monitor
- io 0x60 = 0x295
+ io 0x60 = 0x225 # Fintek datasheet says 0x295.
irq 0x70 = 0
end
device pnp 2e.05 on # KBC
the following patch was just integrated into master:
commit 05d4277af1804269e518757a9f55e639a0cba8f8
Author: Alexandru Gagniuc <mr.nuke.me(a)gmail.com>
Date: Sun Feb 9 14:50:50 2014 -0600
Revert "boardstatus/towiki: Declare southbridge=northbridge=cpu on SOCs"
This reverts commit b845636ce67f6e7c96bf3fb3008738f596a5d5ce.
This commit changed the board status script to describe all boards in
terms of x86 terminology, such as CPU->southbridge->northbridge.
This terminology does not apply to a number of SoCs, in which the
buses are not connected via successive bridges, and as such it is
misleading and misguided to describe ideas of southbridge and
northbridge for these devices.
Change-Id: I98ba24ee00b816bf20d507c6d313ec2946acaedf
Signed-off-by: Alexandru Gagniuc <mr.nuke.me(a)gmail.com>
See http://review.coreboot.org/5177 for details.
-gerrit