Update version number. Update copyright.
git-svn-id: svn://svn.savannah.nongnu.org/avrdude/trunk/avrdude@118 81a1dc3b-b13d-400b-aceb-764788c761c2
This commit is contained in:
parent
ed534cc3ff
commit
21694fbbaf
2
avr.c
2
avr.c
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* Copyright 2001 Brian S. Dean <bsd@bsdhome.com>
|
||||
* Copyright (c) 2000, 2001, 2002 Brian S. Dean <bsd@bsdhome.com>
|
||||
* All Rights Reserved.
|
||||
*
|
||||
* Redistribution and use in source and binary forms, with or without
|
||||
|
|
2
avr.h
2
avr.h
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* Copyright 2001 Brian S. Dean <bsd@bsdhome.com>
|
||||
* Copyright (c) 2000, 2001, 2002 Brian S. Dean <bsd@bsdhome.com>
|
||||
* All Rights Reserved.
|
||||
*
|
||||
* Redistribution and use in source and binary forms, with or without
|
||||
|
|
2
config.c
2
config.c
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* Copyright 2001 Brian S. Dean <bsd@bsdhome.com>
|
||||
* Copyright (c) 2000, 2001, 2002 Brian S. Dean <bsd@bsdhome.com>
|
||||
* All Rights Reserved.
|
||||
*
|
||||
* Redistribution and use in source and binary forms, with or without
|
||||
|
|
2
config.h
2
config.h
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* Copyright 2001 Brian S. Dean <bsd@bsdhome.com>
|
||||
* Copyright (c) 2000, 2001, 2002 Brian S. Dean <bsd@bsdhome.com>
|
||||
* All Rights Reserved.
|
||||
*
|
||||
* Redistribution and use in source and binary forms, with or without
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* Copyright 2001 Brian S. Dean <bsd@bsdhome.com>
|
||||
* Copyright (c) 2000, 2001, 2002 Brian S. Dean <bsd@bsdhome.com>
|
||||
* All Rights Reserved.
|
||||
*
|
||||
* Redistribution and use in source and binary forms, with or without
|
||||
|
|
2
fileio.c
2
fileio.c
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* Copyright 2001 Brian S. Dean <bsd@bsdhome.com>
|
||||
* Copyright (c) 2000, 2001, 2002 Brian S. Dean <bsd@bsdhome.com>
|
||||
* All Rights Reserved.
|
||||
*
|
||||
* Redistribution and use in source and binary forms, with or without
|
||||
|
|
2
fileio.h
2
fileio.h
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* Copyright 2000 Brian S. Dean <bsd@bsdhome.com>
|
||||
* Copyright (c) 2000, 2001, 2002 Brian S. Dean <bsd@bsdhome.com>
|
||||
* All Rights Reserved.
|
||||
*
|
||||
* Redistribution and use in source and binary forms, with or without
|
||||
|
|
2
lexer.l
2
lexer.l
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* Copyright 2001 Brian S. Dean <bsd@bsdhome.com>
|
||||
* Copyright (c) 2000, 2001, 2002 Brian S. Dean <bsd@bsdhome.com>
|
||||
* All Rights Reserved.
|
||||
*
|
||||
* Redistribution and use in source and binary forms, with or without
|
||||
|
|
3
lists.c
3
lists.c
|
@ -1,5 +1,6 @@
|
|||
/*
|
||||
* Copyright 2001 Brian S. Dean <bsd@bsdhome.com>
|
||||
* Copyright (c) 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997,
|
||||
* 1998, 1999, 2000, 2001, 2002 Brian S. Dean <bsd@bsdhome.com>
|
||||
* All Rights Reserved.
|
||||
*
|
||||
* Redistribution and use in source and binary forms, with or without
|
||||
|
|
3
lists.h
3
lists.h
|
@ -1,5 +1,6 @@
|
|||
/*
|
||||
* Copyright 2001 Brian S. Dean <bsd@bsdhome.com>
|
||||
* Copyright (c) 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997,
|
||||
* 1998, 1999, 2000, 2001, 2002 Brian S. Dean <bsd@bsdhome.com>
|
||||
* All Rights Reserved.
|
||||
*
|
||||
* Redistribution and use in source and binary forms, with or without
|
||||
|
|
6
main.c
6
main.c
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* Copyright 2001 Brian S. Dean <bsd@bsdhome.com>
|
||||
* Copyright (c) 2000, 2001, 2002 Brian S. Dean <bsd@bsdhome.com>
|
||||
* All Rights Reserved.
|
||||
*
|
||||
* Redistribution and use in source and binary forms, with or without
|
||||
|
@ -115,7 +115,7 @@ char ** modules[N_MODULES] = {
|
|||
&term_version
|
||||
};
|
||||
|
||||
char * version = "2.0.1";
|
||||
char * version = "2.0.2";
|
||||
|
||||
char * main_version = "$Id$";
|
||||
|
||||
|
@ -690,7 +690,7 @@ int main(int argc, char * argv [])
|
|||
* Print out an identifying string so folks can tell what version
|
||||
* they are running
|
||||
*/
|
||||
fprintf(stderr, "\n%s: Copyright 2001 Brian Dean, bsd@bsdhome.com\n"
|
||||
fprintf(stderr, "\n%s: Copyright 2000-2002 Brian Dean, bsd@bsdhome.com\n"
|
||||
"%sVersion %s Revision Timestamp %s\n\n",
|
||||
progname, progbuf, version, timestamp);
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* Copyright 2000 Brian S. Dean <bsd@bsdhome.com>
|
||||
* Copyright (c) 2000, 2001, 2002 Brian S. Dean <bsd@bsdhome.com>
|
||||
* All Rights Reserved.
|
||||
*
|
||||
* Redistribution and use in source and binary forms, with or without
|
||||
|
|
2
ppi.c
2
ppi.c
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* Copyright 2001 Brian S. Dean <bsd@bsdhome.com>
|
||||
* Copyright 2000, 2001, 2002 Brian S. Dean <bsd@bsdhome.com>
|
||||
* All Rights Reserved.
|
||||
*
|
||||
* Redistribution and use in source and binary forms, with or without
|
||||
|
|
2
ppi.h
2
ppi.h
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* Copyright 2000 Brian S. Dean <bsd@bsdhome.com>
|
||||
* Copyright 2000, 2001, 2002 Brian S. Dean <bsd@bsdhome.com>
|
||||
* All Rights Reserved.
|
||||
*
|
||||
* Redistribution and use in source and binary forms, with or without
|
||||
|
|
2
term.c
2
term.c
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* Copyright 2001 Brian S. Dean <bsd@bsdhome.com>
|
||||
* Copyright (c) 2000, 2001, 2002 Brian S. Dean <bsd@bsdhome.com>
|
||||
* All Rights Reserved.
|
||||
*
|
||||
* Redistribution and use in source and binary forms, with or without
|
||||
|
|
Loading…
Reference in New Issue