[coreboot-gerrit] Patch set updated for coreboot: coreinfo: Use tinycurses

Stefan Reinauer (stefan.reinauer@coreboot.org) gerrit at coreboot.org
Tue Mar 15 21:30:31 CET 2016


Stefan Reinauer (stefan.reinauer at coreboot.org) just uploaded a new patch set to gerrit, which you can find at https://review.coreboot.org/14067

-gerrit

commit b489cbc5c522f6971f2237de567aee1d66548f9b
Author: Stefan Reinauer <stefan.reinauer at 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 at coreboot.org>
---
 payloads/coreinfo/Makefile | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/payloads/coreinfo/Makefile b/payloads/coreinfo/Makefile
index 96acecc..ff98fd5 100644
--- a/payloads/coreinfo/Makefile
+++ b/payloads/coreinfo/Makefile
@@ -50,7 +50,7 @@ HOSTCXXFLAGS := -I$(srck) -I$(objk)
 LIBCONFIG_PATH := ../libpayload
 LIBPAYLOAD_DIR := $(coreinfo_obj)/libpayload
 HAVE_LIBPAYLOAD := $(wildcard $(LIBPAYLOAD_DIR)/lib/libpayload.a)
-LIB_CONFIG ?= defconfig
+LIBPAYLOAD_CONFIG ?= configs/defconfig-tinycurses
 OBJCOPY ?= objcopy
 
 INCLUDES = -I$(coreinfo_obj) -include $(LIBPAYLOAD_DIR)/include/kconfig.h
@@ -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) defconfig KBUILD_DEFCONFIG=$(LIBPAYLOAD_CONFIG)
 	$(MAKE) -C $(LIBCONFIG_PATH) install DESTDIR=$(coreinfo_obj)
 endif
 



More information about the coreboot-gerrit mailing list