[coreboot-gerrit] New patch to review for coreboot: Correct libpayload path in FILO Makefile

Arthur Heymans (arthur@aheymans.xyz) gerrit at coreboot.org
Tue Jun 14 00:51:54 CEST 2016


Arthur Heymans (arthur at aheymans.xyz) just uploaded a new patch set to gerrit, which you can find at https://review.coreboot.org/15169

-gerrit

commit 86edcb05f569e6e6fd842ef13c67c64f5cd3cac5
Author: Arthur Heymans <arthur at aheymans.xyz>
Date:   Tue Jun 14 00:29:47 2016 +0200

    Correct libpayload path in FILO Makefile
    
    The path for libpayload in the FILO Makefile is not
    set correctly to build coreboot with the FILO payload.
    
    This allows coreboot to build with the FILO payload
    when HEAD option is chosen in menuconfig, since the Makefile
    in the FILO tree in HEAD uses 'ifndef' to set path.
    
    Change-Id: Iced6efd4688e2416e4c471a422ada3464e653d74
    Signed-off-by: Arthur Heymans <arthur at aheymans.xyz>
---
 payloads/external/FILO/Makefile | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/payloads/external/FILO/Makefile b/payloads/external/FILO/Makefile
index 13d3e8f..6ec4a64 100644
--- a/payloads/external/FILO/Makefile
+++ b/payloads/external/FILO/Makefile
@@ -12,6 +12,8 @@ unexport KCONFIG_DEPENDENCIES
 unexport KCONFIG_SPLITCONFIG
 unexport KCONFIG_TRISTATE
 unexport KCONFIG_NEGATIVES
+export src := $(shell pwd)
+export LIBCONFIG_PATH := $(src)/../../../../coreboot/payloads/libpayload
 
 all: filo
 



More information about the coreboot-gerrit mailing list