summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/flash/ecos.c2
-rw-r--r--src/flash/flash.c3
-rw-r--r--src/flash/flash.h3
-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
-rw-r--r--src/jtag/bitbang.c3
-rw-r--r--src/jtag/bitbang.h3
-rw-r--r--src/jtag/jtag.c3
-rw-r--r--src/jtag/jtag.h3
-rw-r--r--src/server/gdb_server.c3
-rw-r--r--src/server/gdb_server.h3
-rw-r--r--src/server/server.c3
-rw-r--r--src/server/server.h3
-rw-r--r--src/server/telnet_server.c3
-rw-r--r--src/server/telnet_server.h3
-rw-r--r--src/target/arm7_9_common.c3
-rw-r--r--src/target/arm7_9_common.h3
-rw-r--r--src/target/arm_jtag.c3
-rw-r--r--src/target/arm_jtag.h3
-rw-r--r--src/target/embeddedice.c3
-rw-r--r--src/target/embeddedice.h3
-rw-r--r--src/target/image.c3
-rw-r--r--src/target/image.h3
-rw-r--r--src/target/target.c3
-rw-r--r--src/target/target.h3
-rw-r--r--src/target/target_request.c3
-rw-r--r--src/target/target_request.h3
-rw-r--r--src/target/xscale.c3
-rw-r--r--src/target/xscale.h3
-rw-r--r--src/xsvf/xsvf.c3
44 files changed, 130 insertions, 1 deletions
diff --git a/src/flash/ecos.c b/src/flash/ecos.c
index b771d694..d16d15e9 100644
--- a/src/flash/ecos.c
+++ b/src/flash/ecos.c
@@ -1,5 +1,5 @@
/***************************************************************************
- * Copyright (C) 2008 Øyvind Harboe *
+ * Copyright (C) 2007,2008 Øyvind Harboe *
* oyvind.harboe@zylin.com *
* *
* This program is free software; you can redistribute it and/or modify *
diff --git a/src/flash/flash.c b/src/flash/flash.c
index 8444bb33..95a983b7 100644
--- a/src/flash/flash.c
+++ b/src/flash/flash.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/flash/flash.h b/src/flash/flash.h
index e7a79f8f..807914ad 100644
--- a/src/flash/flash.h
+++ b/src/flash/flash.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/binarybuffer.c b/src/helper/binarybuffer.c
index 12a711f8..a3b1cbd5 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 5e97cd03..0c27be25 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 d31bb6ec..11986228 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 c8807dde..d784af76 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 6c2bf474..3889bfc7 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 e29ef734..b5cedd56 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 9edf764b..6b4a9f3c 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 17fc40b3..471c5da1 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 d30d369b..567320cd 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 afe5da89..f57ed080 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 4922aa87..35c74fa1 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 bebca28e..a451ca45 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 70c3a40a..3f88f7f6 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 06c10828..51096178 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 311c88d3..49c41c9d 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 50d0df7e..c6f90979 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 *
diff --git a/src/jtag/bitbang.c b/src/jtag/bitbang.c
index 4c58e1d5..e8d082a7 100644
--- a/src/jtag/bitbang.c
+++ b/src/jtag/bitbang.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/jtag/bitbang.h b/src/jtag/bitbang.h
index da006a16..6a38f9b4 100644
--- a/src/jtag/bitbang.h
+++ b/src/jtag/bitbang.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/jtag/jtag.c b/src/jtag/jtag.c
index cbf52f09..37e2a61e 100644
--- a/src/jtag/jtag.c
+++ b/src/jtag/jtag.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/jtag/jtag.h b/src/jtag/jtag.h
index ef622031..f3f354a3 100644
--- a/src/jtag/jtag.h
+++ b/src/jtag/jtag.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/server/gdb_server.c b/src/server/gdb_server.c
index bbcff58c..040c614f 100644
--- a/src/server/gdb_server.c
+++ b/src/server/gdb_server.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/server/gdb_server.h b/src/server/gdb_server.h
index daa9156f..e81ee694 100644
--- a/src/server/gdb_server.h
+++ b/src/server/gdb_server.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/server/server.c b/src/server/server.c
index ce0ee6cd..97762838 100644
--- a/src/server/server.c
+++ b/src/server/server.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/server/server.h b/src/server/server.h
index 2543f22f..95410e80 100644
--- a/src/server/server.h
+++ b/src/server/server.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/server/telnet_server.c b/src/server/telnet_server.c
index cc79ea41..004f4ac3 100644
--- a/src/server/telnet_server.c
+++ b/src/server/telnet_server.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/server/telnet_server.h b/src/server/telnet_server.h
index 83579f9d..4d85cb7a 100644
--- a/src/server/telnet_server.h
+++ b/src/server/telnet_server.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/target/arm7_9_common.c b/src/target/arm7_9_common.c
index 563f4701..cf5f2b36 100644
--- a/src/target/arm7_9_common.c
+++ b/src/target/arm7_9_common.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/target/arm7_9_common.h b/src/target/arm7_9_common.h
index df2763d4..de602107 100644
--- a/src/target/arm7_9_common.h
+++ b/src/target/arm7_9_common.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/target/arm_jtag.c b/src/target/arm_jtag.c
index 77c81871..25eae960 100644
--- a/src/target/arm_jtag.c
+++ b/src/target/arm_jtag.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/target/arm_jtag.h b/src/target/arm_jtag.h
index 227a8d58..6fba449e 100644
--- a/src/target/arm_jtag.h
+++ b/src/target/arm_jtag.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/target/embeddedice.c b/src/target/embeddedice.c
index 5e6f3db6..56368452 100644
--- a/src/target/embeddedice.c
+++ b/src/target/embeddedice.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/target/embeddedice.h b/src/target/embeddedice.h
index 971f5fb7..1ab667c1 100644
--- a/src/target/embeddedice.h
+++ b/src/target/embeddedice.h
@@ -2,6 +2,9 @@
* Copyright (C) 2005, 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/target/image.c b/src/target/image.c
index 16f32867..20ce9f93 100644
--- a/src/target/image.c
+++ b/src/target/image.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/target/image.h b/src/target/image.h
index 064654b3..4ff1bc12 100644
--- a/src/target/image.h
+++ b/src/target/image.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/target/target.c b/src/target/target.c
index e1341a0a..91d48c45 100644
--- a/src/target/target.c
+++ b/src/target/target.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/target/target.h b/src/target/target.h
index 05dbbb91..51a9dfc4 100644
--- a/src/target/target.h
+++ b/src/target/target.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/target/target_request.c b/src/target/target_request.c
index 3487f160..4d92704d 100644
--- a/src/target/target_request.c
+++ b/src/target/target_request.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/target/target_request.h b/src/target/target_request.h
index 487ce346..216e6e17 100644
--- a/src/target/target_request.h
+++ b/src/target/target_request.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/target/xscale.c b/src/target/xscale.c
index d776e210..3e957a56 100644
--- a/src/target/xscale.c
+++ b/src/target/xscale.c
@@ -2,6 +2,9 @@
* Copyright (C) 2006, 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/target/xscale.h b/src/target/xscale.h
index 62285abb..edccb469 100644
--- a/src/target/xscale.h
+++ b/src/target/xscale.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/xsvf/xsvf.c b/src/xsvf/xsvf.c
index c13e26b8..26360678 100644
--- a/src/xsvf/xsvf.c
+++ b/src/xsvf/xsvf.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 *