Re: [coreboot] [PATCH 0/4] Libflashrom

2015-08-14 Thread Carl-Daniel Hailfinger
Hi Łukasz, yesterday I built this on a Ubuntu 14.04.3 (amd64) and tried to run it, but the tool segfaulted before even showing its own window. On the second try, it ran, but didn't handle a missing edid-decode well: sh: 1: edid-decode: not found Regards, Carl-Daniel On 14.08.2015 10:30, Łukasz D

Re: [coreboot] VT-d on Pixel 2015 (samus)

2015-08-14 Thread fowlslegs
On 2015-08-13 23:36, fowlsl...@riseup.net wrote: On 2015-07-26 07:58, ron minnich wrote: There are so many bits, so little time. I have utterly forgotten how vt-d gets enabled. Anyway, there's two bits and a lock bit. coreboot very deliberately does nothing with any of them -- this was a desi

Re: [coreboot] Lenovo T60 - Intel graphics with unsupported display panel - black screen

2015-08-14 Thread Łukasz Dmitrowski
Problem solved after using VGABIOS extracted from factory BIOS instead of one extracted from memory. Regards, Lukasz Dmitrowski On 14.08.2015 13:29, Łukasz Dmitrowski wrote: Hello, I am trying to run coreboot with seabios payload on Lenovo T60: Graphic: Intel Corporation Mobile 945GM/GMS, 94

[coreboot] Lenovo T60 - Intel graphics with unsupported display panel - black screen

2015-08-14 Thread Łukasz Dmitrowski
Hello, I am trying to run coreboot with seabios payload on Lenovo T60: Graphic: Intel Corporation Mobile 945GM/GMS, 943/940GML Express Integrated Graphics Controller [8086:27a2] (rev 03) Display panel: LTN141XA-L01 So, graphic is Intel, but display panel LTN141XA-L01 is not supported for nativ

[coreboot] [PATCH 4/4] Libflashrom: Output names of multiple found chips

2015-08-14 Thread Łukasz Dmitrowski
Added const char** fl_multiple_flash_probe(int *chip_count) function which returns string list of multiple chips found. Signed-off-by: Lukasz Dmitrowski --- libflashrom.c | 41 + libflashrom.h | 1 + 2 files changed, 42 insertions(+) diff --git a/libf

[coreboot] [PATCH 3/4] Libflashrom - Querying functions

2015-08-14 Thread Łukasz Dmitrowski
Added querying functions Signed-off-by: Lukasz Dmitrowski --- Makefile | 4 +- libflashrom.c | 139 +- libflashrom.h | 40 + 3 files changed, 180 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile ind

[coreboot] [PATCH 2/4] Libflashrom: Fix libflashrom building

2015-08-14 Thread Łukasz Dmitrowski
Anton Kochkov's fixes for libflashrom building Signed-off-by: Lukasz Dmitrowski --- Makefile | 2 +- flashrom.c | 8 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Makefile b/Makefile index d18de09..2c7fccd 100644 --- a/Makefile +++ b/Makefile @@ -726,7 +726,7 @@ FE

[coreboot] [PATCH 1/4] Libflashrom: Fix libflashrom compilation

2015-08-14 Thread Łukasz Dmitrowski
Anton Kochkov's fixes for libflashrom compilation. Signed-off-by: Lukasz Dmitrowski --- libflashrom.c | 10 +- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/libflashrom.c b/libflashrom.c index 507fee9..c96a2e9 100644 --- a/libflashrom.c +++ b/libflashrom.c @@ -187,12 +

[coreboot] [PATCH 0/4] Libflashrom

2015-08-14 Thread Łukasz Dmitrowski
Hello, I improved and extended libflashrom patch, so I am posting it for a second review. I based on work of Nico Huber and Anton Kochkov. As Nico Huber's patch has been already sent some time ago I will send only Anton Kochkov's building and compilation fixes (thanks for sharing it with me) an