Re: [PATCH] tools: ffs-aio-example: add license information

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



On Tue, Jun 24 2014, Robert Baldyga <r.baldyga@xxxxxxxxxxx> wrote:
> Add missing information about license. Some people will probably want
> to reuse this code in their projects released under variety of
> licenses. For this reason this example is under Public Domain license
> to avoid GPL limitations.

No it isn't.  It's under MIT license.

> Signed-off-by: Robert Baldyga <r.baldyga@xxxxxxxxxxx>
> ---
>  .../multibuff/device_app/aio_multibuff.c           | 24 ++++++++++++++++++++++
>  .../usb/ffs-aio-example/multibuff/host_app/test.c  | 24 ++++++++++++++++++++++
>  .../ffs-aio-example/simple/device_app/aio_simple.c | 24 ++++++++++++++++++++++
>  tools/usb/ffs-aio-example/simple/host_app/test.c   | 24 ++++++++++++++++++++++
>  4 files changed, 96 insertions(+)
>
> diff --git a/tools/usb/ffs-aio-example/multibuff/device_app/aio_multibuff.c b/tools/usb/ffs-aio-example/multibuff/device_app/aio_multibuff.c
> index 1a7b92c..fde43e4 100644
> --- a/tools/usb/ffs-aio-example/multibuff/device_app/aio_multibuff.c
> +++ b/tools/usb/ffs-aio-example/multibuff/device_app/aio_multibuff.c
> @@ -1,3 +1,27 @@
> +/*
> + *  Copyright 2014 Robert Baldyga <r.baldyga@xxxxxxxxxxx>

Are you sure?  Not Samsung?

> + *
> + *  Permission is hereby granted, free of charge, to any person
> + *  obtaining a copy of this software and associated documentation files
> + *  (the "Software"), to deal in the Software without restriction,
> + *  including without limitation the rights to use, copy, modify, merge,
> + *  publish, distribute, sublicense, and/or sell copies of the Software,
> + *  and to permit persons to whom the Software is furnished to do so,
> + *  subject to the following conditions:
> + *
> + *  The above copyright notice and this permission notice shall be
> + *  included in all copies or substantial portions of the Software.
> + *
> + *  THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
> + *  EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
> + *  MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
> + *  NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
> + *  BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
> + *  ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
> + *  CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
> + *  SOFTWARE.
> + */
> +
>  #define _BSD_SOURCE /* for endian.h */
>  
>  #include <endian.h>
> diff --git a/tools/usb/ffs-aio-example/multibuff/host_app/test.c b/tools/usb/ffs-aio-example/multibuff/host_app/test.c
> index b0ad874..3ee61a1 100644
> --- a/tools/usb/ffs-aio-example/multibuff/host_app/test.c
> +++ b/tools/usb/ffs-aio-example/multibuff/host_app/test.c
> @@ -1,3 +1,27 @@
> +/*
> + *  Copyright 2014 Robert Baldyga <r.baldyga@xxxxxxxxxxx>
> + *
> + *  Permission is hereby granted, free of charge, to any person
> + *  obtaining a copy of this software and associated documentation files
> + *  (the "Software"), to deal in the Software without restriction,
> + *  including without limitation the rights to use, copy, modify, merge,
> + *  publish, distribute, sublicense, and/or sell copies of the Software,
> + *  and to permit persons to whom the Software is furnished to do so,
> + *  subject to the following conditions:
> + *
> + *  The above copyright notice and this permission notice shall be
> + *  included in all copies or substantial portions of the Software.
> + *
> + *  THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
> + *  EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
> + *  MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
> + *  NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
> + *  BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
> + *  ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
> + *  CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
> + *  SOFTWARE.
> + */
> +
>  #include <libusb.h>
>  #include <stdio.h>
>  #include <string.h>
> diff --git a/tools/usb/ffs-aio-example/simple/device_app/aio_simple.c b/tools/usb/ffs-aio-example/simple/device_app/aio_simple.c
> index 068c797..f33dfea 100644
> --- a/tools/usb/ffs-aio-example/simple/device_app/aio_simple.c
> +++ b/tools/usb/ffs-aio-example/simple/device_app/aio_simple.c
> @@ -1,3 +1,27 @@
> +/*
> + *  Copyright 2014 Robert Baldyga <r.baldyga@xxxxxxxxxxx>
> + *
> + *  Permission is hereby granted, free of charge, to any person
> + *  obtaining a copy of this software and associated documentation files
> + *  (the "Software"), to deal in the Software without restriction,
> + *  including without limitation the rights to use, copy, modify, merge,
> + *  publish, distribute, sublicense, and/or sell copies of the Software,
> + *  and to permit persons to whom the Software is furnished to do so,
> + *  subject to the following conditions:
> + *
> + *  The above copyright notice and this permission notice shall be
> + *  included in all copies or substantial portions of the Software.
> + *
> + *  THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
> + *  EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
> + *  MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
> + *  NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
> + *  BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
> + *  ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
> + *  CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
> + *  SOFTWARE.
> + */
> +
>  #define _BSD_SOURCE /* for endian.h */
>  
>  #include <endian.h>
> diff --git a/tools/usb/ffs-aio-example/simple/host_app/test.c b/tools/usb/ffs-aio-example/simple/host_app/test.c
> index 64b6a57..ca1dbb7 100644
> --- a/tools/usb/ffs-aio-example/simple/host_app/test.c
> +++ b/tools/usb/ffs-aio-example/simple/host_app/test.c
> @@ -1,3 +1,27 @@
> +/*
> + *  Copyright 2014 Robert Baldyga <r.baldyga@xxxxxxxxxxx>
> + *
> + *  Permission is hereby granted, free of charge, to any person
> + *  obtaining a copy of this software and associated documentation files
> + *  (the "Software"), to deal in the Software without restriction,
> + *  including without limitation the rights to use, copy, modify, merge,
> + *  publish, distribute, sublicense, and/or sell copies of the Software,
> + *  and to permit persons to whom the Software is furnished to do so,
> + *  subject to the following conditions:
> + *
> + *  The above copyright notice and this permission notice shall be
> + *  included in all copies or substantial portions of the Software.
> + *
> + *  THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
> + *  EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
> + *  MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
> + *  NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
> + *  BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
> + *  ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
> + *  CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
> + *  SOFTWARE.
> + */
> +
>  #include <libusb.h>
>  #include <stdio.h>
>  #include <string.h>
> -- 
> 1.9.1
>

-- 
Best regards,                                         _     _
.o. | Liege of Serenely Enlightened Majesty of      o' \,=./ `o
..o | Computer Science,  Michał “mina86” Nazarewicz    (o o)
ooo +--<mpn@xxxxxxxxxx>--<xmpp:mina86@xxxxxxxxxx>--ooO--(_)--Ooo--
--
To unsubscribe from this list: send the line "unsubscribe linux-usb" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at  http://vger.kernel.org/majordomo-info.html




[Index of Archives]     [Linux Media]     [Linux Input]     [Linux Audio Users]     [Yosemite News]     [Linux Kernel]     [Linux SCSI]     [Old Linux USB Devel Archive]

  Powered by Linux