From 8ea23c2b5b87c871787e74f312cd8e477790decd Mon Sep 17 00:00:00 2001 From: Matt Macy Date: Thu, 7 Mar 2019 03:53:48 +0000 Subject: [PATCH] add GPL text in addition to SPDX tags as requested by core MFC after: 1 week --- sys/gnu/gcov/gcc_4_7.c | 14 ++++++++++++++ sys/gnu/gcov/gcov_fs.c | 14 ++++++++++++++ 2 files changed, 28 insertions(+) diff --git a/sys/gnu/gcov/gcc_4_7.c b/sys/gnu/gcov/gcc_4_7.c index 7d56c0257b01..e420b7b9be4e 100644 --- a/sys/gnu/gcov/gcc_4_7.c +++ b/sys/gnu/gcov/gcc_4_7.c @@ -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. diff --git a/sys/gnu/gcov/gcov_fs.c b/sys/gnu/gcov/gcov_fs.c index 00f80ad249f2..7868e00ebaf9 100644 --- a/sys/gnu/gcov/gcov_fs.c +++ b/sys/gnu/gcov/gcov_fs.c @@ -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. *