the following patch was just integrated into master:
commit f7bbd05d484c638b6af28ecad19c408fb917add3
Author: Zheng Bao <fishbaozi(a)gmail.com>
Date: Tue Oct 23 11:48:36 2012 +0800
kconfig: Some terms or curses libraries treat backspace as 0x08
Change-Id: Ie4e4a2f0d68643a8f46d24ee7bd1b953e9fe14a5
Signed-off-by: Zheng Bao <zheng.bao(a)amd.com>
Signed-off-by: Zheng Bao <fishbaozi(a)gmail.com>
Build-Tested: build bot (Jenkins) at Tue Oct 23 05:01:53 2012, giving +1
Reviewed-By: Peter Stuge <peter(a)stuge.se> at Tue Oct 23 05:05:53 2012, giving +2
See http://review.coreboot.org/1605 for details.
-gerrit
Zheng Bao (zheng.bao(a)amd.com) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/1605
-gerrit
commit f7bbd05d484c638b6af28ecad19c408fb917add3
Author: Zheng Bao <fishbaozi(a)gmail.com>
Date: Tue Oct 23 11:48:36 2012 +0800
kconfig: Some terms or curses libraries treat backspace as 0x08
Change-Id: Ie4e4a2f0d68643a8f46d24ee7bd1b953e9fe14a5
Signed-off-by: Zheng Bao <zheng.bao(a)amd.com>
Signed-off-by: Zheng Bao <fishbaozi(a)gmail.com>
---
util/kconfig/lxdialog/inputbox.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/util/kconfig/lxdialog/inputbox.c b/util/kconfig/lxdialog/inputbox.c
index 38585f0..ef4569f 100644
--- a/util/kconfig/lxdialog/inputbox.c
+++ b/util/kconfig/lxdialog/inputbox.c
@@ -127,6 +127,7 @@ do_resize:
continue;
case KEY_BACKSPACE:
case 127:
+ case '\b':
if (input_x || scroll) {
wattrset(dialog, dlg.inputbox.atr);
if (!input_x) {
the following patch was just integrated into master:
commit b8e8ccf9b2e26301ef31cf6d591ffcdf5f4ecdec
Author: Zheng Bao <fishbaozi(a)gmail.com>
Date: Mon Oct 22 16:41:42 2012 +0800
build: build coreboot on mingw.
regex, pdcurses, wsock(for itohl) are seperated libraries. mmap and unmmap are
ported from git.
Issues:
1. The length of command line is limited. That makes the Thather can not be built
because too many obj.o need to be built.
Change-Id: I1d60ec5c7720c1e712e246c4cd12e4b718fed05f
Signed-off-by: Zheng Bao <zheng.bao(a)amd.com>
Signed-off-by: Zheng Bao <fishbaozi(a)gmail.com>
Reviewed-By: Patrick Georgi <patrick(a)georgi-clan.de> at Mon Oct 22 13:52:28 2012, giving +2
See http://review.coreboot.org/1604 for details.
-gerrit
the following patch was just integrated into master:
commit 52a7f986e7163b64d833afb1a68670052907263e
Author: Zheng Bao <fishbaozi(a)gmail.com>
Date: Mon Oct 22 16:39:24 2012 +0800
cbfstool: Add -mno-ms-bitfields on (mingw)
The default gcc on mingw will process the __attribute__ ((packed)) in
a different way other than non-win system.
Change-Id: Iac9f4476c922472d0b447f1c3ef60e8e13bd902f
Signed-off-by: Zheng Bao <zheng.bao(a)amd.com>
Signed-off-by: Zheng Bao <fishbaozi(a)gmail.com>
Reviewed-By: Patrick Georgi <patrick(a)georgi-clan.de> at Mon Oct 22 13:49:45 2012, giving +2
See http://review.coreboot.org/1603 for details.
-gerrit
the following patch was just integrated into master:
commit 6585f291def1f7cbeb2ccf42f9d6ce916f68ea24
Author: Zheng Bao <fishbaozi(a)gmail.com>
Date: Mon Oct 22 16:36:03 2012 +0800
Makefile: No need to mkdir when distclean
make distclean causes error on mingw:
-------
rm: cannot lstat `build/util': Permission denied
make: *** [distclean] Error 1
-------
Guess, When the distclean is made by multi-process, the mkdir
in the Makefile will execute when build is removed. That causes
conflicts.
Change-Id: Ia41ecc5d1db2fa9d3328c81ac1d33fa94779492d
Signed-off-by: Zheng Bao <zheng.bao(a)amd.com>
Signed-off-by: Zheng Bao <fishbaozi(a)gmail.com>
Reviewed-By: Patrick Georgi <patrick(a)georgi-clan.de> at Mon Oct 22 13:49:57 2012, giving +2
See http://review.coreboot.org/1602 for details.
-gerrit
the following patch was just integrated into master:
commit 742fc2a96ce2b55a2bb4238541c1a6ea19fefbb5
Author: Zheng Bao <fishbaozi(a)gmail.com>
Date: Mon Oct 22 16:29:37 2012 +0800
gitconfig: Create .git/hooks before copying files.
Change-Id: Id5564bf7a12b3ea9a5e60bd9522466157ace8c65
Signed-off-by: Zheng Bao <zheng.bao(a)amd.com>
Signed-off-by: Zheng Bao <fishbaozi(a)gmail.com>
Reviewed-By: Patrick Georgi <patrick(a)georgi-clan.de> at Mon Oct 22 13:46:36 2012, giving +2
See http://review.coreboot.org/1601 for details.
-gerrit
the following patch was just integrated into master:
commit 8bd5bc79149bbe98d2bf8052b5f01b16ccae0e64
Author: Siyuan Wang <wangsiyuanbuaa(a)gmail.com>
Date: Fri Oct 19 21:02:39 2012 +0800
change conflicted typedef in src/vendorcode/amd/agesa/f15/Porting.h
src/vendorcode/amd/agesa/f15/Porting.h has some conflicted typedef with
src/include/cpu/amd/common/cbtypes.h. These conflicted defines can lead to errors.
Change-Id: Idad0794018bf0bd0e4e52a5aa062a12766d56c8e
Signed-off-by: Siyuan Wang <SiYuan.Wang(a)amd.com>
Signed-off-by: Siyuan Wang <wangsiyuanbuaa(a)gmail.com>
See http://review.coreboot.org/1592 for details.
-gerrit