svn commit: r198466 - head/sys/tools

Rui Paulo rpaulo at FreeBSD.org
Sun Oct 25 09:48:22 UTC 2009


Author: rpaulo
Date: Sun Oct 25 09:48:21 2009
New Revision: 198466
URL: http://svn.freebsd.org/changeset/base/198466

Log:
  Output a comment on top of each generated file explaining where it came
  from.

Modified:
  head/sys/tools/fw_stub.awk

Modified: head/sys/tools/fw_stub.awk
==============================================================================
--- head/sys/tools/fw_stub.awk	Sun Oct 25 08:43:38 2009	(r198465)
+++ head/sys/tools/fw_stub.awk	Sun Oct 25 09:48:21 2009	(r198466)
@@ -121,7 +121,11 @@ ctmpfilename = cfilename ".tmp";
 modname = opt_m;
 gsub(/[-\.]/, "_", modname);
 
-printc("#include <sys/param.h>\
+printc("/*\
+ * Automatically generated by:\
+ * $FreeBSD$\
+ */\
+#include <sys/param.h>\
 #include <sys/errno.h>\
 #include <sys/kernel.h>\
 #include <sys/module.h>\


More information about the svn-src-all mailing list