summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Crispin <blogic@openwrt.org>2014-08-24 20:47:21 +0200
committerJohn Crispin <blogic@openwrt.org>2014-08-24 20:47:21 +0200
commitd16d0d2a487687ff38c3b7b5fc530d660b1d85cc (patch)
treed09845a76fb646d48b8cf37105a17e383182a18a
parentb82f187ab204a56f5ed7cd6d4de64bfdc07a1a74 (diff)
add gpl license
Signed-off-by: John Crispin <blogic@openwrt.org>
-rw-r--r--cli.c14
-rw-r--r--mbim-dev.c14
-rw-r--r--mbim-dev.h14
-rw-r--r--mbim-enum.c14
-rw-r--r--mbim-enums.h14
-rw-r--r--mbim-msg.c14
-rw-r--r--mbim-msg.h14
-rw-r--r--mbim-type.h14
-rw-r--r--mbim.h14
9 files changed, 126 insertions, 0 deletions
diff --git a/cli.c b/cli.c
index 328804d..1f043d5 100644
--- a/cli.c
+++ b/cli.c
@@ -1,3 +1,17 @@
+/*
+ * umbim
+ * Copyright (C) 2014 John Crispin <blogic@openwrt.org>
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License version 2
+ * as published by the Free Software Foundation
+ *
+ * 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.
+ */
+
#define __STDC_FORMAT_MACROS
#include <inttypes.h>
diff --git a/mbim-dev.c b/mbim-dev.c
index e5d90f9..4c129b0 100644
--- a/mbim-dev.c
+++ b/mbim-dev.c
@@ -1,3 +1,17 @@
+/*
+ * umbim
+ * Copyright (C) 2014 John Crispin <blogic@openwrt.org>
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License version 2
+ * as published by the Free Software Foundation
+ *
+ * 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.
+ */
+
#include <sys/types.h>
#include <sys/stat.h>
diff --git a/mbim-dev.h b/mbim-dev.h
index 3f345ce..1499630 100644
--- a/mbim-dev.h
+++ b/mbim-dev.h
@@ -1,3 +1,17 @@
+/*
+ * umbim
+ * Copyright (C) 2014 John Crispin <blogic@openwrt.org>
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License version 2
+ * as published by the Free Software Foundation
+ *
+ * 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.
+ */
+
#ifndef _MBIM_DEV_H__
#define _MBIM_DEV_H__
diff --git a/mbim-enum.c b/mbim-enum.c
index 473e68f..d08f039 100644
--- a/mbim-enum.c
+++ b/mbim-enum.c
@@ -1,3 +1,17 @@
+/*
+ * umbim
+ * Copyright (C) 2014 John Crispin <blogic@openwrt.org>
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License version 2
+ * as published by the Free Software Foundation
+ *
+ * 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.
+ */
+
#include <stdio.h>
#include "mbim.h"
diff --git a/mbim-enums.h b/mbim-enums.h
index 55f2fcb..2ecbcd7 100644
--- a/mbim-enums.h
+++ b/mbim-enums.h
@@ -1,3 +1,17 @@
+/*
+ * umbim
+ * Copyright (C) 2014 John Crispin <blogic@openwrt.org>
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License version 2
+ * as published by the Free Software Foundation
+ *
+ * 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.
+ */
+
#ifndef _MBIM_ENUMS_H__
#define _MBIM_ENUMS_H__
diff --git a/mbim-msg.c b/mbim-msg.c
index 88df1b6..a327c6a 100644
--- a/mbim-msg.c
+++ b/mbim-msg.c
@@ -1,3 +1,17 @@
+/*
+ * umbim
+ * Copyright (C) 2014 John Crispin <blogic@openwrt.org>
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License version 2
+ * as published by the Free Software Foundation
+ *
+ * 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.
+ */
+
#include <sys/types.h>
#include <sys/stat.h>
diff --git a/mbim-msg.h b/mbim-msg.h
index 1f84031..353d998 100644
--- a/mbim-msg.h
+++ b/mbim-msg.h
@@ -1,3 +1,17 @@
+/*
+ * umbim
+ * Copyright (C) 2014 John Crispin <blogic@openwrt.org>
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License version 2
+ * as published by the Free Software Foundation
+ *
+ * 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.
+ */
+
#ifndef _MBIM_MSG_H__
#define _MBIM_MSG_H__
diff --git a/mbim-type.h b/mbim-type.h
index d54d8a2..ddc36fa 100644
--- a/mbim-type.h
+++ b/mbim-type.h
@@ -1,3 +1,17 @@
+/*
+ * umbim
+ * Copyright (C) 2014 John Crispin <blogic@openwrt.org>
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License version 2
+ * as published by the Free Software Foundation
+ *
+ * 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.
+ */
+
#ifndef _MBIM_TYPE_H__
#define _MBIM_TYPE_H__
diff --git a/mbim.h b/mbim.h
index d76892a..6e7e8b4 100644
--- a/mbim.h
+++ b/mbim.h
@@ -1,3 +1,17 @@
+/*
+ * umbim
+ * Copyright (C) 2014 John Crispin <blogic@openwrt.org>
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License version 2
+ * as published by the Free Software Foundation
+ *
+ * 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.
+ */
+
#ifndef _MBIM_H__
#define _MBIM_H__