[coreboot-gerrit] New patch to review for coreboot: nvramcui: Add Makefile

Denis Carikli (GNUtoo@no-log.org) gerrit at coreboot.org
Wed Feb 24 22:02:52 CET 2016


Denis Carikli (GNUtoo at no-log.org) just uploaded a new patch set to gerrit, which you can find at https://review.coreboot.org/13778

-gerrit

commit e15f9463155ba36acd0df8ffe51f2365a12b18af
Author: Denis 'GNUtoo' Carikli <GNUtoo at no-log.org>
Date:   Mon Jan 25 09:20:24 2016 +0100

    nvramcui: Add Makefile
    
    Users had to build nvramcui manually because payload.sh was only meant
    for abuild. Now the user can build it with:
      cd payloads/libpayload/ && make menuconfig && make && make install
      cd ../nvramcui && make
    
    Change-Id: I409a3c39a1e1738e8071febb1a3f169e1aee959a
    Signed-off-by: Denis 'GNUtoo' Carikli <GNUtoo at no-log.org>
---
 payloads/nvramcui/Makefile | 10 ++++++++++
 1 file changed, 10 insertions(+)

diff --git a/payloads/nvramcui/Makefile b/payloads/nvramcui/Makefile
new file mode 100755
index 0000000..73bcf78
--- /dev/null
+++ b/payloads/nvramcui/Makefile
@@ -0,0 +1,10 @@
+LPGCC = ../libpayload/install/libpayload/bin/lpgcc
+
+all: nvramcui.elf
+
+%.elf:
+	$(LPGCC) -o $*.elf $*.c
+
+.PHONY:
+clean:
+	rm -f nvramcui.elf



More information about the coreboot-gerrit mailing list