patches/gdb/6.4/400-mips-coredump.patch-2.4.23-29
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Sat Jan 03 21:11:41 2009 +0000 (2009-01-03)
changeset 1112 c72aecd1a9ef
permissions -rw-r--r--
Get rid of all stuff related to building a /delivery' traball:
- building a delivery tarball has long been broken (since crostool-Ng is installable)
- get rid of implied do_print_filename, that can be mis-leading now tarballs can not be built

/trunk/scripts/build/kernel/bare-metal.sh | 4 0 4 0 ----
/trunk/scripts/build/kernel/linux.sh | 4 0 4 0 ----
/trunk/scripts/build/tools/000-template.sh | 11 0 11 0 -----------
/trunk/scripts/build/tools/100-libelf.sh | 4 0 4 0 ----
/trunk/scripts/build/tools/200-sstrip.sh | 11 1 10 0 +----------
/trunk/scripts/build/binutils.sh | 4 0 4 0 ----
/trunk/scripts/build/cc/gcc.sh | 5 0 5 0 -----
/trunk/scripts/build/debug/000-template.sh | 11 0 11 0 -----------
/trunk/scripts/build/debug/100-dmalloc.sh | 4 0 4 0 ----
/trunk/scripts/build/debug/400-ltrace.sh | 4 0 4 0 ----
/trunk/scripts/build/debug/300-gdb.sh | 7 0 7 0 -------
/trunk/scripts/build/debug/500-strace.sh | 4 0 4 0 ----
/trunk/scripts/build/debug/200-duma.sh | 4 0 4 0 ----
/trunk/scripts/build/libc/none.sh | 5 0 5 0 -----
/trunk/scripts/build/libc/glibc.sh | 10 0 10 0 ----------
/trunk/scripts/build/libc/uClibc.sh | 6 0 6 0 ------
/trunk/scripts/build/libc/eglibc.sh | 10 0 10 0 ----------
/trunk/scripts/build/gmp.sh | 6 0 6 0 ------
/trunk/scripts/build/mpfr.sh | 6 0 6 0 ------
/trunk/docs/overview.txt | 9 0 9 0 ---------
20 files changed, 1 insertion(+), 128 deletions(-)
yann@96
     1
Sometime around 2.4.22-23, the mips pt_regs.h fields were reordered, breaking
yann@96
     2
coredump handling by gdb for current kernels.  Update the hardcoded constants
yann@96
     3
to reflect the change.
yann@96
     4
--- gdb-6.2.1/gdb/mips-linux-tdep.c-orig	2004-10-29 14:23:55.000000000 -0500
yann@96
     5
+++ gdb-6.2.1/gdb/mips-linux-tdep.c	2004-10-29 14:26:44.000000000 -0500
yann@96
     6
@@ -53,12 +53,22 @@
yann@96
     7
 
yann@96
     8
 #define EF_REG0			6
yann@96
     9
 #define EF_REG31		37
yann@96
    10
+
yann@96
    11
+#if 0
yann@96
    12
 #define EF_LO			38
yann@96
    13
 #define EF_HI			39
yann@96
    14
 #define EF_CP0_EPC		40
yann@96
    15
 #define EF_CP0_BADVADDR		41
yann@96
    16
 #define EF_CP0_STATUS		42
yann@96
    17
 #define EF_CP0_CAUSE		43
yann@96
    18
+#else
yann@96
    19
+#define EF_CP0_STATUS		38
yann@96
    20
+#define EF_LO			39
yann@96
    21
+#define EF_HI			40
yann@96
    22
+#define EF_CP0_BADVADDR		41
yann@96
    23
+#define EF_CP0_CAUSE		42
yann@96
    24
+#define EF_CP0_EPC		43
yann@96
    25
+#endif
yann@96
    26
 
yann@96
    27
 #define EF_SIZE			180
yann@96
    28