Stefan Reinauer (stefan.reinauer@coreboot.org) just uploaded a new patch set to gerrit, which you can find at https://review.coreboot.org/14067
-gerrit
commit 96ee2f5cbaeae35d69d466277da2577da3bb84e9 Author: Stefan Reinauer stefan.reinauer@coreboot.org Date: Sat Mar 12 11:47:00 2016 -0800
coreinfo: Use tinycurses
When using PDcurses over a serial line, the background of coreinfo is not properly cleared. Hence use tinycurses, which was the only option when coreinfo was developed.
Change-Id: I15bb6eb552cf924de98d09ef63be33ecf336c526 Signed-off-by: Stefan Reinauer stefan.reinauer@coreboot.org --- payloads/coreinfo/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/payloads/coreinfo/Makefile b/payloads/coreinfo/Makefile index 47a7dfb..e2a4d6d 100644 --- a/payloads/coreinfo/Makefile +++ b/payloads/coreinfo/Makefile @@ -117,7 +117,7 @@ else libpayload: printf "Building libpayload @ $(LIBCONFIG_PATH).\n" $(MAKE) -C $(LIBCONFIG_PATH) distclean coreinfo_obj=$(coreinfo_obj)/libptmp - $(MAKE) -C $(LIBCONFIG_PATH) $(LIB_CONFIG) + $(MAKE) -C $(LIBCONFIG_PATH) $(LIB_CONFIG) KBUILD_DEFCONFIG=configs/defconfig-tinycurses $(MAKE) -C $(LIBCONFIG_PATH) install DESTDIR=$(coreinfo_obj) endif