[coreboot] [v2] r4872 - trunk/coreboot-v2/src/cpu/x86/smm

svn at coreboot.org svn at coreboot.org
Tue Oct 27 16:53:27 CET 2009


Author: myles
Date: 2009-10-27 16:53:27 +0100 (Tue, 27 Oct 2009)
New Revision: 4872

Modified:
   trunk/coreboot-v2/src/cpu/x86/smm/Makefile.inc
Log:
Add $(obj) paths for a couple of smm files so they don't end up in the top directory.

Signed-off-by: Myles Watson <mylesgw at gmail.com>
Acked-by: Ronald G. Minnich <rminnich at gmail.com>


Modified: trunk/coreboot-v2/src/cpu/x86/smm/Makefile.inc
===================================================================
--- trunk/coreboot-v2/src/cpu/x86/smm/Makefile.inc	2009-10-27 14:29:29 UTC (rev 4871)
+++ trunk/coreboot-v2/src/cpu/x86/smm/Makefile.inc	2009-10-27 15:53:27 UTC (rev 4872)
@@ -33,12 +33,12 @@
 	$(CC) $(LDFLAGS) -nostdlib -r -o $@ $^
 
 $(obj)/cpu/x86/smm/smm: $(obj)/cpu/x86/smm/smm.o $(src)/cpu/x86/smm/smm.ld $(obj)/ldoptions
-	$(CC) $(LDFLAGS) -nostdlib -nostartfiles -static -o smm.elf -T $(src)/cpu/x86/smm/smm.ld $(obj)/cpu/x86/smm/smm.o
-	$(CONFIG_CROSS_COMPILE)nm -n smm.elf | sort > smm.map
-	$(OBJCOPY) -O binary smm.elf smm
+	$(CC) $(LDFLAGS) -nostdlib -nostartfiles -static -o $(obj)/cpu/x86/smm/smm.elf -T $(src)/cpu/x86/smm/smm.ld $(obj)/cpu/x86/smm/smm.o
+	$(CONFIG_CROSS_COMPILE)nm -n $(obj)/cpu/x86/smm/smm.elf | sort > $(obj)/cpu/x86/smm/smm.map
+	$(OBJCOPY) -O binary $(obj)/cpu/x86/smm/smm.elf $(obj)/cpu/x86/smm/smm
 
 $(obj)/cpu/x86/smm/smm_bin.c: $(obj)/cpu/x86/smm/smm
-	(echo 'unsigned char smm[] = {'; od -vtx1 smm | sed -e 's,^[0-9]* *,,' -e 's:[0-9a-f][0-9a-f] :0x&,:g' -e 's:[0-9a-f][0-9a-f]$$:0x&,:'; echo '}; unsigned int smm_len = '; wc -c smm |awk '{print $$1;}' ; echo ';')  > $@
+	(echo 'unsigned char smm[] = {'; od -vtx1 $(obj)/cpu/x86/smm/smm | sed -e 's,^[0-9]* *,,' -e 's:[0-9a-f][0-9a-f] :0x&,:g' -e 's:[0-9a-f][0-9a-f]$$:0x&,:'; echo '}; unsigned int smm_len = '; wc -c $(obj)/cpu/x86/smm/smm |awk '{print $$1;}' ; echo ';')  > $@
 
 endif
 





More information about the coreboot mailing list