Patrick Georgi (pgeorgi(a)google.com) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/11047
-gerrit
commit 438b506c5dd39de56682bc6900097cbefe923a08
Author: Patrick Georgi <pgeorgi(a)chromium.org>
Date: Thu Jul 23 21:08:30 2015 +0200
README: improve description of compiler requirements
People run into "building bootblock without the required toolchain" too often.
Update documentation so they don't try to use random compilers to build
coreboot.
Change-Id: I9715b52a4bac9b886cc5627add074c04e06a0828
Signed-off-by: Patrick Georgi <pgeorgi(a)chromium.org>
---
README | 13 ++++++++++---
1 file changed, 10 insertions(+), 3 deletions(-)
diff --git a/README b/README
index 2c25bef..357ec02 100644
--- a/README
+++ b/README
@@ -41,15 +41,22 @@ For details please consult:
Build Requirements
------------------
- * gcc / g++
* make
+ * gcc / g++
+ Because Linux distribution compilers tend to use lots of patches. coreboot
+ does lots of "unusual" things in its build system, some of which break due
+ to those patches, sometimes by gcc aborting, sometimes - and that's worse -
+ by generating broken object code.
+ Two options: use our toolchain (eg. make crosstools-i386) or enable the
+ ANY_TOOLCHAIN Kconfig option if you're feeling lucky (no support in this
+ case).
+ * iasl (for targets with ACPI support)
Optional:
* doxygen (for generating/viewing documentation)
- * iasl (for targets with ACPI support)
* gdb (for better debugging facilities on some targets)
- * ncurses (for 'make menuconfig')
+ * ncurses (for 'make menuconfig' and 'make nconfig')
* flex and bison (for regenerating parsers)
Patrick Georgi (pgeorgi(a)google.com) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/11042
-gerrit
commit 1ff014c6a9e150a5bb60c7eb288611bcd630f4c2
Author: huang lin <hl(a)rock-chips.com>
Date: Wed Jul 22 10:49:11 2015 +0800
rockchip: rk3288: extend jerry backlight vcc_led delay time
some jerry panel need more delay time between the vcc_led and bl_en,
so we extend the delay time.
BUG=chrome-os-partner:42997
TEST=Boot from jerry, and do not flicker again
BRANCH=none
Change-Id: Ifcf84578038eb5c2e5a0dfae936ee63cef671968
Signed-off-by: Patrick Georgi <pgeorgi(a)chromium.org>
Original-Commit-Id: 0b00b6bd108f0aae461085d00819eca08ec892b3
Original-Change-Id: I74999601b41ccac22493cc9cd0bf52cd4dbb8c26
Original-Signed-off-by: huang lin <hl(a)rock-chips.com>
Original-Reviewed-on: https://chromium-review.googlesource.com/287373
Original-Reviewed-by: Julius Werner <jwerner(a)chromium.org>
---
src/mainboard/google/veyron_jerry/mainboard.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/mainboard/google/veyron_jerry/mainboard.c b/src/mainboard/google/veyron_jerry/mainboard.c
index 7412243..2a945c4 100644
--- a/src/mainboard/google/veyron_jerry/mainboard.c
+++ b/src/mainboard/google/veyron_jerry/mainboard.c
@@ -158,7 +158,7 @@ void mainboard_power_on_backlight(void)
break;
default:
gpio_output(GPIO(2, B, 4), 1); /* BL_PWR_EN */
- mdelay(20);
+ mdelay(120);
gpio_output(GPIO(7, A, 0), 1); /* LCD_BL */
mdelay(10);
gpio_output(GPIO_BACKLIGHT, 1); /* BL_EN */
the following patch was just integrated into master:
commit acba73aefcbd7dacb547b61570a1836b745be2e5
Author: Jonathan A. Kollasch <jakllsch(a)kollasch.net>
Date: Mon Jul 20 09:51:34 2015 -0500
nvidia southbridges: don't touch 0x78 in LPC bridge with Fam10h
Based on the observations that AMD Fam10h with both Nvidia CK804 (Asus
KFSN4-DRE) and MCP55 (Sun Ultra 40 M2) need to avoid adjusting the LPC
bridge register 0x78 (particularly the 0x7b byte) to get to ramstage:
Assume that there's something about this register that adjusting it the
way we do for K8 is something that can/should be universally avoided on
all Fam10h systems with these chipsets.
Change-Id: I1eceeb20ecaefef4c61c11e19d1f5a59f91a0a2f
Signed-off-by: Jonathan A. Kollasch <jakllsch(a)kollasch.net>
Reviewed-on: http://review.coreboot.org/10984
Reviewed-by: Paul Menzel <paulepanter(a)users.sourceforge.net>
Tested-by: build bot (Jenkins)
Reviewed-by: Timothy Pearson <tpearson(a)raptorengineeringinc.com>
See http://review.coreboot.org/10984 for details.
-gerrit