svn commit: r344869 - head/sys/gnu/gcov

Matt Macy mmacy at FreeBSD.org
Thu Mar 7 03:53:49 UTC 2019


Author: mmacy
Date: Thu Mar  7 03:53:48 2019
New Revision: 344869
URL: https://svnweb.freebsd.org/changeset/base/344869

Log:
  add GPL text in addition to SPDX tags as requested by core
  
  MFC after:	1 week

Modified:
  head/sys/gnu/gcov/gcc_4_7.c
  head/sys/gnu/gcov/gcov_fs.c

Modified: head/sys/gnu/gcov/gcc_4_7.c
==============================================================================
--- head/sys/gnu/gcov/gcc_4_7.c	Thu Mar  7 03:50:34 2019	(r344868)
+++ head/sys/gnu/gcov/gcc_4_7.c	Thu Mar  7 03:53:48 2019	(r344869)
@@ -1,4 +1,18 @@
 // SPDX-License-Identifier: GPL-2.0
+// This program is free software; you can redistribute it and/or
+// modify it under the terms of the GNU General Public License
+// as published by the Free Software Foundation; either version 2
+// of the License, or (at your option) any later version.
+//
+// This program is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+// GNU General Public License for more details.
+//
+// You should have received a copy of the GNU General Public License
+// along with this program; if not, write to the Free Software
+// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
+// 02110-1301, USA.
 /*
  *  This code provides functions to handle gcc's profiling data format
  *  introduced with gcc 4.7.

Modified: head/sys/gnu/gcov/gcov_fs.c
==============================================================================
--- head/sys/gnu/gcov/gcov_fs.c	Thu Mar  7 03:50:34 2019	(r344868)
+++ head/sys/gnu/gcov/gcov_fs.c	Thu Mar  7 03:53:48 2019	(r344869)
@@ -1,4 +1,18 @@
 // SPDX-License-Identifier: GPL-2.0
+// This program is free software; you can redistribute it and/or
+// modify it under the terms of the GNU General Public License
+// as published by the Free Software Foundation; either version 2
+// of the License, or (at your option) any later version.
+//
+// This program is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+// GNU General Public License for more details.
+//
+// You should have received a copy of the GNU General Public License
+// along with this program; if not, write to the Free Software
+// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
+// 02110-1301, USA.
 /*
  *  This code exports profiling data as debugfs files to userspace.
  *


More information about the svn-src-head mailing list