diff options
-rw-r--r-- | CMakeLists.txt | 20 | ||||
-rw-r--r-- | include/avirt/avirt.h | 11 | ||||
-rw-r--r-- | src/avirt-config.c | 9 |
3 files changed, 11 insertions, 29 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 68e817a..ed62237 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,23 +1,3 @@ -#************************************************************************* -# -# FIBERDYNE CONFIDENTIAL -# __________________ -# -# [2010] - [2017] Fiberdyne Systems Pty Ltd -# All Rights Reserved. -# -# NOTICE: All information contained herein is, and remains -# the property of Fiberdyne Systems Pty Ltd and its suppliers, -# if any. The intellectual and technical concepts contained -# herein are proprietary to Fiberdyne Systems Pty Ltd -# and its suppliers and may be covered by U.S. and Foreign Patents, -# patents in process, and are protected by trade secret or copyright law. -# Dissemination of this information or reproduction of this material -# is strictly forbidden unless prior written permission is obtained -# from Fiberdyne Systems Pty Ltd. -# -#************************************************************************* - #------------------------------------------------------------------------------- # LIBAVIRT CONFIGURATION LIBRARY #------------------------------------------------------------------------------- diff --git a/include/avirt/avirt.h b/include/avirt/avirt.h index 782467d..b795df9 100644 --- a/include/avirt/avirt.h +++ b/include/avirt/avirt.h @@ -1,22 +1,23 @@ /* - * AVIRT User-space library + * Application interface library for the AVIRT driver * - * avirt.h - AVIRT User-space library header + * avirt.h - AVIRT Application interface library header * * Copyright (C) 2018 Fiberdyne Systems Pty Ltd + * Author: Mark Farrugia <mark.farrugia@fiberdyne.com.au> * - * This program is free software: you can redistribute it and/or modify + * This library 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, + * 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 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/>. + * along with this library. If not, see <http://www.gnu.org/licenses/>. */ #ifndef _AVIRT_H_ diff --git a/src/avirt-config.c b/src/avirt-config.c index 53af9db..5056da8 100644 --- a/src/avirt-config.c +++ b/src/avirt-config.c @@ -1,22 +1,23 @@ /* - * AVIRT User-space library + * Application interface library for the AVIRT driver * * avirt-config.c - Main AVIRT configuration via configfs * * Copyright (C) 2018 Fiberdyne Systems Pty Ltd + * Author: Mark Farrugia <mark.farrugia@fiberdyne.com.au> * - * This program is free software: you can redistribute it and/or modify + * This library 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, + * 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 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/>. + * along with this library. If not, see <http://www.gnu.org/licenses/>. */ #define _GNU_SOURCE |