From f98017b00317c83ae1c9299ba45437a09b2b9689 Mon Sep 17 00:00:00 2001 From: Andi Kleen Date: Fri, 5 Dec 2008 18:06:02 +0100 Subject: Add copyright notices Signed-off-by: Andi Kleen --- inject.c | 22 +++++++++++++++++++++- mce.lex | 22 +++++++++++++++++++++- mce.y | 25 +++++++++++++++++++++++-- 3 files changed, 65 insertions(+), 4 deletions(-) diff --git a/inject.c b/inject.c index 73fc597..a9c344f 100644 --- a/inject.c +++ b/inject.c @@ -1,4 +1,24 @@ -/* Inject machine checks into kernel for testing */ +/* Copyright (c) 2008 by Intel Corp. + Inject machine checks into kernel for testing. + + mce-inject 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; version + 2. + + mce-inject 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 find a copy of v2 of the GNU General Public License somewhere + on your Linux system; if not, write to the Free Software Foundation, + Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + + Authors: + Andi Kleen + Ying Huang +*/ #define _GNU_SOURCE 1 #include #include diff --git a/mce.lex b/mce.lex index 560f774..7627022 100644 --- a/mce.lex +++ b/mce.lex @@ -1,4 +1,24 @@ -/* Scanner for the machine check grammar */ +/* Copyright (c) 2008 by Intel Corp. + Scanner for the machine check grammar. + + mce-inject 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; version + 2. + + mce-inject 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 find a copy of v2 of the GNU General Public License somewhere + on your Linux system; if not, write to the Free Software Foundation, + Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + + Authors: + Andi Kleen + Ying Huang +*/ %{ #define _GNU_SOURCE 1 #include diff --git a/mce.y b/mce.y index 0ce3913..30b5eca 100644 --- a/mce.y +++ b/mce.y @@ -1,5 +1,26 @@ -/* Grammar for machine check injection. Follows the format printed out - by the kernel on panics with some extensions. See SPEC. */ +/* Copyright (c) 2008 by Intel Corp. + Grammar for machine check injection. Follows the format printed out + by the kernel on panics with some extensions. See SPEC. + + mce-inject 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; version + 2. + + mce-inject 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 find a copy of v2 of the GNU General Public License somewhere + on your Linux system; if not, write to the Free Software Foundation, + Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + + Authors: + Andi Kleen + Ying Huang +*/ + %{ #include #include -- cgit 1.2.3-korg