[coreboot] r3438 - trunk/coreboot-v2/util/newconfig

svn at coreboot.org svn at coreboot.org
Fri Aug 1 13:20:10 CEST 2008


Author: stepan
Date: 2008-08-01 13:20:09 +0200 (Fri, 01 Aug 2008)
New Revision: 3438

Modified:
   trunk/coreboot-v2/util/newconfig/config.g
Log:
fix typos in config.g, and don't arbitrarily hide some build information
(doesn't make sense in v2). For silent build, use make -s
(trivial)

Signed-off-by: Stefan Reinauer <stepan at coresystems.de>
Acked-by: Stefan Reinauer <stepan at coresystems.de>



Modified: trunk/coreboot-v2/util/newconfig/config.g
===================================================================
--- trunk/coreboot-v2/util/newconfig/config.g	2008-07-23 23:22:59 UTC (rev 3437)
+++ trunk/coreboot-v2/util/newconfig/config.g	2008-08-01 11:20:09 UTC (rev 3438)
@@ -223,7 +223,7 @@
 		# init object files added by 'initobject' directive
 		self.initobjectrules = {}
 
-		# driver files added by 'drive' directive
+		# driver files added by 'driver' directive
 		self.driverrules = {}
 
 		# loader scripts added by 'ldscript' directive
@@ -2072,11 +2072,9 @@
 		if (type  == 'S'):
 			# for .S, .o depends on .s
 			file.write("%s: %s.s\n" % (init[0], init[3]))
-        		file.write("\t at echo $(CC) ... -o $@ $<\n")
         		file.write("\t$(CC) -c $(CPU_OPT) -o $@ $<\n")
 			# and .s depends on .S
 			file.write("%s.s: %s\n" % (init[3], source))
-			file.write("\t at echo $(CPP) ... $< > $@\n")
 			# Note: next 2 lines are ONE output line!
         		file.write("\t$(CPP) $(CPPFLAGS) $< ")
 			file.write(">$@.new && mv $@.new $@\n")
@@ -2091,11 +2089,9 @@
 		if (type  == 'S'):
 			# for .S, .o depends on .s
 			file.write("%s: %s.s\n" % (obj[0], obj[3]))
-        		file.write("\t at echo $(CC) ... -o $@ $<\n")
         		file.write("\t$(CC) -c $(CPU_OPT) -o $@ $<\n")
 			# and .s depends on .S
 			file.write("%s.s: %s\n" % (obj[3], source))
-			file.write("\t at echo $(CPP) ... $< > $@\n")
 			# Note: next 2 lines are ONE output line!
         		file.write("\t$(CPP) $(CPPFLAGS) $< ")
 			file.write(">$@.new && mv $@.new $@\n")





More information about the coreboot mailing list