the following patch was just integrated into master:
commit 01bf599ea86abb360b0a57b892484dbb9c3ba387
Author: Kyösti Mälkki <kyosti.malkki(a)gmail.com>
Date: Mon Jan 16 19:50:28 2017 +0200
pcengines/apu2: Add serial number in SMBIOS
Change-Id: Ic8149b1dd19d70935e00881cffa7ead0960d1c78
Signed-off-by: Kyösti Mälkki <kyosti.malkki(a)gmail.com>
Reviewed-on: https://review.coreboot.org/18154
Tested-by: build bot (Jenkins)
Reviewed-by: Piotr Król <piotr.krol(a)3mdeb.com>
See https://review.coreboot.org/18154 for details.
-gerrit
the following patch was just integrated into master:
commit 104074994d741646016e431a30b8966b3fdfe439
Author: Kyösti Mälkki <kyosti.malkki(a)gmail.com>
Date: Mon Jan 16 19:59:52 2017 +0200
pcengines/apu2: Add SKU in SMBIOS
Installed memory only, PCB revision cannot be detected.
Change-Id: Ib6224018db3de4a7ddd9e6f7f30edc438c3f0702
Signed-off-by: Kyösti Mälkki <kyosti.malkki(a)gmail.com>
Reviewed-on: https://review.coreboot.org/18153
Tested-by: build bot (Jenkins)
Reviewed-by: Martin Roth <martinroth(a)google.com>
See https://review.coreboot.org/18153 for details.
-gerrit
the following patch was just integrated into master:
commit 0a06205ec65ea626ab94fa67680476266890044b
Author: Kyösti Mälkki <kyosti.malkki(a)gmail.com>
Date: Sat Jan 14 09:44:40 2017 +0200
pcengines/apu2: Change SMBIOS part number
This string should not include manufacturer name.
Change-Id: I63793b16129334ea4930b8b0264a39d7f9849bba
Signed-off-by: Kyösti Mälkki <kyosti.malkki(a)gmail.com>
Reviewed-on: https://review.coreboot.org/18151
Tested-by: build bot (Jenkins)
Reviewed-by: Martin Roth <martinroth(a)google.com>
See https://review.coreboot.org/18151 for details.
-gerrit
the following patch was just integrated into master:
commit 7747757772f725ed091e5bfe706852a3f868bc5e
Author: Kyösti Mälkki <kyosti.malkki(a)gmail.com>
Date: Sat Jan 14 13:01:16 2017 +0200
pcengines/apu2: Remove DDI configuration
Assembled SoC part does not have integrated graphics.
Change-Id: I5d157063cd850d343df73d448e6904c188a09730
Signed-off-by: Kyösti Mälkki <kyosti.malkki(a)gmail.com>
Reviewed-on: https://review.coreboot.org/18150
Tested-by: build bot (Jenkins)
Reviewed-by: Martin Roth <martinroth(a)google.com>
See https://review.coreboot.org/18150 for details.
-gerrit
Nico Huber (nico.h(a)gmx.de) just uploaded a new patch set to gerrit, which you can find at https://review.coreboot.org/17636
-gerrit
commit be51e8ab1e7bd89a1eab9d9b3638fe303ba3c2e4
Author: Paul Menzel <pmenzel(a)molgen.mpg.de>
Date: Tue Nov 29 10:30:44 2016 +0100
Makefile.inc: Explicitly set GNU11 as C language standard
Different compiler versions use a different C language standard by
default.
GCC 4.9 uses GNU89 by default [1], while GCC 5.x uses GNU11 [2].
The discussion on the mailing list in thread *[RFC] Setting C99 by
default* [3] resulted in the preference of C11, which results in build
errors.
So explicitly set it to GNU11, which is also what the current coreboot
toolchain with GCC 5.3 is using.
[1] https://gcc.gnu.org/onlinedocs/gcc-4.9.4/gcc/C-Dialect-Options.html
[2] https://gcc.gnu.org/onlinedocs/gcc-5.4.0/gcc/Standards.html
[3] https://www.coreboot.org/pipermail/coreboot/2016-November/082541.html
Change-Id: If1569618f8044925ff72dcf3543480b34d4f90d6
Signed-off-by: Paul Menzel <pmenzel(a)molgen.mpg.de>
---
Makefile.inc | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Makefile.inc b/Makefile.inc
index c5ce30f..0c6b351 100644
--- a/Makefile.inc
+++ b/Makefile.inc
@@ -353,7 +353,7 @@ CPPFLAGS_common += -I$(VBOOT_SOURCE)/firmware/include
CPPFLAGS_common += -include $(src)/include/kconfig.h
CPPFLAGS_common += -I3rdparty
-CFLAGS_common += -pipe -g -nostdinc
+CFLAGS_common += -pipe -g -nostdinc -std=gnu11
CFLAGS_common += -nostdlib -Wall -Wundef -Wstrict-prototypes -Wmissing-prototypes
CFLAGS_common += -Wwrite-strings -Wredundant-decls -Wno-trigraphs
CFLAGS_common += -Wstrict-aliasing -Wshadow -Wdate-time