~vcs-imports/module-init-tools/trunk

« back to all changes in this revision

Viewing changes to modprobe.c

  • Committer: Jon Masters
  • Date: 2011-06-01 21:48:25 UTC
  • Revision ID: git-v1:d5f25a7c7f2f99725bfd376c9afaf829cb0ca0d3
modprobe: cleanup source, Free Software Foundation mailing address.

The FSF GPLv2 boilerplate has needed updating for a long, long time.

Signed-off-by: Jon Masters <jcm@jonmasters.org>

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/* modprobe.c: add or remove a module from the kernel, intelligently.
2
 
    Copyright (C) 2001  Rusty Russell.
3
 
    Copyright (C) 2002, 2003  Rusty Russell, IBM Corporation.
4
 
 
5
 
    This program is free software; you can redistribute it and/or modify
6
 
    it under the terms of the GNU General Public License as published by
7
 
    the Free Software Foundation; either version 2 of the License, or
8
 
    (at your option) any later version.
9
 
 
10
 
    This program is distributed in the hope that it will be useful,
11
 
    but WITHOUT ANY WARRANTY; without even the implied warranty of
12
 
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13
 
    GNU General Public License for more details.
14
 
 
15
 
    You should have received a copy of the GNU General Public License
16
 
    along with this program; if not, write to the Free Software
17
 
    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
18
 
*/
 
2
 *
 
3
 * Copyright (C) 2001        Rusty Russell.
 
4
 * Copyright (C) 2002, 2003  Rusty Russell, IBM Corporation.
 
5
 * Copyright (C) 2006-2011   Jon Masters <jcm@jonmasters.org>, and others.
 
6
 *
 
7
 * This program is free software; you can redistribute it and/or modify
 
8
 * it under the terms of the GNU General Public License as published by
 
9
 * the Free Software Foundation; either version 2 of the License, or
 
10
 * (at your option) any later version.
 
11
 *
 
12
 * This program is distributed in the hope that it will be useful,
 
13
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
14
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
15
 * GNU General Public License for more details.
 
16
 *
 
17
 * You should have received a copy of the GNU General Public License
 
18
 * along with this program; if not, write to the Free Software
 
19
 * Foundation, Inc., 51 Franklin Street, Fifth Floor,
 
20
 * Boston, MA 02110-1301, USA.
 
21
 */
19
22
#define _GNU_SOURCE /* asprintf */
20
23
 
21
24
#include <sys/utsname.h>