summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--isys/auditd.c22
-rw-r--r--isys/auditd.h22
-rw-r--r--isys/cpio.c19
-rw-r--r--isys/cpio.h19
-rw-r--r--isys/dasd.c19
-rw-r--r--isys/dns.c19
-rw-r--r--isys/dns.h19
-rw-r--r--isys/eddsupport.c21
-rw-r--r--isys/eddsupport.h19
-rw-r--r--isys/ethtool.c18
-rw-r--r--isys/filtertest.c19
-rw-r--r--isys/imount.c19
-rw-r--r--isys/imount.h19
-rw-r--r--isys/isofs.c19
-rw-r--r--isys/isys.c19
-rw-r--r--isys/isys.h19
-rwxr-xr-xisys/isys.py25
-rw-r--r--isys/lang.c19
-rw-r--r--isys/lang.h19
-rw-r--r--isys/linkdetect.c21
-rw-r--r--isys/mount_constants.h19
-rw-r--r--isys/net.h19
-rw-r--r--isys/nfs_mount3.h19
-rw-r--r--isys/nfs_mount4.h19
-rw-r--r--isys/nl.c18
-rw-r--r--isys/nl.h18
-rw-r--r--isys/silo.c25
-rw-r--r--isys/smp.c19
-rw-r--r--isys/smp.h19
-rw-r--r--isys/str.c18
-rw-r--r--isys/str.h18
-rw-r--r--isys/stubs.h19
-rw-r--r--isys/sundries.h18
-rw-r--r--isys/uncpio.c19
-rw-r--r--isys/vio.c16
-rw-r--r--isys/wireless.c23
-rw-r--r--isys/wireless.h19
37 files changed, 627 insertions, 93 deletions
diff --git a/isys/auditd.c b/isys/auditd.c
index 87226b2d7..6d5fa0f62 100644
--- a/isys/auditd.c
+++ b/isys/auditd.c
@@ -1,18 +1,22 @@
/*
- * auditd.c
+ * auditd.c: This is a simple audit daemon that throws all messages away.
*
- * This is a simple audit daemon that throws all messages away.
+ * Copyright (C) 2006 Red Hat, Inc. All rights reserved.
*
- * Peter Jones <pjones@redhat.com>
+ * 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.
*
- * Copyright 2006 Red Hat, Inc.
- *
- * This software may be freely redistributed under the terms of the GNU
- * General Public License, version 2.
+ * 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., 675 Mass Ave, Cambridge, MA 02139, USA.
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ *
+ * Red Hat Author(s): Peter Jones <pjones@redhat.com>
*/
#define _GNU_SOURCE 1
diff --git a/isys/auditd.h b/isys/auditd.h
index ebf52c816..1aad39e78 100644
--- a/isys/auditd.h
+++ b/isys/auditd.h
@@ -1,18 +1,22 @@
/*
- * auditd.h
+ * auditd.h: This is a simple audit daemon that throws all messages away.
*
- * This is a simple audit daemon that throws all messages away.
+ * Copyright (C) 2006 Red Hat, Inc. All rights reserved.
*
- * Peter Jones <pjones@redhat.com>
+ * 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.
*
- * Copyright 2006 Red Hat, Inc.
- *
- * This software may be freely redistributed under the terms of the GNU
- * General Public License, version 2.
+ * 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., 675 Mass Ave, Cambridge, MA 02139, USA.
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ *
+ * Red Hat Author(s): Peter Jones <pjones@redhat.com>
*/
#ifndef ISYS_AUDIT_H
diff --git a/isys/cpio.c b/isys/cpio.c
index 008c6b97c..fd836052a 100644
--- a/isys/cpio.c
+++ b/isys/cpio.c
@@ -1,3 +1,22 @@
+/*
+ * cpio.c
+ *
+ * Copyright (C) 2007 Red Hat, Inc. All rights reserved.
+ *
+ * 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, see <http://www.gnu.org/licenses/>.
+ */
+
#include <fcntl.h>
#include <stdio.h>
#include <stdlib.h>
diff --git a/isys/cpio.h b/isys/cpio.h
index 1caa4e464..4cbb7c0ea 100644
--- a/isys/cpio.h
+++ b/isys/cpio.h
@@ -1,3 +1,22 @@
+/*
+ * cpio.h
+ *
+ * Copyright (C) 2007 Red Hat, Inc. All rights reserved.
+ *
+ * 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, see <http://www.gnu.org/licenses/>.
+ */
+
#ifndef H_CPIO
#define H_CPIO
diff --git a/isys/dasd.c b/isys/dasd.c
index 74a679e91..18b03f407 100644
--- a/isys/dasd.c
+++ b/isys/dasd.c
@@ -1,3 +1,22 @@
+/*
+ * dasd.c
+ *
+ * Copyright (C) 2007 Red Hat, Inc. All rights reserved.
+ *
+ * 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, see <http://www.gnu.org/licenses/>.
+ */
+
#include <errno.h>
#include <fcntl.h>
#include <stdio.h>
diff --git a/isys/dns.c b/isys/dns.c
index c7a0f596e..adcbd5cfb 100644
--- a/isys/dns.c
+++ b/isys/dns.c
@@ -1,3 +1,22 @@
+/*
+ * dns.c
+ *
+ * Copyright (C) 2007 Red Hat, Inc. All rights reserved.
+ *
+ * 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, see <http://www.gnu.org/licenses/>.
+ */
+
#include <alloca.h>
#include <sys/socket.h>
#include <netinet/in.h>
diff --git a/isys/dns.h b/isys/dns.h
index 71321c276..aa1136a83 100644
--- a/isys/dns.h
+++ b/isys/dns.h
@@ -1,3 +1,22 @@
+/*
+ * dns.h
+ *
+ * Copyright (C) 2007 Red Hat, Inc. All rights reserved.
+ *
+ * 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, see <http://www.gnu.org/licenses/>.
+ */
+
#ifndef H_DNS
#define H_DNS
diff --git a/isys/eddsupport.c b/isys/eddsupport.c
index 7d3698b39..308a091cd 100644
--- a/isys/eddsupport.c
+++ b/isys/eddsupport.c
@@ -2,17 +2,24 @@
* eddsupport.c - handling of mapping disk drives in Linux to disk drives
* according to the BIOS using the edd kernel module
*
- * Copyright 2004 Dell, Inc., Red Hat, Inc.
+ * Copyright (C) 2004 Dell, Inc. All rights reserved.
+ * Copyright (C) 2004 Red Hat, Inc. All rights reserved.
*
- * Rezwanul_Kabir@Dell.com
- * Jeremy Katz <katzj@redhat.com>
+ * 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 software may be freely redistributed under the terms of the GNU
- * general public license.
+ * 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., 675 Mass Ave, Cambridge, MA 02139, USA.
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ *
+ * Dell Author(s): Rezwanul_Kabir@Dell.com
+ * Red Hat Author(s): Jeremy Katz <katzj@redhat.com>
*/
#include <ctype.h>
diff --git a/isys/eddsupport.h b/isys/eddsupport.h
index b7a390f43..77fc4c442 100644
--- a/isys/eddsupport.h
+++ b/isys/eddsupport.h
@@ -1,3 +1,22 @@
+/*
+ * eddsupport.h
+ *
+ * Copyright (C) 2007 Red Hat, Inc. All rights reserved.
+ *
+ * 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, see <http://www.gnu.org/licenses/>.
+ */
+
#ifndef EDDSUPPORT_H
#define EDDSUPPORT_H
diff --git a/isys/ethtool.c b/isys/ethtool.c
index e1e68c7d0..558d1a791 100644
--- a/isys/ethtool.c
+++ b/isys/ethtool.c
@@ -1,16 +1,22 @@
/*
* ethtool.c - setting of basic ethtool options
*
- * Copyright 2003 Red Hat, Inc.
+ * Copyright (C) 2003 Red Hat, Inc. All rights reserved.
*
- * Jeremy Katz <katzj@redhat.com>
+ * 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 software may be freely redistributed under the terms of the GNU
- * general public license.
+ * 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., 675 Mass Ave, Cambridge, MA 02139, USA.
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ *
+ * Red Hat Author(s): Jeremy Katz <katzj@redhat.com>
*/
#include <errno.h>
diff --git a/isys/filtertest.c b/isys/filtertest.c
index a87f05f4a..4e587ae72 100644
--- a/isys/filtertest.c
+++ b/isys/filtertest.c
@@ -1,3 +1,22 @@
+/*
+ * filtertest.c
+ *
+ * Copyright (C) 2007 Red Hat, Inc. All rights reserved.
+ *
+ * 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, see <http://www.gnu.org/licenses/>.
+ */
+
#include <stdio.h>
#include <fcntl.h>
#include <stdarg.h>
diff --git a/isys/imount.c b/isys/imount.c
index 3c2f704c5..5f0a30447 100644
--- a/isys/imount.c
+++ b/isys/imount.c
@@ -1,3 +1,22 @@
+/*
+ * imount.c
+ *
+ * Copyright (C) 2007 Red Hat, Inc. All rights reserved.
+ *
+ * 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, see <http://www.gnu.org/licenses/>.
+ */
+
#include <errno.h>
#include <stdio.h>
#include <stdlib.h>
diff --git a/isys/imount.h b/isys/imount.h
index 32cfafac0..4870c2787 100644
--- a/isys/imount.h
+++ b/isys/imount.h
@@ -1,3 +1,22 @@
+/*
+ * imount.h
+ *
+ * Copyright (C) 2007 Red Hat, Inc. All rights reserved.
+ *
+ * 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, see <http://www.gnu.org/licenses/>.
+ */
+
#ifndef H_IMOUNT
#define H_IMOUNT
diff --git a/isys/isofs.c b/isys/isofs.c
index 1f954a225..bb5a44adb 100644
--- a/isys/isofs.c
+++ b/isys/isofs.c
@@ -1,3 +1,22 @@
+/*
+ * isofs.c
+ *
+ * Copyright (C) 2007 Red Hat, Inc. All rights reserved.
+ *
+ * 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, see <http://www.gnu.org/licenses/>.
+ */
+
#include <fcntl.h>
#include <string.h>
#include <unistd.h>
diff --git a/isys/isys.c b/isys/isys.c
index dddc2b5c0..1a373591d 100644
--- a/isys/isys.c
+++ b/isys/isys.c
@@ -1,3 +1,22 @@
+/*
+ * isys.c
+ *
+ * Copyright (C) 2007 Red Hat, Inc. All rights reserved.
+ *
+ * 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, see <http://www.gnu.org/licenses/>.
+ */
+
#include <Python.h>
#include <stdio.h>
diff --git a/isys/isys.h b/isys/isys.h
index 3af91fd7a..6b0695131 100644
--- a/isys/isys.h
+++ b/isys/isys.h
@@ -1,3 +1,22 @@
+/*
+ * isys.h
+ *
+ * Copyright (C) 2007 Red Hat, Inc. All rights reserved.
+ *
+ * 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, see <http://www.gnu.org/licenses/>.
+ */
+
#ifndef H_ISYS
#define H_ISYS
diff --git a/isys/isys.py b/isys/isys.py
index 7fff14237..537174fe7 100755
--- a/isys/isys.py
+++ b/isys/isys.py
@@ -1,18 +1,25 @@
#
# isys.py - installer utility functions and glue for C module
#
-# Matt Wilson <msw@redhat.com>
-# Erik Troan <ewt@redhat.com>
-# Jeremy Katz <katzj@redhat.com>
+# Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2007 Red Hat, Inc.
+# All rights reserved.
#
-# Copyright 2001 - 2007 Red Hat, Inc.
+# 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 software may be freely redistributed under the terms of the GNU
-# library public license.
+# 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 Library Public License
-# along with this program; if not, write to the Free Software
-# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+# You should have received a copy of the GNU General Public License
+# along with this program. If not, see <http://www.gnu.org/licenses/>.
+#
+# Red Hat Author(s): Matt Wilson <msw@redhat.com>
+# Erik Troan <ewt@redhat.com>
+# Jeremy Katz <katzj@redhat.com>
#
import _isys
diff --git a/isys/lang.c b/isys/lang.c
index c0e2d25e5..e16bf3ace 100644
--- a/isys/lang.c
+++ b/isys/lang.c
@@ -1,3 +1,22 @@
+/*
+ * lang.c
+ *
+ * Copyright (C) 2007 Red Hat, Inc. All rights reserved.
+ *
+ * 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, see <http://www.gnu.org/licenses/>.
+ */
+
#include <alloca.h>
#include <errno.h>
#include <fcntl.h>
diff --git a/isys/lang.h b/isys/lang.h
index 55e5769a1..a08adbdb0 100644
--- a/isys/lang.h
+++ b/isys/lang.h
@@ -1,3 +1,22 @@
+/*
+ * lang.h
+ *
+ * Copyright (C) 2007 Red Hat, Inc. All rights reserved.
+ *
+ * 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, see <http://www.gnu.org/licenses/>.
+ */
+
#ifndef ISYS_LANG_H
#define ISYS_LANG_H
diff --git a/isys/linkdetect.c b/isys/linkdetect.c
index 1d1e33efd..ae6c6f218 100644
--- a/isys/linkdetect.c
+++ b/isys/linkdetect.c
@@ -4,20 +4,25 @@
* pulls code from mii-tool.c in net-toools and ethtool so
* that we can do everything that jgarzik says we should check
*
- * Copyright 2002,2003 Red Hat, Inc.
- * Portions Copyright 2000 David A. Hinds -- dhinds@pcmcia.sourceforge.org
+ * Copyright (C) 2002, 2003 Red Hat, Inc. All rights reserved.
+ * Portions Copyright (C) 2000 David A. Hinds -- dhinds@pcmcia.sourceforge.org
*
- * Jeremy Katz <katzj@redhat.com>
+ * 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 software may be freely redistributed under the terms of the GNU
- * general public license.
+ * 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., 675 Mass Ave, Cambridge, MA 02139, USA.
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ *
+ * Red Hat Author(s): Jeremy Katz <katzj@redhat.com>
*/
-
#include <stdio.h>
#include <stdlib.h>
#include <sys/ioctl.h>
diff --git a/isys/mount_constants.h b/isys/mount_constants.h
index 5f033452d..7bf96103f 100644
--- a/isys/mount_constants.h
+++ b/isys/mount_constants.h
@@ -1,3 +1,22 @@
+/*
+ * mount_constants.h
+ *
+ * Copyright (C) 2007 Red Hat, Inc. All rights reserved.
+ *
+ * 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, see <http://www.gnu.org/licenses/>.
+ */
+
#define MS_RDONLY 1 /* Mount read-only */
#define MS_NOSUID 2 /* Ignore suid and sgid bits */
#define MS_NODEV 4 /* Disallow access to device special files */
diff --git a/isys/net.h b/isys/net.h
index a275b281e..4f7e65ce0 100644
--- a/isys/net.h
+++ b/isys/net.h
@@ -1,3 +1,22 @@
+/*
+ * net.h
+ *
+ * Copyright (C) 2007 Red Hat, Inc. All rights reserved.
+ *
+ * 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, see <http://www.gnu.org/licenses/>.
+ */
+
#ifndef ISYSNET_H
#define ISYSNET_H
diff --git a/isys/nfs_mount3.h b/isys/nfs_mount3.h
index f4e7342cd..164fdc4a1 100644
--- a/isys/nfs_mount3.h
+++ b/isys/nfs_mount3.h
@@ -1,4 +1,23 @@
/*
+ * nfs_mount3.h
+ *
+ * Copyright (C) 2007 Red Hat, Inc. All rights reserved.
+ *
+ * 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, see <http://www.gnu.org/licenses/>.
+ */
+
+/*
* We want to be able to compile mount on old kernels in such a way
* that the binary will work well on more recent kernels.
* Thus, if necessary we teach nfsmount.c the structure of new fields
diff --git a/isys/nfs_mount4.h b/isys/nfs_mount4.h
index eb4ab19fd..0a214ad3d 100644
--- a/isys/nfs_mount4.h
+++ b/isys/nfs_mount4.h
@@ -1,4 +1,23 @@
/*
+ * nfs_mount4.h
+ *
+ * Copyright (C) 2007 Red Hat, Inc. All rights reserved.
+ *
+ * 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, see <http://www.gnu.org/licenses/>.
+ */
+
+/*
* We want to be able to compile mount on old kernels in such a way
* that the binary will work well on more recent kernels.
* Thus, if necessary we teach nfsmount.c the structure of new fields
diff --git a/isys/nl.c b/isys/nl.c
index ee968b510..b04596b64 100644
--- a/isys/nl.c
+++ b/isys/nl.c
@@ -1,16 +1,22 @@
/*
* nl.c - Netlink helper functions
*
- * Copyright 2006 Red Hat, Inc.
+ * Copyright (C) 2006 Red Hat, Inc. All rights reserved.
*
- * David Cantrell <dcantrell@redhat.com>
+ * 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 software may be freely redistributed under the terms of the GNU
- * general public license.
+ * 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., 675 Mass Ave, Cambridge, MA 02139, USA.
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ *
+ * Red Hat Author(s): David Cantrell <dcantrell@redhat.com>
*/
#include <stdio.h>
diff --git a/isys/nl.h b/isys/nl.h
index 55861179c..87b0befdc 100644
--- a/isys/nl.h
+++ b/isys/nl.h
@@ -1,16 +1,22 @@
/*
* nl.h - Netlink helper functions, the header file
*
- * Copyright 2006 Red Hat, Inc.
+ * Copyright (C) 2006 Red Hat, Inc. All rights reserved.
*
- * David Cantrell <dcantrell@redhat.com>
+ * 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 software may be freely redistributed under the terms of the GNU
- * general public license.
+ * 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., 675 Mass Ave, Cambridge, MA 02139, USA.
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ *
+ * Red Hat Author(s): David Cantrell <dcantrell@redhat.com>
*/
#include <netinet/in.h>
diff --git a/isys/silo.c b/isys/silo.c
index e9ac8a8b8..3eb1697ab 100644
--- a/isys/silo.c
+++ b/isys/silo.c
@@ -1,14 +1,23 @@
-/* silo.c: Conversions between SCSI and IDE disk names
- * and OpenPROM fully qualified paths.
+/*
+ * silo.c: Conversions between SCSI and IDE disk names and OpenPROM fully
+ * qualified paths.
*
- * Copyright (C) 1999, 2000 Jakub Jelinek <jakub@redhat.com>
- *
- * This software may be freely redistributed under the terms of the GNU
- * public license.
+ * Copyright (C) 1999, 2000 Red Hat, Inc. All rights reserved.
+ *
+ * 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., 675 Mass Ave, Cambridge, MA 02139, USA.
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ *
+ * Red Hat Author(s): Jakub Jelinek <jakub@redhat.com>
*/
#define _GNU_SOURCE
diff --git a/isys/smp.c b/isys/smp.c
index b23fcd6b3..6b01796f2 100644
--- a/isys/smp.c
+++ b/isys/smp.c
@@ -1,4 +1,23 @@
/*
+ * smp.c
+ *
+ * Copyright (C) 2007 Red Hat, Inc. All rights reserved.
+ *
+ * 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, see <http://www.gnu.org/licenses/>.
+ */
+
+/*
[_Anarchy_(alan@lightning.swansea.uk.linux.org)] you should do one check
though - if the board seems to be SMP and the CPU in /proc/cpuinfo is non
intel dont install an SMP kernel - thats a dual pentium board with a cyrix
diff --git a/isys/smp.h b/isys/smp.h
index e03726826..651fa3335 100644
--- a/isys/smp.h
+++ b/isys/smp.h
@@ -1,3 +1,22 @@
+/*
+ * smp.h
+ *
+ * Copyright (C) 2007 Red Hat, Inc. All rights reserved.
+ *
+ * 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, see <http://www.gnu.org/licenses/>.
+ */
+
#ifndef SMP_H
#define SMP_H
diff --git a/isys/str.c b/isys/str.c
index 4508b116d..60974a66d 100644
--- a/isys/str.c
+++ b/isys/str.c
@@ -1,16 +1,22 @@
/*
* str.c - String helper functions that don't need string.h or ctype.h
*
- * Copyright 2006 Red Hat, Inc.
+ * Copyright (C) 2006 Red Hat, Inc. All rights reserved.
*
- * David Cantrell <dcantrell@redhat.com>
+ * 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 software may be freely redistributed under the terms of the GNU
- * general public license.
+ * 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., 675 Mass Ave, Cambridge, MA 02139, USA.
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ *
+ * Red Hat Author(s): David Cantrell <dcantrell@redhat.com>
*/
#include <stdio.h>
diff --git a/isys/str.h b/isys/str.h
index d5910fe45..da855ec17 100644
--- a/isys/str.h
+++ b/isys/str.h
@@ -1,16 +1,22 @@
/*
* str.c - String helper functions, the header file
*
- * Copyright 2006 Red Hat, Inc.
+ * Copyright (C) 2006 Red Hat, Inc. All rights reserved.
*
- * David Cantrell <dcantrell@redhat.com>
+ * 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 software may be freely redistributed under the terms of the GNU
- * general public license.
+ * 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., 675 Mass Ave, Cambridge, MA 02139, USA.
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ *
+ * Red Hat Author(s): David Cantrell <dcantrell@redhat.com>
*/
/* Function prototypes */
diff --git a/isys/stubs.h b/isys/stubs.h
index 9e8ee4ce1..40ecb22ac 100644
--- a/isys/stubs.h
+++ b/isys/stubs.h
@@ -1,3 +1,22 @@
+/*
+ * stubs.h
+ *
+ * Copyright (C) 2007 Red Hat, Inc. All rights reserved.
+ *
+ * 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, see <http://www.gnu.org/licenses/>.
+ */
+
/* we use gzlib when linked against dietlibc, but otherwise, we should use
zlib. it would make more sense to do the defines in the other direction,
but that causes symbol wackiness because both gunzip_open and gzip_open in
diff --git a/isys/sundries.h b/isys/sundries.h
index 1fc36c40e..0a6cb42e5 100644
--- a/isys/sundries.h
+++ b/isys/sundries.h
@@ -1,6 +1,20 @@
/*
- * sundries.h
- * Support function prototypes. Functions are in sundries.c.
+ * sundries.h: Support function prototypes. Functions are in sundries.c.
+ *
+ * Copyright (C) 2007 Red Hat, Inc. All rights reserved.
+ *
+ * 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, see <http://www.gnu.org/licenses/>.
*/
#include <sys/types.h>
diff --git a/isys/uncpio.c b/isys/uncpio.c
index d27979b6c..171eb6bc6 100644
--- a/isys/uncpio.c
+++ b/isys/uncpio.c
@@ -1,3 +1,22 @@
+/*
+ * uncpio.c
+ *
+ * Copyright (C) 2007 Red Hat, Inc. All rights reserved.
+ *
+ * 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, see <http://www.gnu.org/licenses/>.
+ */
+
#define HAVE_ALLOCA_H 1
#define MAJOR_IN_SYSMACROS 1
diff --git a/isys/vio.c b/isys/vio.c
index 55d09e62d..1a173f0ed 100644
--- a/isys/vio.c
+++ b/isys/vio.c
@@ -1,10 +1,22 @@
/*
* vio.c - probing for vio devices on the iSeries (viocd and viodasd)
*
- * Jeremy Katz <katzj@redhat.com>
+ * Copyright (C) 2003 Red Hat, Inc. All rights reserved.
*
- * Copyright 2003 Red Hat, Inc.
+ * 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, see <http://www.gnu.org/licenses/>.
+ *
+ * Red Hat Author(s): Jeremy Katz <katzj@redhat.com>
*/
#include <ctype.h>
diff --git a/isys/wireless.c b/isys/wireless.c
index c19da0107..803c233ea 100644
--- a/isys/wireless.c
+++ b/isys/wireless.c
@@ -1,19 +1,24 @@
/*
* wireless.c - wireless card manipulation
- *
- * Copyright 2004 Red Hat, Inc.
- *
- * Some portions from wireless_tools
+ * Some portions from wireless_tools
* copyright (c) 1997-2003 Jean Tourrilhes <jt@hpl.hp.com>
*
- * Jeremy Katz <katzj@redhat.com>
+ * Copyright (C) 2004 Red Hat, Inc. All rights reserved.
+ *
+ * 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 software may be freely redistributed under the terms of the GNU
- * general public license.
+ * 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., 675 Mass Ave, Cambridge, MA 02139, USA.
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ *
+ * Red Hat Author(s): Jeremy Katz <katzj@redhat.com>
*/
#include <errno.h>
diff --git a/isys/wireless.h b/isys/wireless.h
index 01396c419..82cb4d4ce 100644
--- a/isys/wireless.h
+++ b/isys/wireless.h
@@ -1,3 +1,22 @@
+/*
+ * wireless.h
+ *
+ * Copyright (C) 2007 Red Hat, Inc. All rights reserved.
+ *
+ * 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, see <http://www.gnu.org/licenses/>.
+ */
+
#ifndef WIRELESS_H
#define WIRELESS_H