aboutsummaryrefslogtreecommitdiff
path: root/src/helper
diff options
context:
space:
mode:
authoroharboe <oharboe@b42882b7-edfa-0310-969c-e2dbd0fdcd60>2008-07-25 06:54:17 +0000
committeroharboe <oharboe@b42882b7-edfa-0310-969c-e2dbd0fdcd60>2008-07-25 06:54:17 +0000
commit526fe3d83e118d87af34353a7140c02f3f1a3c19 (patch)
tree5fae130c4ca871a7b59c82dcbea5f31a56bd59d9 /src/helper
parent1ac48e7500b88a82cd7e455c74dae4028bb03e11 (diff)
downloadriscv-openocd-526fe3d83e118d87af34353a7140c02f3f1a3c19.zip
riscv-openocd-526fe3d83e118d87af34353a7140c02f3f1a3c19.tar.gz
riscv-openocd-526fe3d83e118d87af34353a7140c02f3f1a3c19.tar.bz2
added yours sincerely for files where I feel that I've made non-trivial contributions.
git-svn-id: svn://svn.berlios.de/openocd/trunk@872 b42882b7-edfa-0310-969c-e2dbd0fdcd60
Diffstat (limited to 'src/helper')
-rw-r--r--src/helper/binarybuffer.c3
-rw-r--r--src/helper/binarybuffer.h3
-rw-r--r--src/helper/command.c3
-rw-r--r--src/helper/command.h3
-rw-r--r--src/helper/configuration.c3
-rw-r--r--src/helper/configuration.h3
-rw-r--r--src/helper/fileio.c3
-rw-r--r--src/helper/fileio.h3
-rw-r--r--src/helper/log.c3
-rw-r--r--src/helper/log.h3
-rw-r--r--src/helper/options.c3
-rw-r--r--src/helper/replacements.c3
-rw-r--r--src/helper/replacements.h3
-rw-r--r--src/helper/time_support.c3
-rw-r--r--src/helper/time_support.h3
-rw-r--r--src/helper/types.h3
16 files changed, 48 insertions, 0 deletions
diff --git a/src/helper/binarybuffer.c b/src/helper/binarybuffer.c
index 12a711f..a3b1cbd 100644
--- a/src/helper/binarybuffer.c
+++ b/src/helper/binarybuffer.c
@@ -2,6 +2,9 @@
* Copyright (C) 2004, 2005 by Dominic Rath *
* Dominic.Rath@gmx.de *
* *
+ * Copyright (C) 2007,2008 Øyvind Harboe *
+ * oyvind.harboe@zylin.com *
+ * *
* 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 *
diff --git a/src/helper/binarybuffer.h b/src/helper/binarybuffer.h
index 5e97cd0..0c27be2 100644
--- a/src/helper/binarybuffer.h
+++ b/src/helper/binarybuffer.h
@@ -2,6 +2,9 @@
* Copyright (C) 2004, 2005 by Dominic Rath *
* Dominic.Rath@gmx.de *
* *
+ * Copyright (C) 2007,2008 Øyvind Harboe *
+ * oyvind.harboe@zylin.com *
+ * *
* 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 *
diff --git a/src/helper/command.c b/src/helper/command.c
index d31bb6e..1198622 100644
--- a/src/helper/command.c
+++ b/src/helper/command.c
@@ -2,6 +2,9 @@
* Copyright (C) 2005 by Dominic Rath *
* Dominic.Rath@gmx.de *
* *
+ * Copyright (C) 2007,2008 Øyvind Harboe *
+ * oyvind.harboe@zylin.com *
+ * *
* part of this file is taken from libcli (libcli.sourceforge.net) *
* Copyright (C) David Parrish (david@dparrish.com) *
* *
diff --git a/src/helper/command.h b/src/helper/command.h
index c8807dd..d784af7 100644
--- a/src/helper/command.h
+++ b/src/helper/command.h
@@ -2,6 +2,9 @@
* Copyright (C) 2005 by Dominic Rath *
* Dominic.Rath@gmx.de *
* *
+ * Copyright (C) 2007,2008 Øyvind Harboe *
+ * oyvind.harboe@zylin.com *
+ * *
* 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 *
diff --git a/src/helper/configuration.c b/src/helper/configuration.c
index 6c2bf47..3889bfc 100644
--- a/src/helper/configuration.c
+++ b/src/helper/configuration.c
@@ -2,6 +2,9 @@
* Copyright (C) 2004, 2005 by Dominic Rath *
* Dominic.Rath@gmx.de *
* *
+ * Copyright (C) 2007,2008 Øyvind Harboe *
+ * oyvind.harboe@zylin.com *
+ * *
* 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 *
diff --git a/src/helper/configuration.h b/src/helper/configuration.h
index e29ef73..b5cedd5 100644
--- a/src/helper/configuration.h
+++ b/src/helper/configuration.h
@@ -2,6 +2,9 @@
* Copyright (C) 2004, 2005 by Dominic Rath *
* Dominic.Rath@gmx.de *
* *
+ * Copyright (C) 2007,2008 Øyvind Harboe *
+ * oyvind.harboe@zylin.com *
+ * *
* 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 *
diff --git a/src/helper/fileio.c b/src/helper/fileio.c
index 9edf764..6b4a9f3 100644
--- a/src/helper/fileio.c
+++ b/src/helper/fileio.c
@@ -2,6 +2,9 @@
* Copyright (C) 2007 by Dominic Rath *
* Dominic.Rath@gmx.de *
* *
+ * Copyright (C) 2007,2008 Øyvind Harboe *
+ * oyvind.harboe@zylin.com *
+ * *
* 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 *
diff --git a/src/helper/fileio.h b/src/helper/fileio.h
index 17fc40b..471c5da 100644
--- a/src/helper/fileio.h
+++ b/src/helper/fileio.h
@@ -2,6 +2,9 @@
* Copyright (C) 2007 by Dominic Rath *
* Dominic.Rath@gmx.de *
* *
+ * Copyright (C) 2007,2008 Øyvind Harboe *
+ * oyvind.harboe@zylin.com *
+ * *
* 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 *
diff --git a/src/helper/log.c b/src/helper/log.c
index d30d369..567320c 100644
--- a/src/helper/log.c
+++ b/src/helper/log.c
@@ -2,6 +2,9 @@
* Copyright (C) 2005 by Dominic Rath *
* Dominic.Rath@gmx.de *
* *
+ * Copyright (C) 2007,2008 Øyvind Harboe *
+ * oyvind.harboe@zylin.com *
+ * *
* 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 *
diff --git a/src/helper/log.h b/src/helper/log.h
index afe5da8..f57ed08 100644
--- a/src/helper/log.h
+++ b/src/helper/log.h
@@ -2,6 +2,9 @@
* Copyright (C) 2005 by Dominic Rath *
* Dominic.Rath@gmx.de *
* *
+ * Copyright (C) 2007,2008 Øyvind Harboe *
+ * oyvind.harboe@zylin.com *
+ * *
* 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 *
diff --git a/src/helper/options.c b/src/helper/options.c
index 4922aa8..35c74fa 100644
--- a/src/helper/options.c
+++ b/src/helper/options.c
@@ -2,6 +2,9 @@
* Copyright (C) 2004, 2005 by Dominic Rath *
* Dominic.Rath@gmx.de *
* *
+ * Copyright (C) 2007,2008 Øyvind Harboe *
+ * oyvind.harboe@zylin.com *
+ * *
* 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 *
diff --git a/src/helper/replacements.c b/src/helper/replacements.c
index bebca28..a451ca4 100644
--- a/src/helper/replacements.c
+++ b/src/helper/replacements.c
@@ -2,6 +2,9 @@
* Copyright (C) 2006 by Dominic Rath *
* Dominic.Rath@gmx.de *
* *
+ * Copyright (C) 2007,2008 Øyvind Harboe *
+ * oyvind.harboe@zylin.com *
+ * *
* 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 *
diff --git a/src/helper/replacements.h b/src/helper/replacements.h
index 70c3a40..3f88f7f 100644
--- a/src/helper/replacements.h
+++ b/src/helper/replacements.h
@@ -2,6 +2,9 @@
* Copyright (C) 2006 by Dominic Rath *
* Dominic.Rath@gmx.de *
* *
+ * Copyright (C) 2007,2008 Øyvind Harboe *
+ * oyvind.harboe@zylin.com *
+ * *
* 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 *
diff --git a/src/helper/time_support.c b/src/helper/time_support.c
index 06c1082..5109617 100644
--- a/src/helper/time_support.c
+++ b/src/helper/time_support.c
@@ -2,6 +2,9 @@
* Copyright (C) 2006 by Dominic Rath *
* Dominic.Rath@gmx.de *
* *
+ * Copyright (C) 2007,2008 Øyvind Harboe *
+ * oyvind.harboe@zylin.com *
+ * *
* 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 *
diff --git a/src/helper/time_support.h b/src/helper/time_support.h
index 311c88d..49c41c9 100644
--- a/src/helper/time_support.h
+++ b/src/helper/time_support.h
@@ -2,6 +2,9 @@
* Copyright (C) 2006 by Dominic Rath *
* Dominic.Rath@gmx.de *
* *
+ * Copyright (C) 2007,2008 Øyvind Harboe *
+ * oyvind.harboe@zylin.com *
+ * *
* 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 *
diff --git a/src/helper/types.h b/src/helper/types.h
index 50d0df7..c6f9097 100644
--- a/src/helper/types.h
+++ b/src/helper/types.h
@@ -2,6 +2,9 @@
* Copyright (C) 2004, 2005 by Dominic Rath *
* Dominic.Rath@gmx.de *
* *
+ * Copyright (C) 2007,2008 Øyvind Harboe *
+ * oyvind.harboe@zylin.com *
+ * *
* 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 *