the following patch was just integrated into master:
commit f34ea5f6609c23db33b6a6b7c31c67c6214efae4
Author: Aaron Durbin <adurbin(a)chromium.org>
Date: Wed Apr 1 09:27:44 2015 -0500
documentation: define downstream data consumption rules
It's important to document what data is available for
downstream consumption by the OS and payloads. Provide
details/directions on what is available.
Change-Id: Icafb6e9f59462ad19cf6a641046c6efc36f138f0
Signed-off-by: Aaron Durbin <adurbin(a)chromium.org>
Reviewed-on: http://review.coreboot.org/9194
Tested-by: build bot (Jenkins)
Reviewed-by: Marc Jones <marc.jones(a)se-eng.com>
See http://review.coreboot.org/9194 for details.
-gerrit
the following patch was just integrated into master:
commit f78a09b60c4ce24e2455615722dd6ed8e2ba85e2
Author: Stefan Reinauer <stefan.reinauer(a)coreboot.org>
Date: Fri Apr 3 20:01:38 2015 +0200
kconfig: Add wildcard support for "source"
Kconfig's include directive "source" does not support
wildcards (e.g. source src/mainboard/*/Kconfig) which
makes automatic inclusion of all boards a tedious task
and prevents us from implementing "drop in" boards.
In our Makefile.inc files we already include mainboard
directories per wildcard, so let's add the infrastructure
to do the same with Kconfig.
Change-Id: I1988ff6ce3e167e86bb5cb65fc04a13748599dad
Signed-off-by: Stefan Reinauer <stefan.reinauer(a)coreboot.org>
Reviewed-on: http://review.coreboot.org/9294
Tested-by: build bot (Jenkins)
Reviewed-by: Patrick Georgi <pgeorgi(a)google.com>
See http://review.coreboot.org/9294 for details.
-gerrit
the following patch was just integrated into master:
commit 1f5349e61d8aea950d6a197d11b0aa730aa80ee6
Author: Stefan Tauner <stefan.tauner(a)gmx.at>
Date: Sun Apr 5 23:13:53 2015 +0200
nvramtool: fix getopt handling with unsigned char
make failed while executing "OPTION option_table.h" by printing
nvramtool's usage message when crosscompiling coreboot on the BBB.
The reason is the usage of char for the return value of getopt instead
of int and comparing it to -1 later... although char might be unsigned
as it is usually on ARM.
Change-Id: Ib20fd5ef174d484bbb35f80150b8f898d95d0fe4
Signed-off-by: Stefan Tauner <stefan.tauner(a)gmx.at>
Reviewed-on: http://review.coreboot.org/9307
Tested-by: build bot (Jenkins)
Reviewed-by: Stefan Reinauer <stefan.reinauer(a)coreboot.org>
See http://review.coreboot.org/9307 for details.
-gerrit
the following patch was just integrated into master:
commit 362f048979e64d57a4bed330040e2eb421cd4fae
Author: Stefan Reinauer <stefan.reinauer(a)coreboot.org>
Date: Mon Apr 6 01:34:47 2015 +0200
kconfig: Replace mentions of "list_struct" to "list_head"
There's no such thing as "list_struct".
Signed-off-by: Andrey Utkin <andrey.krieger.utkin(a)gmail.com>
Acked-by: Steven Rostedt <rostedt(a)goodmis.org>
Acked-by: Mauro Carvalho Chehab <mchehab(a)osg.samsung.com>
Acked-by: Paul E. McKenney <paulmck(a)linux.vnet.ibm.com>
Acked-by: Alex Deucher <alexander.deucher(a)amd.com>
Signed-off-by: Jiri Kosina <jkosina(a)suse.cz>
Change-Id: Ida39beb7b81801b277b623ff5a40291d643706ee
Signed-off-by: Stefan Reinauer <stefan.reinauer(a)coreboot.org>
Reviewed-on: http://review.coreboot.org/9314
Tested-by: build bot (Jenkins)
Reviewed-by: Paul Menzel <paulepanter(a)users.sourceforge.net>
Reviewed-by: Marc Jones <marc.jones(a)se-eng.com>
See http://review.coreboot.org/9314 for details.
-gerrit
the following patch was just integrated into master:
commit 5910aa88a775bf37ebe445fa89c34389add000b6
Author: Stefan Reinauer <stefan.reinauer(a)coreboot.org>
Date: Mon Apr 6 01:30:44 2015 +0200
kconfig: calloc/xcalloc: Fix argument order
The calloc() and xcalloc() functions takes @nmemb first and then @size. Fix all w/
pattern "calloc\s*(\s*sizeof".
Signed-off-by: Arjun Sreedharan <arjun024(a)gmail.com>
Cc: "Yann E. MORIN" <yann.morin.1998(a)free.fr>
Cc: Ingo Molnar <mingo(a)redhat.com>
Cc: Paul Mackerras <paulus(a)samba.org>
Cc: Peter Zijlstra <a.p.zijlstra(a)chello.nl>
Link: http://lkml.kernel.org/r/1417866043-1877-1-git-send-email-arjun024@gmail.com
Signed-off-by: Arnaldo Carvalho de Melo <acme(a)redhat.com>
Change-Id: I8b51cc59b3f3631b93b7e215fec5bf140cc2cbf9
Signed-off-by: Stefan Reinauer <stefan.reinauer(a)coreboot.org>
Reviewed-on: http://review.coreboot.org/9313
Tested-by: build bot (Jenkins)
Reviewed-by: Paul Menzel <paulepanter(a)users.sourceforge.net>
Reviewed-by: Marc Jones <marc.jones(a)se-eng.com>
See http://review.coreboot.org/9313 for details.
-gerrit
the following patch was just integrated into master:
commit 1824ce3c402b0f09e852c464cd8d83f019ba85ec
Author: Stefan Reinauer <stefan.reinauer(a)coreboot.org>
Date: Mon Apr 6 01:27:55 2015 +0200
kconfig: Fix warning "‘jump’ may be used uninitialized"
Warning:
In file included from scripts/kconfig/zconf.tab.c:2537:0:
scripts/kconfig/menu.c: In function ‘get_symbol_str’:
scripts/kconfig/menu.c:590:18: warning: ‘jump’ may be used uninitialized in this function [-Wmaybe-uninitialized]
jump->offset = strlen(r->s);
Simplifies the test logic because (head && local) means (jump != 0)
and makes GCC happy when checking if the jump pointer was initialized.
Signed-off-by: Peter Kümmel <syntheticpp(a)gmx.net>
Signed-off-by: Michal Marek <mmarek(a)suse.cz>
Change-Id: I43de391c9573a28c66d17e7dc535033be39060de
Signed-off-by: Stefan Reinauer <stefan.reinauer(a)coreboot.org>
Reviewed-on: http://review.coreboot.org/9312
Tested-by: build bot (Jenkins)
Reviewed-by: Paul Menzel <paulepanter(a)users.sourceforge.net>
Reviewed-by: Marc Jones <marc.jones(a)se-eng.com>
See http://review.coreboot.org/9312 for details.
-gerrit