aboutsummaryrefslogtreecommitdiffstats
path: root/examples
diff options
context:
space:
mode:
authorChristian Starkjohann <cs+github@obdev.at>2008-11-07 15:07:40 +0000
committerChristian Starkjohann <cs+github@obdev.at>2008-11-07 15:07:40 +0000
commit390cb5a06eb1ced39f02d9d9641ed801175b6d6d (patch)
treed0a375e1ca0e59f00648a168a75192e5c629dcc9 /examples
parent81649b82b7e6e9954b634f0443e9640163f22912 (diff)
downloadv-usb-390cb5a06eb1ced39f02d9d9641ed801175b6d6d.tar.gz
v-usb-390cb5a06eb1ced39f02d9d9641ed801175b6d6d.tar.bz2
v-usb-390cb5a06eb1ced39f02d9d9641ed801175b6d6d.zip
- allow distribution under GPLv3 as well
Diffstat (limited to 'examples')
-rw-r--r--examples/custom-class/commandline/set-led.c2
-rw-r--r--examples/custom-class/firmware/Makefile2
-rw-r--r--examples/custom-class/firmware/main.c2
-rw-r--r--examples/custom-class/firmware/requests.h2
-rwxr-xr-xexamples/custom-class/make-files.sh2
-rw-r--r--examples/drivertest/commandline/runtest.c2
-rw-r--r--examples/drivertest/firmware/Makefile2
-rw-r--r--examples/drivertest/firmware/main.c2
-rw-r--r--examples/drivertest/firmware/requests.h2
-rw-r--r--examples/drivertest/firmware/usbconfig.h2
-rwxr-xr-xexamples/drivertest/make-files.sh2
-rw-r--r--examples/hid-custom-rq/firmware/main.c2
-rw-r--r--examples/hid-custom-rq/firmware/requests.h2
-rwxr-xr-xexamples/hid-custom-rq/make-files.sh2
-rw-r--r--examples/hid-data/commandline/Makefile2
-rw-r--r--examples/hid-data/commandline/Makefile.windows2
-rw-r--r--examples/hid-data/commandline/hidtool.c2
-rw-r--r--examples/hid-data/firmware/main.c2
-rwxr-xr-xexamples/hid-data/make-files.sh2
-rw-r--r--examples/hid-mouse/firmware/main.c2
-rwxr-xr-xexamples/hid-mouse/make-files.sh2
-rw-r--r--examples/usbtool/Makefile2
-rw-r--r--examples/usbtool/Makefile.windows2
-rwxr-xr-xexamples/usbtool/make-files.sh2
-rw-r--r--examples/usbtool/usbtool.c2
25 files changed, 25 insertions, 25 deletions
diff --git a/examples/custom-class/commandline/set-led.c b/examples/custom-class/commandline/set-led.c
index 75e77e4..3b5be22 100644
--- a/examples/custom-class/commandline/set-led.c
+++ b/examples/custom-class/commandline/set-led.c
@@ -4,7 +4,7 @@
* Creation Date: 2008-04-10
* Tabsize: 4
* Copyright: (c) 2008 by OBJECTIVE DEVELOPMENT Software GmbH
- * License: GNU GPL v2 (see License.txt) or proprietary (CommercialLicense.txt)
+ * License: GNU GPL v2 (see License.txt), GNU GPL v3 or proprietary (CommercialLicense.txt)
* This Revision: $Id$
*/
diff --git a/examples/custom-class/firmware/Makefile b/examples/custom-class/firmware/Makefile
index 51474ba..8896df5 100644
--- a/examples/custom-class/firmware/Makefile
+++ b/examples/custom-class/firmware/Makefile
@@ -4,7 +4,7 @@
# Creation Date: 2008-04-07
# Tabsize: 4
# Copyright: (c) 2008 by OBJECTIVE DEVELOPMENT Software GmbH
-# License: GNU GPL v2 (see License.txt) or proprietary (CommercialLicense.txt)
+# License: GNU GPL v2 (see License.txt), GNU GPL v3 or proprietary (CommercialLicense.txt)
# This Revision: $Id$
DEVICE = atmega168
diff --git a/examples/custom-class/firmware/main.c b/examples/custom-class/firmware/main.c
index e12ef00..4e59082 100644
--- a/examples/custom-class/firmware/main.c
+++ b/examples/custom-class/firmware/main.c
@@ -4,7 +4,7 @@
* Creation Date: 2008-04-09
* Tabsize: 4
* Copyright: (c) 2008 by OBJECTIVE DEVELOPMENT Software GmbH
- * License: GNU GPL v2 (see License.txt) or proprietary (CommercialLicense.txt)
+ * License: GNU GPL v2 (see License.txt), GNU GPL v3 or proprietary (CommercialLicense.txt)
* This Revision: $Id$
*/
diff --git a/examples/custom-class/firmware/requests.h b/examples/custom-class/firmware/requests.h
index 2e7fac3..075c080 100644
--- a/examples/custom-class/firmware/requests.h
+++ b/examples/custom-class/firmware/requests.h
@@ -4,7 +4,7 @@
* Creation Date: 2008-04-09
* Tabsize: 4
* Copyright: (c) 2008 by OBJECTIVE DEVELOPMENT Software GmbH
- * License: GNU GPL v2 (see License.txt) or proprietary (CommercialLicense.txt)
+ * License: GNU GPL v2 (see License.txt), GNU GPL v3 or proprietary (CommercialLicense.txt)
* This Revision: $Id$
*/
diff --git a/examples/custom-class/make-files.sh b/examples/custom-class/make-files.sh
index f6670fa..6c93372 100755
--- a/examples/custom-class/make-files.sh
+++ b/examples/custom-class/make-files.sh
@@ -3,7 +3,7 @@
# Creation Date: 2008-04-17
# Tabsize: 4
# Copyright: (c) 2008 by OBJECTIVE DEVELOPMENT Software GmbH
-# License: GNU GPL v2 (see License.txt) or proprietary (CommercialLicense.txt)
+# License: GNU GPL v2 (see License.txt), GNU GPL v3 or proprietary (CommercialLicense.txt)
# This Revision: $Id$
diff --git a/examples/drivertest/commandline/runtest.c b/examples/drivertest/commandline/runtest.c
index c15bb42..3eb4c22 100644
--- a/examples/drivertest/commandline/runtest.c
+++ b/examples/drivertest/commandline/runtest.c
@@ -3,7 +3,7 @@
* Creation Date: 2008-04-10
* Tabsize: 4
* Copyright: (c) 2008 by OBJECTIVE DEVELOPMENT Software GmbH
- * License: GNU GPL v2 (see License.txt) or proprietary (CommercialLicense.txt)
+ * License: GNU GPL v2 (see License.txt), GNU GPL v3 or proprietary (CommercialLicense.txt)
* This Revision: $Id$
*/
diff --git a/examples/drivertest/firmware/Makefile b/examples/drivertest/firmware/Makefile
index a230fd6..a4f9baa 100644
--- a/examples/drivertest/firmware/Makefile
+++ b/examples/drivertest/firmware/Makefile
@@ -4,7 +4,7 @@
# Creation Date: 2008-04-07
# Tabsize: 4
# Copyright: (c) 2008 by OBJECTIVE DEVELOPMENT Software GmbH
-# License: GNU GPL v2 (see License.txt) or proprietary (CommercialLicense.txt)
+# License: GNU GPL v2 (see License.txt), GNU GPL v3 or proprietary (CommercialLicense.txt)
# This Revision: $Id$
DEVICE = atmega8
diff --git a/examples/drivertest/firmware/main.c b/examples/drivertest/firmware/main.c
index b96b1f1..2bcbc8f 100644
--- a/examples/drivertest/firmware/main.c
+++ b/examples/drivertest/firmware/main.c
@@ -4,7 +4,7 @@
* Creation Date: 2008-04-07
* Tabsize: 4
* Copyright: (c) 2008 by OBJECTIVE DEVELOPMENT Software GmbH
- * License: GNU GPL v2 (see License.txt) or proprietary (CommercialLicense.txt)
+ * License: GNU GPL v2 (see License.txt), GNU GPL v3 or proprietary (CommercialLicense.txt)
* This Revision: $Id$
*/
diff --git a/examples/drivertest/firmware/requests.h b/examples/drivertest/firmware/requests.h
index 262cfb1..2029c30 100644
--- a/examples/drivertest/firmware/requests.h
+++ b/examples/drivertest/firmware/requests.h
@@ -4,7 +4,7 @@
* Creation Date: 2008-04-09
* Tabsize: 4
* Copyright: (c) 2008 by OBJECTIVE DEVELOPMENT Software GmbH
- * License: GNU GPL v2 (see License.txt) or proprietary (CommercialLicense.txt)
+ * License: GNU GPL v2 (see License.txt), GNU GPL v3 or proprietary (CommercialLicense.txt)
* This Revision: $Id$
*/
diff --git a/examples/drivertest/firmware/usbconfig.h b/examples/drivertest/firmware/usbconfig.h
index 8a389ab..1198b46 100644
--- a/examples/drivertest/firmware/usbconfig.h
+++ b/examples/drivertest/firmware/usbconfig.h
@@ -4,7 +4,7 @@
* Creation Date: 2005-04-01
* Tabsize: 4
* Copyright: (c) 2005 by OBJECTIVE DEVELOPMENT Software GmbH
- * License: GNU GPL v2 (see License.txt) or proprietary (CommercialLicense.txt)
+ * License: GNU GPL v2 (see License.txt), GNU GPL v3 or proprietary (CommercialLicense.txt)
* This Revision: $Id$
*/
diff --git a/examples/drivertest/make-files.sh b/examples/drivertest/make-files.sh
index 3941d33..8f39af8 100755
--- a/examples/drivertest/make-files.sh
+++ b/examples/drivertest/make-files.sh
@@ -3,7 +3,7 @@
# Creation Date: 2008-04-17
# Tabsize: 4
# Copyright: (c) 2008 by OBJECTIVE DEVELOPMENT Software GmbH
-# License: GNU GPL v2 (see License.txt) or proprietary (CommercialLicense.txt)
+# License: GNU GPL v2 (see License.txt), GNU GPL v3 or proprietary (CommercialLicense.txt)
# This Revision: $Id$
diff --git a/examples/hid-custom-rq/firmware/main.c b/examples/hid-custom-rq/firmware/main.c
index e813093..f7a4d0b 100644
--- a/examples/hid-custom-rq/firmware/main.c
+++ b/examples/hid-custom-rq/firmware/main.c
@@ -4,7 +4,7 @@
* Creation Date: 2008-04-07
* Tabsize: 4
* Copyright: (c) 2008 by OBJECTIVE DEVELOPMENT Software GmbH
- * License: GNU GPL v2 (see License.txt) or proprietary (CommercialLicense.txt)
+ * License: GNU GPL v2 (see License.txt), GNU GPL v3 or proprietary (CommercialLicense.txt)
* This Revision: $Id$
*/
diff --git a/examples/hid-custom-rq/firmware/requests.h b/examples/hid-custom-rq/firmware/requests.h
index b6a3c2b..3961969 100644
--- a/examples/hid-custom-rq/firmware/requests.h
+++ b/examples/hid-custom-rq/firmware/requests.h
@@ -4,7 +4,7 @@
* Creation Date: 2008-04-09
* Tabsize: 4
* Copyright: (c) 2008 by OBJECTIVE DEVELOPMENT Software GmbH
- * License: GNU GPL v2 (see License.txt) or proprietary (CommercialLicense.txt)
+ * License: GNU GPL v2 (see License.txt), GNU GPL v3 or proprietary (CommercialLicense.txt)
* This Revision: $Id$
*/
diff --git a/examples/hid-custom-rq/make-files.sh b/examples/hid-custom-rq/make-files.sh
index b52dbf6..8e4feb6 100755
--- a/examples/hid-custom-rq/make-files.sh
+++ b/examples/hid-custom-rq/make-files.sh
@@ -3,7 +3,7 @@
# Creation Date: 2008-04-17
# Tabsize: 4
# Copyright: (c) 2008 by OBJECTIVE DEVELOPMENT Software GmbH
-# License: GNU GPL v2 (see License.txt) or proprietary (CommercialLicense.txt)
+# License: GNU GPL v2 (see License.txt), GNU GPL v3 or proprietary (CommercialLicense.txt)
# This Revision: $Id$
diff --git a/examples/hid-data/commandline/Makefile b/examples/hid-data/commandline/Makefile
index 97c6b06..5a6d860 100644
--- a/examples/hid-data/commandline/Makefile
+++ b/examples/hid-data/commandline/Makefile
@@ -4,7 +4,7 @@
# Creation Date: 2008-04-11
# Tabsize: 4
# Copyright: (c) 2008 by OBJECTIVE DEVELOPMENT Software GmbH
-# License: GNU GPL v2 (see License.txt) or proprietary (CommercialLicense.txt)
+# License: GNU GPL v2 (see License.txt), GNU GPL v3 or proprietary (CommercialLicense.txt)
# This Revision: $Id$
# Please read the definitions below and edit them as appropriate for your
diff --git a/examples/hid-data/commandline/Makefile.windows b/examples/hid-data/commandline/Makefile.windows
index f0e6cfa..382a153 100644
--- a/examples/hid-data/commandline/Makefile.windows
+++ b/examples/hid-data/commandline/Makefile.windows
@@ -4,7 +4,7 @@
# Creation Date: 2008-04-11
# Tabsize: 4
# Copyright: (c) 2008 by OBJECTIVE DEVELOPMENT Software GmbH
-# License: GNU GPL v2 (see License.txt) or proprietary (CommercialLicense.txt)
+# License: GNU GPL v2 (see License.txt), GNU GPL v3 or proprietary (CommercialLicense.txt)
# This Revision: $Id$
# You may use this file with
diff --git a/examples/hid-data/commandline/hidtool.c b/examples/hid-data/commandline/hidtool.c
index d03bca8..923482a 100644
--- a/examples/hid-data/commandline/hidtool.c
+++ b/examples/hid-data/commandline/hidtool.c
@@ -4,7 +4,7 @@
* Creation Date: 2008-04-11
* Tabsize: 4
* Copyright: (c) 2008 by OBJECTIVE DEVELOPMENT Software GmbH
- * License: GNU GPL v2 (see License.txt) or proprietary (CommercialLicense.txt)
+ * License: GNU GPL v2 (see License.txt), GNU GPL v3 or proprietary (CommercialLicense.txt)
* This Revision: $Id$
*/
diff --git a/examples/hid-data/firmware/main.c b/examples/hid-data/firmware/main.c
index e9b2d44..0488414 100644
--- a/examples/hid-data/firmware/main.c
+++ b/examples/hid-data/firmware/main.c
@@ -4,7 +4,7 @@
* Creation Date: 2008-04-11
* Tabsize: 4
* Copyright: (c) 2008 by OBJECTIVE DEVELOPMENT Software GmbH
- * License: GNU GPL v2 (see License.txt) or proprietary (CommercialLicense.txt)
+ * License: GNU GPL v2 (see License.txt), GNU GPL v3 or proprietary (CommercialLicense.txt)
* This Revision: $Id$
*/
diff --git a/examples/hid-data/make-files.sh b/examples/hid-data/make-files.sh
index a8d524c..02d8dad 100755
--- a/examples/hid-data/make-files.sh
+++ b/examples/hid-data/make-files.sh
@@ -3,7 +3,7 @@
# Creation Date: 2008-04-17
# Tabsize: 4
# Copyright: (c) 2008 by OBJECTIVE DEVELOPMENT Software GmbH
-# License: GNU GPL v2 (see License.txt) or proprietary (CommercialLicense.txt)
+# License: GNU GPL v2 (see License.txt), GNU GPL v3 or proprietary (CommercialLicense.txt)
# This Revision: $Id$
diff --git a/examples/hid-mouse/firmware/main.c b/examples/hid-mouse/firmware/main.c
index 7667fe7..32a81d4 100644
--- a/examples/hid-mouse/firmware/main.c
+++ b/examples/hid-mouse/firmware/main.c
@@ -4,7 +4,7 @@
* Creation Date: 2008-04-07
* Tabsize: 4
* Copyright: (c) 2008 by OBJECTIVE DEVELOPMENT Software GmbH
- * License: GNU GPL v2 (see License.txt) or proprietary (CommercialLicense.txt)
+ * License: GNU GPL v2 (see License.txt), GNU GPL v3 or proprietary (CommercialLicense.txt)
* This Revision: $Id$
*/
diff --git a/examples/hid-mouse/make-files.sh b/examples/hid-mouse/make-files.sh
index 557350b..1b229f4 100755
--- a/examples/hid-mouse/make-files.sh
+++ b/examples/hid-mouse/make-files.sh
@@ -3,7 +3,7 @@
# Creation Date: 2008-04-17
# Tabsize: 4
# Copyright: (c) 2008 by OBJECTIVE DEVELOPMENT Software GmbH
-# License: GNU GPL v2 (see License.txt) or proprietary (CommercialLicense.txt)
+# License: GNU GPL v2 (see License.txt), GNU GPL v3 or proprietary (CommercialLicense.txt)
# This Revision: $Id$
diff --git a/examples/usbtool/Makefile b/examples/usbtool/Makefile
index d809e01..fea2878 100644
--- a/examples/usbtool/Makefile
+++ b/examples/usbtool/Makefile
@@ -4,7 +4,7 @@
# Creation Date: 2008-04-06
# Tabsize: 4
# Copyright: (c) 2008 by OBJECTIVE DEVELOPMENT Software GmbH
-# License: GNU GPL v2 (see License.txt) or proprietary (CommercialLicense.txt)
+# License: GNU GPL v2 (see License.txt), GNU GPL v3 or proprietary (CommercialLicense.txt)
# This Revision: $Id$
diff --git a/examples/usbtool/Makefile.windows b/examples/usbtool/Makefile.windows
index 1c4aaa1..fa910fc 100644
--- a/examples/usbtool/Makefile.windows
+++ b/examples/usbtool/Makefile.windows
@@ -4,7 +4,7 @@
# Creation Date: 2008-04-06
# Tabsize: 4
# Copyright: (c) 2008 by OBJECTIVE DEVELOPMENT Software GmbH
-# License: GNU GPL v2 (see License.txt) or proprietary (CommercialLicense.txt)
+# License: GNU GPL v2 (see License.txt), GNU GPL v3 or proprietary (CommercialLicense.txt)
# This Revision: $Id$
# You may use this file with
diff --git a/examples/usbtool/make-files.sh b/examples/usbtool/make-files.sh
index 0ba183e..c45f5b2 100755
--- a/examples/usbtool/make-files.sh
+++ b/examples/usbtool/make-files.sh
@@ -3,7 +3,7 @@
# Creation Date: 2008-04-17
# Tabsize: 4
# Copyright: (c) 2008 by OBJECTIVE DEVELOPMENT Software GmbH
-# License: GNU GPL v2 (see License.txt) or proprietary (CommercialLicense.txt)
+# License: GNU GPL v2 (see License.txt), GNU GPL v3 or proprietary (CommercialLicense.txt)
# This Revision: $Id$
diff --git a/examples/usbtool/usbtool.c b/examples/usbtool/usbtool.c
index fe29a06..173f491 100644
--- a/examples/usbtool/usbtool.c
+++ b/examples/usbtool/usbtool.c
@@ -4,7 +4,7 @@
* Creation Date: 2008-04-06
* Tabsize: 4
* Copyright: (c) 2008 by OBJECTIVE DEVELOPMENT Software GmbH
- * License: GNU GPL v2 (see License.txt) or proprietary (CommercialLicense.txt)
+ * License: GNU GPL v2 (see License.txt), GNU GPL v3 or proprietary (CommercialLicense.txt)
* This Revision: $Id$
*/