the following patch was just integrated into master:
commit 69b7c4142c75bc26a9b8d098209388080ae43cc5
Author: Lubomir Rintel <lkundrak(a)v3.sk>
Date: Wed May 27 22:18:40 2015 +0200
X61: Add filters
Work with x60 mainboard support, just:
ln -s lenovo_x61.lua SerialICE/simba/mainboard/lenovo_x60.lua
TODO: Something more clever instead of the above
Change-Id: I542e4fce26737be4437544b6ef4b6b5e6ea8d296
Signed-off-by: Lubomir Rintel <lkundrak(a)v3.sk>
Reviewed-on: http://review.coreboot.org/10327
Tested-by: build bot (Jenkins)
Reviewed-by: Stefan Reinauer <stefan.reinauer(a)coreboot.org>
See http://review.coreboot.org/10327 for details.
-gerrit
the following patch was just integrated into master:
commit 9406bc17fa54747f958103826e8b1012b66f617d
Author: Patrick Georgi <pgeorgi(a)google.com>
Date: Mon Jul 6 19:52:22 2015 +0200
lua: Fix build with lua 5.3
Lua's API changed between 5.2 and 5.3, so turn on compatibility.
Change-Id: I3f96198cbe75858120a2e874fee0e63fe03d183a
Signed-off-by: Patrick Georgi <pgeorgi(a)google.com>
Reviewed-on: http://review.coreboot.org/10812
Tested-by: build bot (Jenkins)
Reviewed-by: Stefan Reinauer <stefan.reinauer(a)coreboot.org>
See http://review.coreboot.org/10812 for details.
-gerrit
Patrick Georgi (pgeorgi(a)google.com) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/10812
-gerrit
commit 221fee9a6df114ee9153c42f85e56886d8445b14
Author: Patrick Georgi <pgeorgi(a)google.com>
Date: Mon Jul 6 19:52:22 2015 +0200
lua: Fix build with lua 5.3
Lua's API changed between 5.2 and 5.3, so turn on compatibility.
Change-Id: I3f96198cbe75858120a2e874fee0e63fe03d183a
Signed-off-by: Patrick Georgi <pgeorgi(a)google.com>
---
qemu-0.15.x/serialice-lua.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/qemu-0.15.x/serialice-lua.c b/qemu-0.15.x/serialice-lua.c
index cdf3e25..f6c4c31 100644
--- a/qemu-0.15.x/serialice-lua.c
+++ b/qemu-0.15.x/serialice-lua.c
@@ -32,6 +32,7 @@
#include <string.h>
/* LUA includes */
+#define LUA_COMPAT_5_2
#include <lua.h>
#include <lauxlib.h>
#include <lualib.h>