3e7521
#
3e7521
# crash core analysis suite
3e7521
#
3e7521
Summary: Kernel analysis utility for live systems, netdump, diskdump, kdump, LKCD or mcore dumpfiles
3e7521
Name: crash
4eb2a4
Version: 7.2.0
4eb2a4
Release: 6%{?dist}
3e7521
License: GPLv3
3e7521
Group: Development/Debuggers
3e7521
Source: http://people.redhat.com/anderson/crash-%{version}.tar.gz
3e7521
URL: http://people.redhat.com/anderson
3e7521
ExclusiveOS: Linux
3e7521
ExclusiveArch: %{ix86} ia64 x86_64 ppc ppc64 s390 s390x %{arm} aarch64 ppc64le
3e7521
Buildroot: %{_tmppath}/%{name}-%{version}-%{release}-buildroot-%(%{__id_u} -n)
3e7521
BuildRequires: ncurses-devel zlib-devel lzo-devel bison snappy-devel
3e7521
Requires: binutils
3e7521
Patch0: lzo_snappy.patch
4eb2a4
Patch1: github_da9bd35a_to_e2efacdd.patch
4eb2a4
Patch2: github_f852f5ce_to_03a3e57b.patch
4eb2a4
Patch3: github_494a796e_to_63419fb9.patch
4eb2a4
Patch4: github_d833432f_kpti_trampoline.patch
4eb2a4
Patch5: github_1e488cfe_to_1160ba19.patch
4eb2a4
Patch6: github_a38e3ec4_machine_kexec.patch
4eb2a4
Patch7: github_ddace972_exception_frame.patch
3e7521
3e7521
%description
3e7521
The core analysis suite is a self-contained tool that can be used to
3e7521
investigate either live systems, kernel core dumps created from the
3e7521
netdump, diskdump and kdump packages from Red Hat Linux, the mcore kernel patch
3e7521
offered by Mission Critical Linux, or the LKCD kernel patch.
3e7521
3e7521
%package devel
3e7521
Requires: %{name} = %{version}, zlib-devel lzo-devel snappy-devel
3e7521
Summary: kernel crash analysis utility for live systems, netdump, diskdump, kdump, LKCD or mcore dumpfiles
3e7521
Group: Development/Debuggers
3e7521
3e7521
%description devel
3e7521
The core analysis suite is a self-contained tool that can be used to
3e7521
investigate either live systems, kernel core dumps created from the
3e7521
netdump, diskdump and kdump packages from Red Hat Linux, the mcore kernel patch
3e7521
offered by Mission Critical Linux, or the LKCD kernel patch.
3e7521
3e7521
%prep
3e7521
%setup -n %{name}-%{version} -q
3e7521
%patch0 -p1 -b lzo_snappy.patch
3e7521
%patch1 -p1 -b github_87179026_to_ad3b8476.patch
4eb2a4
%patch2 -p1 -b github_f852f5ce_to_03a3e57b.patch
4eb2a4
%patch3 -p1 -b github_494a796e_to_63419fb9.patch
4eb2a4
%patch4 -p1 -b github_d833432f_kpti_trampoline.patch
4eb2a4
%patch5 -p1 -b github_1e488cfe_to_1160ba19.patch
4eb2a4
%patch6 -p1 -b github_a38e3ec4_machine_kexec.patch
4eb2a4
%patch7 -p1 -b github_ddace972_exception_frame.patch
3e7521
3e7521
%build
3e7521
make RPMPKG="%{version}-%{release}" CFLAGS="%{optflags}"
3e7521
3e7521
%install
3e7521
rm -rf %{buildroot}
3e7521
mkdir -p %{buildroot}%{_bindir}
3e7521
make DESTDIR=%{buildroot} install
3e7521
mkdir -p %{buildroot}%{_mandir}/man8
3e7521
cp -p crash.8 %{buildroot}%{_mandir}/man8/crash.8
3e7521
mkdir -p %{buildroot}%{_includedir}/crash
3e7521
chmod 0644 defs.h
3e7521
cp -p defs.h %{buildroot}%{_includedir}/crash
3e7521
3e7521
%clean
3e7521
rm -rf %{buildroot}
3e7521
3e7521
%files
3e7521
%defattr(-,root,root,-)
3e7521
%{_bindir}/crash
3e7521
%{_mandir}/man8/crash.8*
3e7521
%doc README COPYING3
3e7521
3e7521
%files devel
3e7521
%defattr(-,root,root,-)
3e7521
%{_includedir}/*
3e7521
3e7521
%changelog
4eb2a4
* Mon Feb 12 2018 Dave Anderson <anderson@redhat.com> - 7.2.0-6
4eb2a4
- Fix arm64 backtrace issues seen in Linux 4.14
4eb2a4
  Resolves: rhbz#1542312
3e7521
4eb2a4
* Fri Jan 26 2018 Dave Anderson <anderson@redhat.com> - 7.2.0-5
4eb2a4
- Additional support for analyzing an SADUMP dumpfile if KASLR
4eb2a4
  and KPTI are both enabled
4eb2a4
  Resolves: rhbz#1504467
4eb2a4
4eb2a4
* Mon Jan 22 2018 Dave Anderson <anderson@redhat.com> - 7.2.0-4
4eb2a4
- Add support for KPTI entry trampoline stack
4eb2a4
  Resolves: rhbz#1534308
4eb2a4
 
4eb2a4
* Thu Jan 11 2018 Dave Anderson <anderson@redhat.com> - 7.2.0-3
4eb2a4
- Rebase to github commits 494a796e to 63419fb9
4eb2a4
  Resolves: rhbz#1497316
4eb2a4
- Fix IRQ stack transition failure due to kernel's removal of 64-byte gap
4eb2a4
  Resolves: rhbz#1530887
4eb2a4
4eb2a4
* Tue Nov 21 2017 Dave Anderson <anderson@redhat.com> - 7.2.0-2
4eb2a4
- Rebase to github commits f852f5ce to 03a3e57b
4eb2a4
  Resolves: rhbz#1497316
4eb2a4
4eb2a4
* Wed Nov  1 2017 Dave Anderson <anderson@redhat.com> - 7.2.0-1
4eb2a4
- Rebase to upstream version 7.2.0
4eb2a4
- Rebase to github commits da9bd35a to e2efacdd
4eb2a4
  Resolves: rhbz#1497316
4eb2a4
- ppc64le: fix for "WARNING: cannot access vmalloc'd module memory"
4eb2a4
  Resolves: rhbz#1485391
4eb2a4
- Support for analyzing an SADUMP crash dump if KASLR is enabled
4eb2a4
  Resolves: rhbz#1504467
3e7521
3e7521
* Wed May  3 2017 Dave Anderson <anderson@redhat.com> - 7.1.9-2
3e7521
- Rebase to github commits 87179026 to ad3b8476
3e7521
  Resolves: rhbz#1393534
3e7521
- Prohibit native gdb disassemble command when KASLR
3e7521
  Resolves: rhbz#1445649
3e7521
3e7521
* Mon Apr 24 2017 Dave Anderson <anderson@redhat.com> - 7.1.9-1
3e7521
- Rebase to upstream version 7.1.9
3e7521
  Resolves: rhbz#1393534
3e7521
- Fix gdb "set scope" option for KASLR kernels.
3e7521
  Resolves: rhbz#1440725
3e7521
- Fix for the determination of the x86_64 "phys_base" value when it is
3e7521
  not passed in the VMCOREINFO data of ELF vmcores
3e7521
  Resolves: rhbz#1439170
3e7521
3e7521
* Wed Mar  8 2017 Dave Anderson <anderson@redhat.com> - 7.1.8-2
3e7521
- mod [-sS] command may erroneously reassign module symbol addresses
3e7521
  Resolves: rhbz#1430091
3e7521
3e7521
* Fri Feb 24 2017 Dave Anderson <anderson@redhat.com> - 7.1.8-1
3e7521
- Rebase to upstream version 7.1.8
3e7521
  Resolves: rhbz#1393534
3e7521
- POWER9 - Power ISA 3.0 related support for crash utility
3e7521
  Resolves: rhbz#1368711
3e7521
- crash package update - ppc64/ppc64le
3e7521
  Resolves: rhbz#1384944
3e7521
- exception RIP: unknown or invalid address
3e7521
  Resolves: rhbz#1350457
3e7521
- Crash does not always parse correctly the modules symbol tables
3e7521
  Resolves: rhbz#1360415
3e7521
- ARM64: crash live system from: WARNING: cannot read linux_banner string
3e7521
  Resolves: rhbz#1392007
3e7521
- kmem: invalid structure member offset: page_count
3e7521
  Resolves: rhbz#1392011
3e7521
- Kernel address space randomization [KASLR] support 
3e7521
  Resolves: rhbz#1392658
3e7521
- invalid structure size: tnt
3e7521
  Resolves: rhbz#1420653
3e7521
3e7521
* Wed Sep 14 2016 Dave Anderson <anderson@redhat.com> - 7.1.5-2
3e7521
- Fix for kernel module symbol gathering when the ordering of module
3e7521
  symbol name strings does not match the order of the kernel_symbol
3e7521
  structures.
3e7521
- Resolves: rhbz#1375130
3e7521
3e7521
* Thu Apr 28 2016 Dave Anderson <anderson@redhat.com> - 7.1.5-1
3e7521
- Rebase to upstream version 7.1.5
3e7521
  Resolves: rhbz#1292566
3e7521
- Decode clflushopt instruction
3e7521
  Resolves: rhbz#1262479
3e7521
- Support AArch64 QEMU generated dumps 
3e7521
  Resolves: rhbz#1299873
3e7521
- crash: zero-size memory allocation (aarch64) 
3e7521
  Resolves: rhbz#1312738
3e7521
3e7521
* Tue Apr  5 2016 Dave Anderson <anderson@redhat.com> - 7.1.2-4
3e7521
- crash: fails to read excluded pages by default on sadump-related format
3e7521
  Resolves: rhbz#1304260
3e7521
3e7521
* Mon Nov 23 2015 Dave Anderson <anderson@redhat.com> - 7.1.2-3
3e7521
- crash fails to read or wrongly reads some parts of memory in sadump vmcore format
3e7521
  Resolves: rhbz#1282997
3e7521
3e7521
* Tue Aug  4 2015 Dave Anderson <anderson@redhat.com> - 7.1.2-2
3e7521
- Fix "kmem -s <address>", "bt -F[F]", and "rd -S[S]" options in kernels 
3e7521
  configured with CONFIG_SLUB having multiple-page slabs.
3e7521
  Resolves: rhbz#1244003
3e7521
- Fix for SIGSEGV generated by "bt -[f|F]" in ARM64 kernels.
3e7521
  Resolves: rhbz#1248859
3e7521
 
3e7521
* Mon Jul 13 2015 Dave Anderson <anderson@redhat.com> - 7.1.2-1
3e7521
- Rebase to upstream version 7.1.2
3e7521
  Resolves: rhbz#1207696
3e7521
- Fix several ppc64 backtrace issues
3e7521
  Resolves: rhbz#1235447 
3e7521
3e7521
* Fri Jun 05 2015 Dave Anderson <anderson@redhat.com> - 7.1.1-2
3e7521
- ARM64 backtrace enhancements
3e7521
  Resolves: rhbz#1227508
3e7521
3e7521
* Thu May 28 2015 Dave Anderson <anderson@redhat.com> - 7.1.1-1
3e7521
- Rebase to upstream version 7.1.1
3e7521
  Resolves: rhbz#1207696
3e7521
- Display s390x vector registers from a kernel dump.
3e7521
  Resolves: rhbz#1182161
3e7521
- Fix date displayed on initial system banner and by the "sys" command on ARM64.
3e7521
  Resolves: rhbz#1223044
3e7521
- Fix ARM64 page size calculation on 4.1 and later kernels.
3e7521
  Resolves: rhbz#1222645
3e7521
3e7521
* Tue Apr 21 2015 Dave Anderson <anderson@redhat.com> - 7.0.9-6
3e7521
- Calculate ARM64 virtual memory layout based upon struct page size 
3e7521
  Resolves: rhbz#1204941
3e7521
3e7521
* Tue Apr  7 2015 Dave Anderson <anderson@redhat.com> - 7.0.9-5
3e7521
- Support new sadump format that can represent more than 16 TB physical memory space
3e7521
  Resolves: rhbz#1182383
3e7521
3e7521
* Mon Jan 26 2015 Dave Anderson <anderson@redhat.com> - 7.0.9-4
3e7521
  Fix ppc64 "bt" command for active tasks in compressed kdumps.
3e7521
  Resolves: rhbz#1184401
3e7521
3e7521
* Mon Jan 12 2015 Dave Anderson <anderson@redhat.com> - 7.0.9-3
3e7521
  Fix "bt" command mislabeling errors.
3e7521
  Resolves: rhbz#1179476
3e7521
3e7521
* Mon Dec 08 2014 Dave Anderson <anderson@redhat.com> - 7.0.9-2
3e7521
- Use registers from QEMU-generated ELF and compressed kdump headers 
3e7521
  for active task backtraces.
3e7521
- Resolves: rhbz#1169555
3e7521
3e7521
* Fri Nov 14 2014 Dave Anderson <anderson@redhat.com> - 7.0.9-1
3e7521
- Rebase to upstream version 7.0.9.
3e7521
- Resolves: rhbz#1110513
3e7521
3e7521
* Tue Sep 23 2014 Dave Anderson <anderson@redhat.com> - 7.0.8-2
3e7521
- Fix ps performance patch regression on live systems.
3e7521
- Resolves: rhbz#1134177
3e7521
- Minor build-related fixes for ppc64le.
3e7521
- Resolves: rhbz#1123991
3e7521
3e7521
* Fri Sep 12 2014 Dave Anderson <anderson@redhat.com> - 7.0.8-1
3e7521
- Rebase to upstream version 7.0.8.
3e7521
- Resolves: rhbz#1110513
3e7521
- Fix to calculate the physical base address of dumpfiles created
3e7521
  by a "virsh dump" of an OVMF guest.
3e7521
- Resolves: rhbz#1080698
3e7521
- Support for aarch64 architecture.
3e7521
- Resolves: rhbz#1110551
3e7521
- Fix to prevent crash from spinning endlessly on a corrupted/truncated
3e7521
  dumpfile whose bitmap data is not wholly contained within the file.
3e7521
- Resolves: rhbz#1114088
3e7521
- Support for ppc64le architecture.
3e7521
- Resolves: rhbz#1123991
3e7521
3e7521
* Tue Jan 28 2014 Daniel Mach <dmach@redhat.com> - 7.0.2-6
3e7521
- Mass rebuild 2014-01-24
3e7521
3e7521
* Fri Jan 24 2014 Dave Anderson <anderson@redhat.com> - 7.0.2-5
3e7521
- Fix for a missing kernel-mode exception frame dump by the x86_64 
3e7521
  "bt" command if a page fault was generated by a bogus RIP.
3e7521
- Resolves: rhbz#1057353
3e7521
- Fix for the x86_64 "bt" command to prevent an unwarranted message
3e7521
  indicating "WARNING: possibly bogus exception frame" generated
3e7521
  from a blocked kernel thread that was in the process of exec'ing
3e7521
  a user process via the call_usermodehelper() facility.
3e7521
- Resolves: rhbz#1057357
3e7521
3e7521
* Fri Jan 10 2014 Dave Anderson <anderson@redhat.com> - 7.0.2-4
3e7521
- Fixes for "kmem -S" command for CONFIG_SLUB.
3e7521
- Resolves: rhbz#1045591
3e7521
- Increase S390X NR_CPUS
3e7521
- Resolves: rhbz#1051156
3e7521
3e7521
* Fri Dec 27 2013 Daniel Mach <dmach@redhat.com> - 7.0.2-3
3e7521
- Mass rebuild 2013-12-27
3e7521
3e7521
* Tue Oct 29 2013 Dave Anderson <anderson@redhat.com> - 7.0.2-2
3e7521
- Compressed kdump 46-bit physical memory support
3e7521
  Resolves: rhbz#1015250
3e7521
- Fix incorrect backtrace for dumps taken with "virsh dump --memory-only"
3e7521
  Resolves: rhbz#1020469
3e7521
- Fix cpu number display on systems with more than 254 cpus
3e7521
  Resolves: rhbz#1020536
3e7521
3e7521
* Wed Sep 04 2013 Dave Anderson <anderson@redhat.com> - 7.0.2-1
3e7521
- Update to latest upstream release
3e7521
- Fix for ppc64 embedded gdb NULL pointer translation sigsegv
3e7521
- Fix for bt -F failure
3e7521
3e7521
* Fri Jul 26 2013 Dave Anderson <anderson@redhat.com> - 7.0.1-4
3e7521
- Add lzo-devel and snappy-devel to crash-devel Requires line
3e7521
3e7521
* Tue Jul 23 2013 Dave Anderson <anderson@redhat.com> - 7.0.1-3
3e7521
- Build with snappy compression support
3e7521
3e7521
* Tue Jul  9 2013 Dave Anderson <anderson@redhat.com> - 7.0.1-2
3e7521
- Fix for ppc64 Linux 3.10 vmalloc/user-space virtual address translation
3e7521
3e7521
* Tue Jun 18 2013 Dave Anderson <anderson@redhat.com> - 7.0.1-1
3e7521
- Update to latest upstream release
3e7521
- Build with LZO support
3e7521
3e7521
* Tue Apr  9 2013 Dave Anderson <anderson@redhat.com> - 6.1.6-1
3e7521
- Update to latest upstream release
3e7521
3e7521
* Tue Feb 19 2013 Dave Anderson <anderson@redhat.com> - 6.1.4-1
3e7521
- Update to latest upstream release
3e7521
3e7521
* Wed Feb 13 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 6.1.2-2
3e7521
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
3e7521
3e7521
* Wed Jan  9 2013 Dave Anderson <anderson@redhat.com> - 6.1.2-1
3e7521
- Update to latest upstream release
3e7521
3e7521
* Tue Nov 27 2012 Dave Anderson <anderson@redhat.com> - 6.1.1-1
3e7521
- Update to latest upstream release
3e7521
3e7521
* Mon Sep  1 2012 Dave Anderson <anderson@redhat.com> - 6.1.0-1
3e7521
- Add ppc to ExclusiveArch list
3e7521
- Update to latest upstream release
3e7521
3e7521
* Tue Aug 21 2012 Dave Anderson <anderson@redhat.com> - 6.0.9-1
3e7521
- Update to latest upstream release
3e7521
3e7521
* Wed Jul 18 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 6.0.8-2
3e7521
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
3e7521
3e7521
* Mon Jul  1 2012 Dave Anderson <anderson@redhat.com> - 6.0.8-1
3e7521
- Update to latest upstream release.
3e7521
- Replace usage of "struct siginfo" with "siginfo_t".
3e7521
3e7521
* Mon Apr 30 2012 Dave Anderson <anderson@redhat.com> - 6.0.6-1
3e7521
- Update to latest upstream release
3e7521
3e7521
* Mon Mar 26 2012 Dave Anderson <anderson@redhat.com> - 6.0.5-1
3e7521
- Update to latest upstream release
3e7521
3e7521
* Wed Jan  4 2012 Dave Anderson <anderson@redhat.com> - 6.0.2-1
3e7521
- Update to latest upstream release
3e7521
3e7521
* Wed Oct 26 2011 Dave Anderson <anderson@redhat.com> - 6.0.0-1
3e7521
- Update to latest upstream release
3e7521
3e7521
* Tue Sep 20 2011 Dave Anderson <anderson@redhat.com> - 5.1.8-1
3e7521
- Update to latest upstream release
3e7521
- Additional fixes for gcc-4.6 -Werror compile failures for ARM architecture.
3e7521
3e7521
* Thu Sep  1 2011 Dave Anderson <anderson@redhat.com> - 5.1.7-2
3e7521
- Fixes for gcc-4.6 -Werror compile failures for ARM architecture.
3e7521
3e7521
* Wed Aug 17 2011 Dave Anderson <anderson@redhat.com> - 5.1.7-1
3e7521
- Update to latest upstream release
3e7521
- Fixes for gcc-4.6 -Werror compile failures for ppc64/ppc.
3e7521
3e7521
* Tue May 31 2011 Peter Robinson <pbrobinson@gmail.com> - 5.1.5-1
3e7521
- Update to latest upstream release
3e7521
- Add ARM to the Exclusive arch
3e7521
3e7521
* Wed Feb 25 2011 Dave Anderson <anderson@redhat.com> - 5.1.2-2
3e7521
- Fixes for gcc-4.6 -Werror compile failures in gdb module.  
3e7521
3e7521
* Wed Feb 23 2011 Dave Anderson <anderson@redhat.com> - 5.1.2-1
3e7521
- Upstream version.
3e7521
3e7521
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 5.0.6-3
3e7521
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
3e7521
3e7521
* Tue Jul 20 2010 Dave Anderson <anderson@redhat.com> - 5.0.6-2
3e7521
- Bump version.
3e7521
3e7521
* Tue Jul 20 2010 Dave Anderson <anderson@redhat.com> - 5.0.6-1
3e7521
- Update to upstream version.
3e7521
3e7521
* Fri Sep 11 2009 Dave Anderson <anderson@redhat.com> - 4.0.9-2
3e7521
  Bump version.
3e7521
3e7521
* Fri Sep 11 2009 Dave Anderson <anderson@redhat.com> - 4.0.9-1
3e7521
- Update to upstream release, which allows the removal of the 
3e7521
  Revision tag workaround, the crash-4.0-8.11-dwarf3.patch and 
3e7521
  the crash-4.0-8.11-optflags.patch
3e7521
3e7521
* Sun Aug 05 2009 Lubomir Rintel <lkundrak@v3.sk> - 4.0.8.11-2
3e7521
- Fix reading of dwarf 3 DW_AT_data_member_location
3e7521
- Use proper compiler flags
3e7521
3e7521
* Wed Aug 05 2009 Lubomir Rintel <lkundrak@v3.sk> - 4.0.8.11-1
3e7521
- Update to later upstream release
3e7521
- Fix abuse of Revision tag
3e7521
3e7521
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
3e7521
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.0-9.7.2
3e7521
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
3e7521
3e7521
* Tue Feb 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.0-8.7.2
3e7521
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
3e7521
3e7521
* Thu Feb 19 2009 Dave Anderson <anderson@redhat.com> - 4.0-7.7.2
3e7521
- Replace exclusive arch i386 with ix86.
3e7521
3e7521
* Thu Feb 19 2009 Dave Anderson <anderson@redhat.com> - 4.0-7.7.1
3e7521
- Updates to this file per crash merge review
3e7521
- Update to upstream version 4.0-7.7.  Full changelog viewable in:
3e7521
    http://people.redhat.com/anderson/crash.changelog.html
3e7521
3e7521
* Tue Jul 15 2008 Tom "spot" Callaway <tcallawa@redhat.com> 4.0-7
3e7521
- fix license tag
3e7521
3e7521
* Tue Apr 29 2008 Dave Anderson <anderson@redhat.com> - 4.0-6.3
3e7521
- Added crash-devel subpackage
3e7521
- Updated crash.patch to match upstream version 4.0-6.3
3e7521
3e7521
* Wed Feb 20 2008 Dave Anderson <anderson@redhat.com> - 4.0-6.0.5
3e7521
- Second attempt at addressing the GCC 4.3 build, which failed due
3e7521
  to additional ptrace.h includes in the lkcd vmdump header files.
3e7521
3e7521
* Wed Feb 20 2008 Dave Anderson <anderson@redhat.com> - 4.0-6.0.4
3e7521
- First attempt at addressing the GCC 4.3 build, which failed on x86_64
3e7521
  because ptrace-abi.h (included by ptrace.h) uses the "u32" typedef,
3e7521
  which relies on <asm/types.h>, and include/asm-x86_64/types.h
3e7521
  does not not typedef u32 as done in include/asm-x86/types.h.
3e7521
3e7521
* Mon Feb 18 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 4.0-6.0.3
3e7521
- Autorebuild for GCC 4.3
3e7521
3e7521
* Wed Jan 23 2008 Dave Anderson <anderson@redhat.com> - 4.0-5.0.3
3e7521
- Updated crash.patch to match upstream version 4.0-5.0.
3e7521
3e7521
* Wed Aug 29 2007 Dave Anderson <anderson@redhat.com> - 4.0-4.6.2
3e7521
- Updated crash.patch to match upstream version 4.0-4.6.
3e7521
3e7521
* Wed Sep 13 2006 Dave Anderson <anderson@redhat.com> - 4.0-3.3
3e7521
- Updated crash.patch to match upstream version 4.0-3.3.
3e7521
- Support for x86_64 relocatable kernels.  BZ #204557
3e7521
3e7521
* Mon Aug  7 2006 Dave Anderson <anderson@redhat.com> - 4.0-3.1
3e7521
- Updated crash.patch to match upstream version 4.0-3.1.
3e7521
- Added kdump reference to description.
3e7521
- Added s390 and s390x to ExclusiveArch list.  BZ #199125
3e7521
- Removed LKCD v1 pt_regs references for s390/s390x build.
3e7521
- Removed LKCD v2_v3 pt_regs references for for s390/s390x build.
3e7521
3e7521
* Fri Jul 14 2006 Jesse Keating <jkeating@redhat.com> - 4.0-3
3e7521
- rebuild
3e7521
3e7521
* Mon May 15 2006 Dave Anderson <anderson@redhat.com> - 4.0-2.26.4
3e7521
- Updated crash.patch such that <asm/page.h> is not #include'd
3e7521
  by s390_dump.c; IBM did not make the file s390[s] only; BZ #192719
3e7521
3e7521
* Mon May 15 2006 Dave Anderson <anderson@redhat.com> - 4.0-2.26.3
3e7521
- Updated crash.patch such that <asm/page.h> is not #include'd
3e7521
  by vas_crash.h; only ia64 build complained; BZ #191719
3e7521
3e7521
* Mon May 15 2006 Dave Anderson <anderson@redhat.com> - 4.0-2.26.2
3e7521
- Updated crash.patch such that <asm/segment.h> is not #include'd
3e7521
  by lkcd_x86_trace.c; also for BZ #191719
3e7521
3e7521
* Mon May 15 2006 Dave Anderson <anderson@redhat.com> - 4.0-2.26.1
3e7521
- Updated crash.patch to bring it up to 4.0-2.26, which should 
3e7521
  address BZ #191719 - "crash fails to build in mock"
3e7521
3e7521
* Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 4.0-2.18.1
3e7521
- rebuilt for new gcc4.1 snapshot and glibc changes
3e7521
3e7521
* Wed Jan 04 2006 Dave Anderson <anderson@redhat.com> 4.0-2.18
3e7521
- Updated source package to crash-4.0.tar.gz, and crash.patch
3e7521
  to bring it up to 4.0-2.18.
3e7521
3e7521
* Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
3e7521
- rebuilt
3e7521
3e7521
* Thu Mar 03 2005 Dave Anderson <anderson@redhat.com> 3.10-13
3e7521
- Compiler error- and warning-related fixes for gcc 4 build.
3e7521
- Update to enhance x86 and x86_64 gdb disassembly output so as to
3e7521
  symbolically display call targets from kernel module text without
3e7521
  requiring module debuginfo data.
3e7521
- Fix hole where an ia64 vmcore could be mistakenly accepted as a
3e7521
  usable dumpfile on an x86_64 machine, leading eventually to a
3e7521
  non-related error message.
3e7521
* Wed Mar 02 2005 Dave Anderson <anderson@redhat.com> 3.10-12
3e7521
- rebuild (gcc 4)
3e7521
* Thu Feb 10 2005 Dave Anderson <anderson@redhat.com> 3.10-9
3e7521
- Updated source package to crash-3.10.tar.gz, containing
3e7521
  IBM's final ppc64 processor support for RHEL4
3e7521
- Fixes potential "bt -a" hang on dumpfile where netdump IPI interrupted
3e7521
  an x86 process while executing the instructions just after it had entered
3e7521
  the kernel for a syscall, but before calling the handler.  BZ #139437
3e7521
- Update to handle backtraces in dumpfiles generated on IA64 with the
3e7521
  INIT switch (functionality intro'd in RHEL3-U5 kernel).  BZ #139429
3e7521
- Fix for handling ia64 and x86_64 machines booted with maxcpus=1 on
3e7521
  an SMP kernel.  BZ #139435
3e7521
- Update to handle backtraces in dumpfiles generated on x86_64 from the
3e7521
  NMI exception stack (functionality intro'd in RHEL3-U5 kernel).
3e7521
- "kmem -[sS]" beefed up to more accurately verify slab cache chains
3e7521
  and report errors found.
3e7521
- Fix for ia64 INIT switch-generated backtrace handling when
3e7521
  init_handler_platform() is inlined into ia64_init_handler();
3e7521
  properly handles both RHEL3 and RHEL4 kernel patches.
3e7521
  BZ #138350
3e7521
- Update to enhance ia64 gdb disassembly output so as to
3e7521
  symbolically display call targets from kernel module
3e7521
  text without requiring module debuginfo data.
3e7521
3e7521
* Wed Jul 14 2004 Dave Anderson <anderson@redhat.com> 3.8-5
3e7521
- bump release for fc3
3e7521
3e7521
* Tue Jul 13 2004 Dave Anderson <anderson@redhat.com> 3.8-4
3e7521
- Fix for gcc 3.4.x/gdb issue where vmlinux was mistakenly presumed non-debug 
3e7521
3e7521
* Fri Jun 25 2004 Dave Anderson <anderson@redhat.com> 3.8-3
3e7521
- remove (harmless) error message during ia64 diskdump invocation when
3e7521
  an SMP system gets booted with maxcpus=1
3e7521
- several 2.6 kernel specific updates
3e7521
3e7521
* Thu Jun 17 2004 Dave Anderson <anderson@redhat.com> 3.8-2
3e7521
- updated source package to crash-3.8.tar.gz 
3e7521
- diskdump support
3e7521
- x86_64 processor support 
3e7521
3e7521
* Mon Sep 22 2003 Dave Anderson <anderson@redhat.com> 3.7-5
3e7521
- make bt recovery code start fix-up only upon reaching first faulting frame
3e7521
3e7521
* Fri Sep 19 2003 Dave Anderson <anderson@redhat.com> 3.7-4
3e7521
- fix "bt -e" and bt recovery code to recognize new __KERNEL_CS and DS
3e7521
3e7521
* Wed Sep 10 2003 Dave Anderson <anderson@redhat.com> 3.7-3
3e7521
- patch to recognize per-cpu GDT changes that redefine __KERNEL_CS and DS
3e7521
3e7521
* Wed Sep 10 2003 Dave Anderson <anderson@redhat.com> 3.7-2
3e7521
- patches for netdump active_set determination and slab info gathering 
3e7521
3e7521
* Wed Aug 20 2003 Dave Anderson <anderson@redhat.com> 3.7-1
3e7521
- updated source package to crash-3.7.tar.gz
3e7521
3e7521
* Wed Jul 23 2003 Dave Anderson <anderson@redhat.com> 3.6-1
3e7521
- removed Packager, Distribution, and Vendor tags
3e7521
- updated source package to crash-3.6.tar.gz 
3e7521
3e7521
* Fri Jul 18 2003 Jay Fenlason <fenlason@redhat.com> 3.5-2
3e7521
- remove ppc from arch list, since it doesn't work with ppc64 kernels
3e7521
- remove alpha from the arch list since we don't build it any more
3e7521
3e7521
* Fri Jul 18 2003 Matt Wilson <msw@redhat.com> 3.5-1
3e7521
- use %%defattr(-,root,root)
3e7521
3e7521
* Tue Jul 15 2003 Jay Fenlason <fenlason@redhat.com>
3e7521
- Updated spec file as first step in turning this into a real RPM for taroon.
3e7521
- Wrote man page.