From d62aa0afa7076c35f8bf98c31df7f27939a55bc9 Mon Sep 17 00:00:00 2001 From: Dave Hylands Date: Wed, 24 Dec 2008 03:49:13 +0000 Subject: [PATCH] Updated the copyright notice --- host/Split-Exif/Split-Exif.c | 14 ++++++++++++++ host/boothost/BootHost.cpp | 14 +++++++++----- host/boothost/Config.h | 14 +++++++++----- host/boothost/FileInfo.cpp | 14 ++++++++++++++ host/boothost/FileParser.cpp | 14 +++++++++----- host/boothost/FileParser.h | 14 +++++++++----- host/boothost/I2C_Adapter.cpp | 14 +++++++++----- host/boothost/I2C_Adapter.h | 14 +++++++++----- host/boothost/I2C_BootLoader.cpp | 17 ++++++----------- host/boothost/I2C_BootLoader.h | 17 ++++++----------- host/boothost/I2C_SerialDongle.cpp | 14 +++++++++----- host/boothost/I2C_SerialDongle.h | 14 +++++++++----- host/boothost/MegaLoad.cpp | 14 +++++++++----- host/boothost/ParserCallback.cpp | 14 +++++++++----- host/boothost/ParserCallback.h | 14 +++++++++----- host/boothost/ReadFile.cpp | 14 +++++++++----- host/boothost/ReadFile.h | 14 +++++++++----- host/boothost/SerialPort.cpp | 14 +++++++++----- host/boothost/SerialPort.h | 14 +++++++++----- host/boothost/State.h | 14 +++++++++----- host/boothost/StateAVReflash.cpp | 14 +++++++++----- host/boothost/StateAVReflash.h | 14 +++++++++----- host/boothost/StateMegaLoad.cpp | 14 +++++++++----- host/boothost/StateMegaLoad.h | 14 +++++++++----- host/boothost/StateSTK500.cpp | 14 +++++++++----- host/boothost/StateSTK500.h | 14 +++++++++----- host/boothost/Str.h | 14 +++++++++----- host/boothost/StrMaxCat.cpp | 14 +++++++++----- host/boothost/StrMaxCpy.cpp | 14 +++++++++----- host/boothost/StrPrintf.cpp | 14 +++++++++----- host/boothost/StrToken.cpp | 14 +++++++++----- host/boothost/StrToken.h | 14 +++++++++----- host/boothost/srec.cpp | 14 ++++++++++---- host/boothost/srec.h | 14 ++++++++++---- host/boothost/stk500-command.h | 14 ++++++++++++++ 35 files changed, 326 insertions(+), 170 deletions(-) diff --git a/host/Split-Exif/Split-Exif.c b/host/Split-Exif/Split-Exif.c index 707717f..e2b486f 100755 --- a/host/Split-Exif/Split-Exif.c +++ b/host/Split-Exif/Split-Exif.c @@ -1,3 +1,17 @@ +/**************************************************************************** +* +* Copyright (c) 2008 Dave Hylands +* +* 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. +* +* Alternatively, this software may be distributed under the terms of BSD +* license. +* +* See README and COPYING for more details. +* +****************************************************************************/ // // This utility was used to recover photos from a formatted CF card // from my Canon Rebel XTi. diff --git a/host/boothost/BootHost.cpp b/host/boothost/BootHost.cpp index ea105ad..503fa1f 100644 --- a/host/boothost/BootHost.cpp +++ b/host/boothost/BootHost.cpp @@ -1,11 +1,15 @@ /**************************************************************************** * -* Copyright (c) 2005 Dave Hylands -* All Rights Reserved +* Copyright (c) 2005 - 2008 Dave Hylands * -* Permission is granted to any individual or institution to use, copy, or -* redistribute this software so long as it is not sold for profit, and that -* this copyright notice is retained. +* 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. +* +* Alternatively, this software may be distributed under the terms of BSD +* license. +* +* See README and COPYING for more details. * ****************************************************************************/ /** diff --git a/host/boothost/Config.h b/host/boothost/Config.h index 011a925..b390f94 100644 --- a/host/boothost/Config.h +++ b/host/boothost/Config.h @@ -1,11 +1,15 @@ /**************************************************************************** * -* Copyright (c) 2005 Dave Hylands -* All Rights Reserved +* Copyright (c) 2005 - 2008 Dave Hylands * -* Permission is granted to any individual or institution to use, copy, or -* redistribute this software so long as it is not sold for profit, and that -* this copyright notice is retained. +* 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. +* +* Alternatively, this software may be distributed under the terms of BSD +* license. +* +* See README and COPYING for more details. * ****************************************************************************/ /** diff --git a/host/boothost/FileInfo.cpp b/host/boothost/FileInfo.cpp index 4edfe62..3880bfb 100644 --- a/host/boothost/FileInfo.cpp +++ b/host/boothost/FileInfo.cpp @@ -1,3 +1,17 @@ +/**************************************************************************** +* +* Copyright (c) 2008 Dave Hylands +* +* 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. +* +* Alternatively, this software may be distributed under the terms of BSD +* license. +* +* See README and COPYING for more details. +* +****************************************************************************/ #include #include "FileParser.h" diff --git a/host/boothost/FileParser.cpp b/host/boothost/FileParser.cpp index 2322d5d..28b389a 100644 --- a/host/boothost/FileParser.cpp +++ b/host/boothost/FileParser.cpp @@ -1,11 +1,15 @@ /**************************************************************************** * -* Copyright (c) 2005 Dave Hylands -* All Rights Reserved +* Copyright (c) 2005 - 2008 Dave Hylands * -* Permission is granted to any individual or institution to use, copy, or -* redistribute this software so long as it is not sold for profit, and that -* this copyright notice is retained. +* 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. +* +* Alternatively, this software may be distributed under the terms of BSD +* license. +* +* See README and COPYING for more details. * ****************************************************************************/ /** diff --git a/host/boothost/FileParser.h b/host/boothost/FileParser.h index fdf9d2c..55e8ac8 100644 --- a/host/boothost/FileParser.h +++ b/host/boothost/FileParser.h @@ -1,11 +1,15 @@ /**************************************************************************** * -* Copyright (c) 2005 Dave Hylands -* All Rights Reserved +* Copyright (c) 2005 - 2008 Dave Hylands * -* Permission is granted to any individual or institution to use, copy, or -* redistribute this software so long as it is not sold for profit, and that -* this copyright notice is retained. +* 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. +* +* Alternatively, this software may be distributed under the terms of BSD +* license. +* +* See README and COPYING for more details. * ****************************************************************************/ /** diff --git a/host/boothost/I2C_Adapter.cpp b/host/boothost/I2C_Adapter.cpp index d492f95..da3cf95 100644 --- a/host/boothost/I2C_Adapter.cpp +++ b/host/boothost/I2C_Adapter.cpp @@ -1,11 +1,15 @@ /**************************************************************************** * -* Copyright (c) 2005 Dave Hylands -* All Rights Reserved +* Copyright (c) 2005 - 2008 Dave Hylands * -* Permission is granted to any individual or institution to use, copy, or -* redistribute this software so long as it is not sold for profit, and that -* this copyright notice is retained. +* 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. +* +* Alternatively, this software may be distributed under the terms of BSD +* license. +* +* See README and COPYING for more details. * ****************************************************************************/ /** diff --git a/host/boothost/I2C_Adapter.h b/host/boothost/I2C_Adapter.h index 34fd9b3..899ea0f 100644 --- a/host/boothost/I2C_Adapter.h +++ b/host/boothost/I2C_Adapter.h @@ -1,11 +1,15 @@ /**************************************************************************** * -* Copyright (c) 2005 Dave Hylands -* All Rights Reserved +* Copyright (c) 2005 - 2008 Dave Hylands * -* Permission is granted to any individual or institution to use, copy, or -* redistribute this software so long as it is not sold for profit, and that -* this copyright notice is retained. +* 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. +* +* Alternatively, this software may be distributed under the terms of BSD +* license. +* +* See README and COPYING for more details. * ****************************************************************************/ /** diff --git a/host/boothost/I2C_BootLoader.cpp b/host/boothost/I2C_BootLoader.cpp index 0cf1858..8f287e0 100644 --- a/host/boothost/I2C_BootLoader.cpp +++ b/host/boothost/I2C_BootLoader.cpp @@ -1,20 +1,15 @@ /**************************************************************************** * -* Copyright (c) 2005 Dave Hylands +* Copyright (c) 2005 - 2008 Dave Hylands * * This program 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. +* 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. +* Alternatively, this software may be distributed under the terms of BSD +* license. * -* You should have received a copy of the GNU General Public License -* along with this program; if not, write to the Free Software -* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA +* See README and COPYING for more details. * ****************************************************************************/ /** diff --git a/host/boothost/I2C_BootLoader.h b/host/boothost/I2C_BootLoader.h index 8a2f0e1..ee6d0b9 100644 --- a/host/boothost/I2C_BootLoader.h +++ b/host/boothost/I2C_BootLoader.h @@ -1,20 +1,15 @@ /**************************************************************************** * -* Copyright (c) 2005 Dave Hylands +* Copyright (c) 2005 - 2008 Dave Hylands * * This program 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. +* 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. +* Alternatively, this software may be distributed under the terms of BSD +* license. * -* You should have received a copy of the GNU General Public License -* along with this program; if not, write to the Free Software -* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA +* See README and COPYING for more details. * ****************************************************************************/ /** diff --git a/host/boothost/I2C_SerialDongle.cpp b/host/boothost/I2C_SerialDongle.cpp index 9572ec5..3c5286c 100644 --- a/host/boothost/I2C_SerialDongle.cpp +++ b/host/boothost/I2C_SerialDongle.cpp @@ -1,11 +1,15 @@ /**************************************************************************** * -* Copyright (c) 2005 Dave Hylands -* All Rights Reserved +* Copyright (c) 2005 - 2008 Dave Hylands * -* Permission is granted to any individual or institution to use, copy, or -* redistribute this software so long as it is not sold for profit, and that -* this copyright notice is retained. +* 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. +* +* Alternatively, this software may be distributed under the terms of BSD +* license. +* +* See README and COPYING for more details. * ****************************************************************************/ /** diff --git a/host/boothost/I2C_SerialDongle.h b/host/boothost/I2C_SerialDongle.h index c4dff52..87210be 100644 --- a/host/boothost/I2C_SerialDongle.h +++ b/host/boothost/I2C_SerialDongle.h @@ -1,11 +1,15 @@ /**************************************************************************** * -* Copyright (c) 2005 Dave Hylands -* All Rights Reserved +* Copyright (c) 2005 - 2008 Dave Hylands * -* Permission is granted to any individual or institution to use, copy, or -* redistribute this software so long as it is not sold for profit, and that -* this copyright notice is retained. +* 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. +* +* Alternatively, this software may be distributed under the terms of BSD +* license. +* +* See README and COPYING for more details. * ****************************************************************************/ /** diff --git a/host/boothost/MegaLoad.cpp b/host/boothost/MegaLoad.cpp index c21295d..03a0f5e 100644 --- a/host/boothost/MegaLoad.cpp +++ b/host/boothost/MegaLoad.cpp @@ -1,11 +1,15 @@ /**************************************************************************** * -* Copyright (c) 2005 Dave Hylands -* All Rights Reserved +* Copyright (c) 2005 - 2008 Dave Hylands * -* Permission is granted to any individual or institution to use, copy, or -* redistribute this software so long as it is not sold for profit, and that -* this copyright notice is retained. +* 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. +* +* Alternatively, this software may be distributed under the terms of BSD +* license. +* +* See README and COPYING for more details. * ****************************************************************************/ /** diff --git a/host/boothost/ParserCallback.cpp b/host/boothost/ParserCallback.cpp index 703c668..141d544 100644 --- a/host/boothost/ParserCallback.cpp +++ b/host/boothost/ParserCallback.cpp @@ -1,11 +1,15 @@ /**************************************************************************** * -* Copyright (c) 2005 Dave Hylands -* All Rights Reserved +* Copyright (c) 2005 - 2008 Dave Hylands * -* Permission is granted to any individual or institution to use, copy, or -* redistribute this software so long as it is not sold for profit, and that -* this copyright notice is retained. +* 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. +* +* Alternatively, this software may be distributed under the terms of BSD +* license. +* +* See README and COPYING for more details. * ****************************************************************************/ /** diff --git a/host/boothost/ParserCallback.h b/host/boothost/ParserCallback.h index 49d5ea9..e7d7586 100644 --- a/host/boothost/ParserCallback.h +++ b/host/boothost/ParserCallback.h @@ -1,11 +1,15 @@ /**************************************************************************** * -* Copyright (c) 2005 Dave Hylands -* All Rights Reserved +* Copyright (c) 2005 - 2008 Dave Hylands * -* Permission is granted to any individual or institution to use, copy, or -* redistribute this software so long as it is not sold for profit, and that -* this copyright notice is retained. +* 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. +* +* Alternatively, this software may be distributed under the terms of BSD +* license. +* +* See README and COPYING for more details. * ****************************************************************************/ /** diff --git a/host/boothost/ReadFile.cpp b/host/boothost/ReadFile.cpp index f468d95..5a7015b 100644 --- a/host/boothost/ReadFile.cpp +++ b/host/boothost/ReadFile.cpp @@ -1,11 +1,15 @@ /**************************************************************************** * -* Copyright (c) 2005 Dave Hylands -* All Rights Reserved +* Copyright (c) 2005 - 2008 Dave Hylands * -* Permission is granted to any individual or institution to use, copy, or -* redistribute this software so long as it is not sold for profit, and that -* this copyright notice is retained. +* 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. +* +* Alternatively, this software may be distributed under the terms of BSD +* license. +* +* See README and COPYING for more details. * ****************************************************************************/ /** diff --git a/host/boothost/ReadFile.h b/host/boothost/ReadFile.h index 77c3260..81464ea 100644 --- a/host/boothost/ReadFile.h +++ b/host/boothost/ReadFile.h @@ -1,11 +1,15 @@ /**************************************************************************** * -* Copyright (c) 2005 Dave Hylands -* All Rights Reserved +* Copyright (c) 2005 - 2008 Dave Hylands * -* Permission is granted to any individual or institution to use, copy, or -* redistribute this software so long as it is not sold for profit, and that -* this copyright notice is retained. +* 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. +* +* Alternatively, this software may be distributed under the terms of BSD +* license. +* +* See README and COPYING for more details. * ****************************************************************************/ /** diff --git a/host/boothost/SerialPort.cpp b/host/boothost/SerialPort.cpp index 450525e..6eed6c9 100644 --- a/host/boothost/SerialPort.cpp +++ b/host/boothost/SerialPort.cpp @@ -1,11 +1,15 @@ /**************************************************************************** * -* Copyright (c) 2005 Dave Hylands -* All Rights Reserved +* Copyright (c) 2005 - 2008 Dave Hylands * -* Permission is granted to any individual or institution to use, copy, or -* redistribute this software so long as it is not sold for profit, and that -* this copyright notice is retained. +* 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. +* +* Alternatively, this software may be distributed under the terms of BSD +* license. +* +* See README and COPYING for more details. * ****************************************************************************/ /** diff --git a/host/boothost/SerialPort.h b/host/boothost/SerialPort.h index 3a42b17..69d2932 100644 --- a/host/boothost/SerialPort.h +++ b/host/boothost/SerialPort.h @@ -1,11 +1,15 @@ /**************************************************************************** * -* Copyright (c) 2005 Dave Hylands -* All Rights Reserved +* Copyright (c) 2005 - 2008 Dave Hylands * -* Permission is granted to any individual or institution to use, copy, or -* redistribute this software so long as it is not sold for profit, and that -* this copyright notice is retained. +* 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. +* +* Alternatively, this software may be distributed under the terms of BSD +* license. +* +* See README and COPYING for more details. * ****************************************************************************/ /** diff --git a/host/boothost/State.h b/host/boothost/State.h index 94ba1e5..8535213 100644 --- a/host/boothost/State.h +++ b/host/boothost/State.h @@ -1,11 +1,15 @@ /**************************************************************************** * -* Copyright (c) 2005 Dave Hylands -* All Rights Reserved +* Copyright (c) 2005 - 2008 Dave Hylands * -* Permission is granted to any individual or institution to use, copy, or -* redistribute this software so long as it is not sold for profit, and that -* this copyright notice is retained. +* 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. +* +* Alternatively, this software may be distributed under the terms of BSD +* license. +* +* See README and COPYING for more details. * ****************************************************************************/ /** diff --git a/host/boothost/StateAVReflash.cpp b/host/boothost/StateAVReflash.cpp index 456a74a..5a93407 100644 --- a/host/boothost/StateAVReflash.cpp +++ b/host/boothost/StateAVReflash.cpp @@ -1,11 +1,15 @@ /**************************************************************************** * -* Copyright (c) 2005 Dave Hylands -* All Rights Reserved +* Copyright (c) 2005 - 2008 Dave Hylands * -* Permission is granted to any individual or institution to use, copy, or -* redistribute this software so long as it is not sold for profit, and that -* this copyright notice is retained. +* 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. +* +* Alternatively, this software may be distributed under the terms of BSD +* license. +* +* See README and COPYING for more details. * ****************************************************************************/ /** diff --git a/host/boothost/StateAVReflash.h b/host/boothost/StateAVReflash.h index 3a42cff..f1e465d 100644 --- a/host/boothost/StateAVReflash.h +++ b/host/boothost/StateAVReflash.h @@ -1,11 +1,15 @@ /**************************************************************************** * -* Copyright (c) 2005 Dave Hylands -* All Rights Reserved +* Copyright (c) 2005 - 2008 Dave Hylands * -* Permission is granted to any individual or institution to use, copy, or -* redistribute this software so long as it is not sold for profit, and that -* this copyright notice is retained. +* 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. +* +* Alternatively, this software may be distributed under the terms of BSD +* license. +* +* See README and COPYING for more details. * ****************************************************************************/ /** diff --git a/host/boothost/StateMegaLoad.cpp b/host/boothost/StateMegaLoad.cpp index db69dea..665a374 100644 --- a/host/boothost/StateMegaLoad.cpp +++ b/host/boothost/StateMegaLoad.cpp @@ -1,11 +1,15 @@ /**************************************************************************** * -* Copyright (c) 2005 Dave Hylands -* All Rights Reserved +* Copyright (c) 2005 - 2008 Dave Hylands * -* Permission is granted to any individual or institution to use, copy, or -* redistribute this software so long as it is not sold for profit, and that -* this copyright notice is retained. +* 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. +* +* Alternatively, this software may be distributed under the terms of BSD +* license. +* +* See README and COPYING for more details. * ****************************************************************************/ /** diff --git a/host/boothost/StateMegaLoad.h b/host/boothost/StateMegaLoad.h index 4d3a396..10f4098 100644 --- a/host/boothost/StateMegaLoad.h +++ b/host/boothost/StateMegaLoad.h @@ -1,11 +1,15 @@ /**************************************************************************** * -* Copyright (c) 2005 Dave Hylands -* All Rights Reserved +* Copyright (c) 2005 - 2008 Dave Hylands * -* Permission is granted to any individual or institution to use, copy, or -* redistribute this software so long as it is not sold for profit, and that -* this copyright notice is retained. +* 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. +* +* Alternatively, this software may be distributed under the terms of BSD +* license. +* +* See README and COPYING for more details. * ****************************************************************************/ /** diff --git a/host/boothost/StateSTK500.cpp b/host/boothost/StateSTK500.cpp index c1d612b..ece599e 100644 --- a/host/boothost/StateSTK500.cpp +++ b/host/boothost/StateSTK500.cpp @@ -1,11 +1,15 @@ /**************************************************************************** * -* Copyright (c) 2005 Dave Hylands -* All Rights Reserved +* Copyright (c) 2005 - 2008 Dave Hylands * -* Permission is granted to any individual or institution to use, copy, or -* redistribute this software so long as it is not sold for profit, and that -* this copyright notice is retained. +* 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. +* +* Alternatively, this software may be distributed under the terms of BSD +* license. +* +* See README and COPYING for more details. * ****************************************************************************/ /** diff --git a/host/boothost/StateSTK500.h b/host/boothost/StateSTK500.h index a442d0a..5cb899f 100644 --- a/host/boothost/StateSTK500.h +++ b/host/boothost/StateSTK500.h @@ -1,11 +1,15 @@ /**************************************************************************** * -* Copyright (c) 2005 Dave Hylands -* All Rights Reserved +* Copyright (c) 2005 - 2008 Dave Hylands * -* Permission is granted to any individual or institution to use, copy, or -* redistribute this software so long as it is not sold for profit, and that -* this copyright notice is retained. +* 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. +* +* Alternatively, this software may be distributed under the terms of BSD +* license. +* +* See README and COPYING for more details. * ****************************************************************************/ /** diff --git a/host/boothost/Str.h b/host/boothost/Str.h index 240aa4b..2c41a11 100644 --- a/host/boothost/Str.h +++ b/host/boothost/Str.h @@ -1,11 +1,15 @@ /**************************************************************************** * -* Copyright (c) 2003 Dave Hylands -* All Rights Reserved +* Copyright (c) 2003 - 2008 Dave Hylands * -* Permission is granted to any individual or institution to use, copy, or -* redistribute this software so long as it is not sold for profit, and that -* this copyright notice is retained. +* 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. +* +* Alternatively, this software may be distributed under the terms of BSD +* license. +* +* See README and COPYING for more details. * ****************************************************************************/ /** diff --git a/host/boothost/StrMaxCat.cpp b/host/boothost/StrMaxCat.cpp index 782147a..e8fe4e3 100644 --- a/host/boothost/StrMaxCat.cpp +++ b/host/boothost/StrMaxCat.cpp @@ -1,11 +1,15 @@ /**************************************************************************** * -* Copyright (c) 2003 Dave Hylands -* All Rights Reserved +* Copyright (c) 2003 - 2008 Dave Hylands * -* Permission is granted to any individual or institution to use, copy, or -* redistribute this software so long as it is not sold for profit, and that -* this copyright notice is retained. +* 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. +* +* Alternatively, this software may be distributed under the terms of BSD +* license. +* +* See README and COPYING for more details. * ****************************************************************************/ /** diff --git a/host/boothost/StrMaxCpy.cpp b/host/boothost/StrMaxCpy.cpp index 5658a05..be9a0b4 100644 --- a/host/boothost/StrMaxCpy.cpp +++ b/host/boothost/StrMaxCpy.cpp @@ -1,11 +1,15 @@ /**************************************************************************** * -* Copyright (c) 2003 Dave Hylands -* All Rights Reserved +* Copyright (c) 2003 - 2008 Dave Hylands * -* Permission is granted to any individual or institution to use, copy, or -* redistribute this software so long as it is not sold for profit, and that -* this copyright notice is retained. +* 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. +* +* Alternatively, this software may be distributed under the terms of BSD +* license. +* +* See README and COPYING for more details. * ****************************************************************************/ /** diff --git a/host/boothost/StrPrintf.cpp b/host/boothost/StrPrintf.cpp index 1f18d92..9aa5781 100644 --- a/host/boothost/StrPrintf.cpp +++ b/host/boothost/StrPrintf.cpp @@ -1,11 +1,15 @@ /**************************************************************************** * -* Copyright (c) 2003 Dave Hylands -* All Rights Reserved +* Copyright (c) 2003 - 2008 Dave Hylands * -* Permission is granted to any individual or institution to use, copy, or -* redistribute this software so long as it is not sold for profit, and that -* this copyright notice is retained. +* 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. +* +* Alternatively, this software may be distributed under the terms of BSD +* license. +* +* See README and COPYING for more details. * ****************************************************************************/ /** diff --git a/host/boothost/StrToken.cpp b/host/boothost/StrToken.cpp index 4d7a1fd..1e0fef6 100644 --- a/host/boothost/StrToken.cpp +++ b/host/boothost/StrToken.cpp @@ -1,11 +1,15 @@ /**************************************************************************** * -* Copyright (c) 2003 Dave Hylands -* All Rights Reserved +* Copyright (c) 2003 - 2008 Dave Hylands * -* Permission is granted to any individual or institution to use, copy, or -* redistribute this software so long as it is not sold for profit, and that -* this copyright notice is retained. +* 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. +* +* Alternatively, this software may be distributed under the terms of BSD +* license. +* +* See README and COPYING for more details. * ****************************************************************************/ /** diff --git a/host/boothost/StrToken.h b/host/boothost/StrToken.h index fddc1f6..2319db9 100644 --- a/host/boothost/StrToken.h +++ b/host/boothost/StrToken.h @@ -1,11 +1,15 @@ /**************************************************************************** * -* Copyright (c) 2003 Dave Hylands -* All Rights Reserved +* Copyright (c) 2003 - 2008 Dave Hylands * -* Permission is granted to any individual or institution to use, copy, or -* redistribute this software so long as it is not sold for profit, and that -* this copyright notice is retained. +* 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. +* +* Alternatively, this software may be distributed under the terms of BSD +* license. +* +* See README and COPYING for more details. * ****************************************************************************/ /** diff --git a/host/boothost/srec.cpp b/host/boothost/srec.cpp index 623a039..e699356 100644 --- a/host/boothost/srec.cpp +++ b/host/boothost/srec.cpp @@ -1,9 +1,15 @@ -/***************************************************************************/ -/** +/**************************************************************************** +* +* Copyright (c) 2008 Dave Hylands +* +* 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. * -* @file srec.c pp +* Alternatively, this software may be distributed under the terms of BSD +* license. * -* @brief Implementation of the SRecordParser class. +* See README and COPYING for more details. * ****************************************************************************/ diff --git a/host/boothost/srec.h b/host/boothost/srec.h index 4409f9b..b3db139 100644 --- a/host/boothost/srec.h +++ b/host/boothost/srec.h @@ -1,9 +1,15 @@ -/***************************************************************************/ -/** +/**************************************************************************** +* +* Copyright (c) 2008 Dave Hylands +* +* 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. * -* @file srec.h +* Alternatively, this software may be distributed under the terms of BSD +* license. * -* @brief Class interface for SRecordParser +* See README and COPYING for more details. * ****************************************************************************/ /** diff --git a/host/boothost/stk500-command.h b/host/boothost/stk500-command.h index a8d6158..8d7294a 100644 --- a/host/boothost/stk500-command.h +++ b/host/boothost/stk500-command.h @@ -1,3 +1,17 @@ +/**************************************************************************** +* +* Copyright (c) 2008 Dave Hylands +* +* 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. +* +* Alternatively, this software may be distributed under the terms of BSD +* license. +* +* See README and COPYING for more details. +* +****************************************************************************/ //**** ATMEL AVR - A P P L I C A T I O N N O T E ************************ //* //* Title: AVR061 - STK500 Communication Protocol