summaryrefslogtreecommitdiff
path: root/gnu/usr.bin
Commit message (Collapse)AuthorAgeFilesLines
* Copy releng/6.4 to release/6.4.0 in preparation for 6.4-RELEASE.release/6.4.0_cvsKen Smith2008-11-26402-403/+403
| | | | | | Approved by: re (implicit) This commit was manufactured to restore the state of the 6.4-RELEASE image.
* MFC: Enable use of 'tid' for remote targets and use gdb_thread_select()John Baldwin2008-05-098-43/+37
| | | | | | | | for 'tid' and 'proc' so they provide UI feedback like the 'thread' command. Notes: svn path=/stable/6/; revision=178879
* MFC: Rework how kgdb manages kernel and vmcore files to be a bit moreJohn Baldwin2008-05-0911-170/+323
| | | | | | | | gdb-ish. Specifically, you can now use the 'file' and 'core' commands. Also, the kernel module stuff now works for remote targets. Notes: svn path=/stable/6/; revision=178878
* MFC: Add 'fbsdcoreops_suppress_target' to support kgdb having its ownJohn Baldwin2008-05-091-2/+11
| | | | | | | coredump target and adjust core dump target's long name and documentation. Notes: svn path=/stable/6/; revision=178876
* MFC: Remove the 'add_kld_command' arg from load_kld().John Baldwin2008-05-051-12/+5
| | | | Notes: svn path=/stable/6/; revision=178788
* MFC of new 'arm' category.Mark Linimon2008-04-232-0/+4
| | | | Notes: svn path=/stable/6/; revision=178434
* Move our ".mcount" bits around a little.David E. O'Brien2008-04-182-10/+0
| | | | Notes: svn path=/stable/6/; revision=178301
* MFC: Add the 'tid' command to select a thread using a kernel thread ID.John Baldwin2008-04-031-0/+28
| | | | Notes: svn path=/stable/6/; revision=177890
* MFC: Initialize list of kld's correctly when there are no kld's and catchJohn Baldwin2008-04-032-6/+10
| | | | | | | | errors in kgdb_parse() so it returns 0 for invalid expressions. This fixes the kld loading for 6.x and 7.x. Notes: svn path=/stable/6/; revision=177889
* MFC: Mostly sync kgdb with HEAD including the following changes:John Baldwin2008-02-256-17/+35
| | | | | | | | | | | | | | | - Add a new 'add-kld <kld>' command to locate a kld and load its symbols. - If the quiet flag is specified, don't dump the unread portion of the message buffer on startup. - Remove the warnx() from kgdb_lookup() and add it in callers where a failed lookup is warning worthy. - Add a shared library backend for kernel files that treats klds as shared libraries and auto-load symbols for klds on startup. - Build a section table from the kernel file so that 'info files' output looks sane. Notes: svn path=/stable/6/; revision=176570
* This commit was manufactured by cvs2svn to create branch 'RELENG_6'.cvs2svn2008-01-291-0/+479
| | | | Notes: svn path=/stable/6/; revision=175810
* MFC: product of patch(1)David E. O'Brien2007-12-041-0/+2
| | | | Notes: svn path=/stable/6/; revision=174260
* GC this patch.David E. O'Brien2007-12-031-54/+0
| | | | Notes: svn path=/stable/6/; revision=174237
* MFC:David E. O'Brien2007-12-034-3/+15
| | | | | | | | | + Turn on gdbserver for the arch that supports it. + Fix static/extern mismatch. + Remove extern int verbose declaration. Notes: svn path=/stable/6/; revision=174227
* MFC:Olivier Houchard2007-12-025-5/+43
| | | | | | | | | | | | | | | gnu/usr.bin/gdb/arch/arm/nm-fbsd.h rev 1.2 gnu/usr.bin/gdb/arch/arm/Makefile rev 1.2 gnu/usr.bin/gdb/arch/arm/armfbsd-nat.c 1.2 gnu/usr.bin/gdb/arch/arm/armfbsd-tdep.c rev 1.2 gnu/usr.bin/gdb/arch/arm/init.c rev 1.2 Allow gdb to attach live process. Thread support for arm. Approved by: re (kensmith) Notes: svn path=/stable/6/; revision=174179
* MFC: Teach kgdb how to handle double fault frames on i386.John Baldwin2007-11-213-1/+154
| | | | | | | Approved by: re (kensmith) Notes: svn path=/stable/6/; revision=173829
* MFC: Add the bump of the doc date missed in previous MFC.John Baldwin2007-11-171-1/+2
| | | | Notes: svn path=/stable/6/; revision=173694
* MFC: Some minor whitespace and style fixes.John Baldwin2007-11-173-10/+8
| | | | Notes: svn path=/stable/6/; revision=173693
* MFC: Document -w flag.John Baldwin2007-11-171-0/+8
| | | | Notes: svn path=/stable/6/; revision=173692
* MFC: Rename the private lookup() routine in kthr.c to kgdb_lookup() andJohn Baldwin2007-11-172-7/+9
| | | | | | | make it public so other parts of kgdb can use it. Notes: svn path=/stable/6/; revision=173691
* MFC: Updated mdoc (FreeBSD 6.2 added, FreeBSD 5.5 and 7.0 documented,Ruslan Ermilov2007-10-041-1/+0
| | | | | | | | | better names for System V releases [1]). PR: docs/68845 [1] Notes: svn path=/stable/6/; revision=172435
* MFC: Added FreeBSD/arm and FreeBSD 6.3. FreeBSD 5.5 and 7.0 are official.Ruslan Ermilov2007-10-021-2/+4
| | | | Notes: svn path=/stable/6/; revision=172415
* MFC: Fix man(1) to allow .so to reference a compressed fileEdwin Groothuis2007-09-281-0/+15
| | | | | | | | | | | | | | | | | | | | | | Original PR description: man(1) can't handle compressed included files. Some ports will install with compressed manpages. man handles this by looking for the .gz version of a man source file. It is also common to include other files with the .so directive where commands or functions share a man page. Traditionally ports have had to handle this by either not compressing the manpages, or using the _MLINKS macro in the port makefile to create symlinks to the actual source file, rather than using .so versions. Notably, the current version of Xorg port breaks. See ports/113096 and ports/115845. PR: bin/115850 Submitted by: Callum Gibson <callumgibson@optusnet.com.au> Notes: svn path=/stable/6/; revision=172361
* Enable 'LD_LIBRARY_PATH=/foo:/bar ld -lfooz'David E. O'Brien2007-09-161-2/+6
| | | | | | | PR: 96481 Notes: svn path=/stable/6/; revision=172194
* MFC: Treat the frame under 'nmi_calltrap' as a trapframe.John Baldwin2007-08-271-0/+1
| | | | Notes: svn path=/stable/6/; revision=171993
* MFC: diffutils 2.8.7.Xin LI2007-07-157-937/+52
| | | | Notes: svn path=/stable/6/; revision=171454
* This commit was manufactured by cvs2svn to create branch 'RELENG_6'.cvs2svn2007-06-174-0/+119
| | | | Notes: svn path=/stable/6/; revision=170858
* MFC: Don't lie about saved reports.Philip Paeps2007-06-031-1/+1
| | | | | | | | PR: gnu/89777 Submitted by: edwin Notes: svn path=/stable/6/; revision=170238
* MFC: Fix PowerPC-targeted cross-builds performed on 64-bit platforms.Marcel Moolenaar2007-03-282-4/+6
| | | | | | | | | | Makefile.inc0:1.38 libbfd/bfd.h:1.4 PR: amd64/102996 Notes: svn path=/stable/6/; revision=167966
* MFC fbsd-threads.c 1.16:Ed Maste2007-02-271-7/+12
| | | | | | | | Avoid writing uninitialized stack data into a thread's MMX/SSE state by first getting the current state with td_thr_getxmmregs_p. Notes: svn path=/stable/6/; revision=167047
* MFC: Replace gzip(1) with the BSD licensed version found in -HEAD.Xin LI2007-02-2043-10980/+0
| | | | | | | | | Discussed with: re, so, portmgr (kris) All bugs are mine. Notes: svn path=/stable/6/; revision=166840
* MFC 1.6:Craig Rodrigues2007-02-021-2/+7
| | | | | | | | | | | Try to avoid a possible infinite loop when parsing an invalid kernel dump file. PR: 108229 Submitted by: Jessica Han <jessicah juniper net> Notes: svn path=/stable/6/; revision=166428
* MFC 1.89: Build gperf(1) on PowerPC.Marcel Moolenaar2007-01-071-2/+0
| | | | Notes: svn path=/stable/6/; revision=165848
* MFC: configure for for big endian if __ARMEB__ or TARGET_BYTES_BIG_ENDIANDavid E. O'Brien2006-11-061-2/+2
| | | | | | | | | is defined. Approved by: re(KEN) Notes: svn path=/stable/6/; revision=164017
* MFC: ARM support.David E. O'Brien2006-11-062-2/+5
| | | | | | | Approved by: re(KEN) Notes: svn path=/stable/6/; revision=164016
* Sync up to CURRENT and note the -P option is not supported on FreeBSD.Tom Rhodes2006-11-031-0/+1
| | | | | | | | | PR: 99831 Reviewed by: ru Approved by: re (hrs) Notes: svn path=/stable/6/; revision=163943
* MFC revision 1.20:Ceri Davies2006-10-231-4/+6
| | | | | | | | | Update the FILES section which has been wrong for some time. Approved by: re (hrs) Notes: svn path=/stable/6/; revision=163635
* MFC: GNU cpio 2.6 (original committed by tjr@)Xin LI2006-10-232-15/+54
| | | | | | | Approved by: re (hrs) Notes: svn path=/stable/6/; revision=163620
* MFC: build 'as' for big endian if "TARGET_BIG_ENDIAN" is defined.David E. O'Brien2006-10-161-0/+3
| | | | | | | Approved by: re(KEN) Notes: svn path=/stable/6/; revision=163438
* MFC revision 1.19:Ceri Davies2006-10-151-1/+4
| | | | | | | | | Document the sun4v category. Approved by: re (bmah) Notes: svn path=/stable/6/; revision=163383
* MFC: rev. 1.11: -w kgdb kmem-based read-write mode.David E. O'Brien2006-10-111-3/+8
| | | | | | | Approved by: re(KEN) Notes: svn path=/stable/6/; revision=163243
* MFC: add some preliminary ARM supportDavid E. O'Brien2006-09-291-0/+10
| | | | | | | Approved by: re(KEN) Notes: svn path=/stable/6/; revision=162755
* MFC: rev 1.19: change platform name.David E. O'Brien2006-09-291-1/+1
| | | | | | | Approved by: re(KEN) Notes: svn path=/stable/6/; revision=162754
* MFC: default to big endian ARM if "TARGET_BIG_ENDIAN" is defined.David E. O'Brien2006-09-292-0/+7
| | | | | | | Approved by: re(KEN) Notes: svn path=/stable/6/; revision=162753
* MFC: rev 1.25: remove redundant defines alerady set.David E. O'Brien2006-09-291-3/+0
| | | | | | | Approved by: re(KEN) Notes: svn path=/stable/6/; revision=162752
* Whitespace sync with HEAD.David E. O'Brien2006-09-291-3/+2
| | | | | | | Approved by: re(ken) Notes: svn path=/stable/6/; revision=162751
* MFC: Bring GCC manpages back to reality.Ruslan Ermilov2006-09-252-7/+2
| | | | | | | Approved by: re (kensmith) Notes: svn path=/stable/6/; revision=162611
* Correct multiple vulnerabilities in gzip(1).Simon L. B. Nielsen2006-09-194-20/+25
| | | | | | | | Security: FreeBSD-SA-06:21.gzip Approved by: re (kensmith, bmah) Notes: svn path=/stable/6/; revision=162442
* This commit was manufactured by cvs2svn to create branch 'RELENG_6'.cvs2svn2006-09-1614-0/+1814
| | | | Notes: svn path=/stable/6/; revision=162355
* I was told this part of the bump to 6.2 was premature, it reallyKen Smith2006-09-161-1/+1
| | | | | | | | | | does need to wait until 6.2 is out. Told by: ru@ Approved by: re (implicit) Notes: svn path=/stable/6/; revision=162337