diff options
Diffstat (limited to 'devel/i386-rtems-gdb/files')
-rw-r--r-- | devel/i386-rtems-gdb/files/patch-aa | 24 | ||||
-rw-r--r-- | devel/i386-rtems-gdb/files/patch-ac | 31 | ||||
-rw-r--r-- | devel/i386-rtems-gdb/files/patch-sim::igen::gen-engine.c | 62 | ||||
-rw-r--r-- | devel/i386-rtems-gdb/files/patch-sim::igen::lf.c | 51 | ||||
-rw-r--r-- | devel/i386-rtems-gdb/files/patch-sim::ppc::gen-idecode.c | 58 | ||||
-rw-r--r-- | devel/i386-rtems-gdb/files/patch-sim::ppc::gen-model.c | 11 | ||||
-rw-r--r-- | devel/i386-rtems-gdb/files/patch-sim::ppc::lf.c | 51 |
7 files changed, 0 insertions, 288 deletions
diff --git a/devel/i386-rtems-gdb/files/patch-aa b/devel/i386-rtems-gdb/files/patch-aa deleted file mode 100644 index 1f84f62ff4c2..000000000000 --- a/devel/i386-rtems-gdb/files/patch-aa +++ /dev/null @@ -1,24 +0,0 @@ ---- Makefile.in.orig Thu May 18 01:00:23 2000 -+++ Makefile.in Tue Aug 29 16:28:47 2000 -@@ -662,9 +662,7 @@ - install-autoconf \ - install-automake \ - install-bash \ -- install-bfd \ - install-bzip2 \ -- install-opcodes \ - install-binutils \ - install-bison \ - install-byacc \ -@@ -696,11 +694,9 @@ - install-itcl \ - install-ld \ - install-libgui \ -- install-libiberty \ - install-libtool \ - install-m4 \ - install-make \ -- install-mmalloc \ - install-patch \ - install-perl \ - install-prms \ diff --git a/devel/i386-rtems-gdb/files/patch-ac b/devel/i386-rtems-gdb/files/patch-ac deleted file mode 100644 index 861b13292684..000000000000 --- a/devel/i386-rtems-gdb/files/patch-ac +++ /dev/null @@ -1,31 +0,0 @@ ---- etc/Makefile.in.orig Sat Jan 26 16:35:45 2002 -+++ etc/Makefile.in Tue Oct 15 06:18:35 2002 -@@ -46,7 +46,7 @@ - #### Host, target, and site specific Makefile fragments come in here. - ### - --INFOFILES = standards.info configure.info -+INFOFILES = - DVIFILES = standards.dvi configure.dvi - - all: -@@ -68,19 +68,6 @@ - done - - install-info: info -- $(SHELL) $(srcdir)/../mkinstalldirs $(infodir) -- if test ! -f standards.info; then cd $(srcdir); fi; \ -- if test -f standards.info; then \ -- for i in standards.info*; do \ -- $(INSTALL_DATA) $$i $(infodir)/$$i; \ -- done; \ -- fi -- if test ! -f configure.info; then cd $(srcdir); fi; \ -- if test -f configure.info; then \ -- for i in configure.info*; do \ -- $(INSTALL_DATA) $$i $(infodir)/$$i; \ -- done; \ -- fi - - dvi: - for f in $(DVIFILES); do \ diff --git a/devel/i386-rtems-gdb/files/patch-sim::igen::gen-engine.c b/devel/i386-rtems-gdb/files/patch-sim::igen::gen-engine.c deleted file mode 100644 index d61b1e8770e3..000000000000 --- a/devel/i386-rtems-gdb/files/patch-sim::igen::gen-engine.c +++ /dev/null @@ -1,62 +0,0 @@ ---- sim/igen/gen-engine.c.orig Fri Feb 20 19:21:21 2004 -+++ sim/igen/gen-engine.c Fri Feb 20 19:22:13 2004 -@@ -98,21 +98,21 @@ - if (!options.gen.smp) - { - -- lf_putstr (file, " --/* CASE 1: NO SMP (with or with out instruction cache). -- --In this case, we can take advantage of the fact that the current --instruction address (CIA) does not need to be read from / written to --the CPU object after the execution of an instruction. -- --Instead, CIA is only saved when the main loop exits. This occures --when either sim_engine_halt or sim_engine_restart is called. Both of --these functions save the current instruction address before halting / --restarting the simulator. -- --As a variation, there may also be support for an instruction cracking --cache. */ -- -+ lf_putstr (file, "\ -+/* CASE 1: NO SMP (with or with out instruction cache).\ -+\ -+In this case, we can take advantage of the fact that the current\ -+instruction address (CIA) does not need to be read from / written to\ -+the CPU object after the execution of an instruction.\ -+\ -+Instead, CIA is only saved when the main loop exits. This occures\ -+when either sim_engine_halt or sim_engine_restart is called. Both of\ -+these functions save the current instruction address before halting /\ -+restarting the simulator.\ -+\ -+As a variation, there may also be support for an instruction cracking\ -+cache. */\ -+\ - "); - - lf_putstr (file, "\n"); -@@ -215,14 +215,14 @@ - if (options.gen.smp) - { - -- lf_putstr (file, " --/* CASE 2: SMP (With or without ICACHE) -- --The complexity here comes from needing to correctly halt the simulator --when it is aborted. For instance, if cpu0 requests a restart then --cpu1 will normally be the next cpu that is run. Cpu0 being restarted --after all the other CPU's and the event queue have been processed */ -- -+ lf_putstr (file, "\ -+/* CASE 2: SMP (With or without ICACHE)\ -+\ -+The complexity here comes from needing to correctly halt the simulator\ -+when it is aborted. For instance, if cpu0 requests a restart then\ -+cpu1 will normally be the next cpu that is run. Cpu0 being restarted\ -+after all the other CPU's and the event queue have been processed */\ -+\ - "); - - lf_putstr (file, "\n"); diff --git a/devel/i386-rtems-gdb/files/patch-sim::igen::lf.c b/devel/i386-rtems-gdb/files/patch-sim::igen::lf.c deleted file mode 100644 index 8b359d5c4e9a..000000000000 --- a/devel/i386-rtems-gdb/files/patch-sim::igen::lf.c +++ /dev/null @@ -1,51 +0,0 @@ ---- sim/igen/lf.c.orig Thu Apr 15 21:35:05 1999 -+++ sim/igen/lf.c Mon Feb 16 08:13:36 2004 -@@ -259,27 +259,27 @@ - case lf_is_c: - case lf_is_h: - nr += lf_printf(file, "\ --/* This file is part of the program psim. -- -- Copyright (C) 1994-1997, Andrew Cagney <cagney@highland.com.au> -- -- 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. -- -- 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. -- -- 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. -- -- -- -- -- This file was generated by the program %s */ -+/* This file is part of the program psim.\ -+\ -+ Copyright (C) 1994-1997, Andrew Cagney <cagney@highland.com.au>\ -+\ -+ 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.\ -+\ -+ 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.\ -+ \ -+ 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.\ -+ \ -+ --\ -+\ -+ This file was generated by the program %s */\ - ", filter_filename(file->program)); - break; - default: diff --git a/devel/i386-rtems-gdb/files/patch-sim::ppc::gen-idecode.c b/devel/i386-rtems-gdb/files/patch-sim::ppc::gen-idecode.c deleted file mode 100644 index fc0c12f18cca..000000000000 --- a/devel/i386-rtems-gdb/files/patch-sim::ppc::gen-idecode.c +++ /dev/null @@ -1,58 +0,0 @@ ---- sim/ppc/gen-idecode.c.orig Fri Feb 20 17:00:10 2004 -+++ sim/ppc/gen-idecode.c Fri Feb 20 17:00:57 2004 -@@ -757,21 +757,21 @@ - - if (!generate_smp) { - -- lf_putstr(file, " --/* CASE 1: NO SMP (with or with out instruction cache). -- -- In this case, we can take advantage of the fact that the current -- instruction address does not need to be returned to the cpu object -- after every execution of an instruction. Instead it only needs to -- be saved when either A. the main loop exits or B. A cpu-halt or -- cpu-restart call forces the loop to be re-enered. The later -- functions always save the current cpu instruction address. -- -- Two subcases also exist that with and that without an instruction -- cache. -- -- An additional complexity is the need to ensure that a 1:1 ratio -- is maintained between the execution of an instruction and the -+ lf_putstr(file, "\ -+/* CASE 1: NO SMP (with or with out instruction cache).\ -+\ -+ In this case, we can take advantage of the fact that the current\ -+ instruction address does not need to be returned to the cpu object\ -+ after every execution of an instruction. Instead it only needs to\ -+ be saved when either A. the main loop exits or B. A cpu-halt or\ -+ cpu-restart call forces the loop to be re-enered. The later\ -+ functions always save the current cpu instruction address.\ -+\ -+ Two subcases also exist that with and that without an instruction\ -+ cache.\ -+\ -+ An additional complexity is the need to ensure that a 1:1 ratio\ -+ is maintained between the execution of an instruction and the\ - incrementing of the simulation clock */"); - - lf_putstr(file, "\n"); -@@ -867,12 +867,12 @@ - - if (generate_smp) { - -- lf_putstr(file, " --/* CASE 2: SMP (With or without ICACHE) -- -- The complexity here comes from needing to correctly restart the -- system when it is aborted. In particular if cpu0 requests a -- restart, the next cpu is still cpu1. Cpu0 being restarted after -+ lf_putstr(file, "\ -+/* CASE 2: SMP (With or without ICACHE)\ -+\ -+ The complexity here comes from needing to correctly restart the\ -+ system when it is aborted. In particular if cpu0 requests a\ -+ restart, the next cpu is still cpu1. Cpu0 being restarted after\ - all the other CPU's and the event queue have been processed */"); - - lf_putstr(file, "\n"); diff --git a/devel/i386-rtems-gdb/files/patch-sim::ppc::gen-model.c b/devel/i386-rtems-gdb/files/patch-sim::ppc::gen-model.c deleted file mode 100644 index 7c1b25254a8c..000000000000 --- a/devel/i386-rtems-gdb/files/patch-sim::ppc::gen-model.c +++ /dev/null @@ -1,11 +0,0 @@ ---- sim/ppc/gen-model.c.orig Fri Feb 20 17:15:51 2004 -+++ sim/ppc/gen-model.c Fri Feb 20 17:18:16 2004 -@@ -377,7 +377,7 @@ - lf_printf(file, " }\n"); - lf_printf(file, " }\n"); - lf_printf(file, "\n"); -- lf_printf(file, " error(\"Unknown model '%%s', Models which are known are:%%s\n\",\n"); -+ lf_printf(file, " error(\"Unknown model '%%s', Models which are known are:%%s\",\n"); - lf_printf(file, " name,\n"); - lf_printf(file, " \""); - for(model_ptr = models; model_ptr; model_ptr = model_ptr->next) { diff --git a/devel/i386-rtems-gdb/files/patch-sim::ppc::lf.c b/devel/i386-rtems-gdb/files/patch-sim::ppc::lf.c deleted file mode 100644 index 65ac6f8b2c76..000000000000 --- a/devel/i386-rtems-gdb/files/patch-sim::ppc::lf.c +++ /dev/null @@ -1,51 +0,0 @@ ---- sim/ppc/lf.c.orig Thu Apr 15 21:35:11 1999 -+++ sim/ppc/lf.c Mon Feb 16 08:09:23 2004 -@@ -274,27 +274,27 @@ - case lf_is_c: - case lf_is_h: - nr += lf_printf(file, "\ --/* This file is part of the program psim. -- -- Copyright (C) 1994-1995, Andrew Cagney <cagney@highland.com.au> -- -- 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. -- -- 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. -- -- 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. -- -- -- -- -- This file was generated by the program %s */ -+/* This file is part of the program psim.\ -+\ -+ Copyright (C) 1994-1995, Andrew Cagney <cagney@highland.com.au>\ -+\ -+ 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.\ -+\ -+ 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.\ -+ \ -+ 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.\ -+ \ -+ --\ -+\ -+ This file was generated by the program %s */\ - ", filter_filename(file->program)); - break; - default: |