[coreboot] New patch to review for coreboot: e9bda83 Fix cleaning SeaBIOS from coreboot makefile

Marc Jones (marcj303@gmail.com) gerrit at coreboot.org
Tue Mar 20 00:37:32 CET 2012


Marc Jones (marcj303 at gmail.com) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/801

-gerrit

commit e9bda83e277bceee880e3c79701f968e07f65673
Author: Marc Jones <marc.jones at se-eng.com>
Date:   Mon Mar 19 17:32:33 2012 -0600

    Fix cleaning SeaBIOS from coreboot makefile
    
    The coreboot makefile didn't pass the OUT and CC variables to seabios,
    so the clean didn't clean anything.
    
    Change-Id: Ieaf0c417d6e5dfb9e0a11df70b03d6313919578b
    Signed-off-by: Marc Jones <marc.jones at se-eng.com>
---
 Makefile.inc |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/Makefile.inc b/Makefile.inc
index 86a072a..b4855d0 100644
--- a/Makefile.inc
+++ b/Makefile.inc
@@ -204,7 +204,7 @@ clean-for-update-target:
 	rm -f $(obj)/mainboard/$(MAINBOARDDIR)/romstage.inc
 	rm -f $(obj)/mainboard/$(MAINBOARDDIR)/bootblock.* $(obj)/mainboard/$(MAINBOARDDIR)/dsdt.*
 	rm -f $(obj)/cpu/x86/smm/smm_bin.c $(obj)/cpu/x86/smm/smm.* $(obj)/cpu/x86/smm/smm
-	$(MAKE) -C payloads/external/SeaBIOS -f Makefile.inc clean
+	$(MAKE) -C payloads/external/SeaBIOS -f Makefile.inc clean OUT=$(abspath $(obj)) HOSTCC="$(HOSTCC)" CC="$(CC)" LD="$(LD)"
 
 clean-target:
 	rm -f $(obj)/coreboot*




More information about the coreboot mailing list