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@coresystems.de Acked-by: Stefan Reinauer stepan@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@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@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@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@echo $(CPP) ... $< > $@\n") # Note: next 2 lines are ONE output line! file.write("\t$(CPP) $(CPPFLAGS) $< ") file.write(">$@.new && mv $@.new $@\n")