Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 25 Oct 2009 09:48:22 +0000 (UTC)
From:      Rui Paulo <rpaulo@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r198466 - head/sys/tools
Message-ID:  <200910250948.n9P9mMxo053461@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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>\



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200910250948.n9P9mMxo053461>