From: Lucas De Marchi Date: Sat, 3 Dec 2011 06:28:49 +0000 (-0200) Subject: index: change license to LGPL X-Git-Tag: v1~112 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8f923be69a101db55271f1666d97538cc0956df6;p=thirdparty%2Fkmod.git index: change license to LGPL I've got an explicit permit from index author to re-license it as LGPL. --- diff --git a/libkmod/libkmod-index.c b/libkmod/libkmod-index.c index 0f60bee8..37e30c91 100644 --- a/libkmod/libkmod-index.c +++ b/libkmod/libkmod-index.c @@ -1,20 +1,22 @@ -/* index.c: module index file shared functions for modprobe and depmod - Copyright (C) 2008 Alan Jenkins . - Copyright (C) 2011 ProFUSION embedded systems - - These programs are 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 these programs. If not, see . -*/ +/* + * libkmod - interface to kernel module operations + * + * Copyright (C) 2008 Alan Jenkins + * Copyright (C) 2011 ProFUSION embedded systems + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation version 2.1. + * + * This library 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 + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + */ #include /* htonl */ #include @@ -27,6 +29,8 @@ #include "libkmod-index.h" #include "macro.h" +/* index.c: module index file shared functions for modprobe and depmod */ + void index_values_free(struct index_value *values) { while (values) { diff --git a/libkmod/libkmod-index.h b/libkmod/libkmod-index.h index 641d69b0..8dfac98b 100644 --- a/libkmod/libkmod-index.h +++ b/libkmod/libkmod-index.h @@ -1,20 +1,22 @@ - -/* index.c: module index file shared functions for modprobe and depmod - Copyright (C) 2008 Alan Jenkins . - - These programs are 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 these programs. If not, see . -*/ +/* + * libkmod - interface to kernel module operations + * + * Copyright (C) 2008 Alan Jenkins + * Copyright (C) 2011 ProFUSION embedded systems + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation version 2.1. + * + * This library 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 + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + */ #ifndef _LIBKMOD_INDEX_H #define _LIBKMOD_INDEX_H