aboutsummaryrefslogtreecommitdiff
path: root/usr.sbin/dconschat
Commit message (Collapse)AuthorAgeFilesLines
* use .Mt to mark up email addresses consistently (part2)Baptiste Daroussin2014-06-201-1/+1
| | | | | | | | PR: 191174 Submitted by: Franco Fichtner <franco@lastsummer.de> Notes: svn path=/head/; revision=267668
* Fix the following warning from clang trunk:Dimitry Andric2012-03-191-1/+4
| | | | | | | | | | | | | | | usr.sbin/dconschat/dconschat.c:163:65: error: format specifies type 'size_t' (aka 'unsigned int') but the argument has type 'off_t' (aka 'long long') [-Werror,-Wformat] snprintf(buf, PAGE_SIZE, "\r\n[dconschat reset target(addr=0x%zx)...]\r\n", dc->reset); ~~^ ~~~~~~~~~ %llx Silence this by casting dc->reset to intmax_t, and using the appropriate length modifier. While here, wrap the line to a 80 character margin. MFC after: 3 days Notes: svn path=/head/; revision=233195
* mdoc: drop redundant .Pp and .LP callsUlrich Spörlein2010-10-081-1/+0
| | | | | | | They have no effect when coming in pairs, or before .Bl/.Bd Notes: svn path=/head/; revision=213573
* mdoc: .Ud has attitude, it takes no argument!Ulrich Spörlein2010-05-271-1/+1
| | | | Notes: svn path=/head/; revision=208596
* The last big commit: let usr.sbin/ use WARNS=6 by default.Ed Schouten2010-01-021-0/+2
| | | | Notes: svn path=/head/; revision=201390
* Include <sys/wait.h> and <signal.h> for wait() and kill().Ed Schouten2009-06-141-0/+2
| | | | Notes: svn path=/head/; revision=194187
* Set the default escape character as described in the manpage of dconschat(8).Hidetoshi Shimokawa2007-07-121-1/+4
| | | | | | | | | | Fix a cut-and-paste error. Spotted by: avatar Approved by: re (rwatson) Notes: svn path=/head/; revision=171397
* - Add an option to change escape character.Hidetoshi Shimokawa2007-06-152-33/+122
| | | | | | | | | - Use CTRL macro. - Make target reset work on telnet port. - Add a key bind to invoke kgdb on the terminal. (experimental) Notes: svn path=/head/; revision=170775
* Reset dc->paddr and dc->reset if we cannot read configuration ROM.Hidetoshi Shimokawa2007-06-081-1/+1
| | | | Notes: svn path=/head/; revision=170433
* Clean up escape sequence handling and add support forHidetoshi Shimokawa2007-06-082-24/+103
| | | | | | | resetting target and suspending dconschat. Notes: svn path=/head/; revision=170422
* Add heuristics for smooth reconnection.Hidetoshi Shimokawa2007-06-071-4/+22
| | | | Notes: svn path=/head/; revision=170399
* Discard backlog on GDB port when connected.Hidetoshi Shimokawa2007-05-311-0/+10
| | | | | | | MFC after: 3 days Notes: svn path=/head/; revision=170146
* Fix typos in comments.Stefan Farfeleder2005-03-111-3/+3
| | | | Notes: svn path=/head/; revision=143416
* Use socklen_t where appropriate.Stefan Farfeleder2005-03-111-3/+4
| | | | Notes: svn path=/head/; revision=143415
* Remove unnecessary SRCS= where could be guessed directly by ourXin LI2005-01-271-1/+0
| | | | | | | | | bsd.*.mk infrasture. Obtained from: ru Notes: svn path=/head/; revision=140909
* Sort sections.Ruslan Ermilov2005-01-181-6/+6
| | | | Notes: svn path=/head/; revision=140442
* Invalidate dcons buffer address if the magic is wrong.Hidetoshi Shimokawa2004-09-261-1/+5
| | | | Notes: svn path=/head/; revision=135821
* Assorted markup, grammar, and spelling fixes.Ruslan Ermilov2004-06-131-58/+131
| | | | Notes: svn path=/head/; revision=130420
* Use new eui64(3) functions to print EUI-64s and to allow access to nodesBrooks Davis2004-05-262-9/+13
| | | | | | | | | by EUI-64 and name. Reviewed by: simokawa Notes: svn path=/head/; revision=129760
* Normalize polling interval while the target is offline.Hidetoshi Shimokawa2004-02-202-7/+13
| | | | Notes: svn path=/head/; revision=126038
* Increase MAXDEV up to 10.Hidetoshi Shimokawa2003-11-091-1/+1
| | | | Notes: svn path=/head/; revision=122356
* Cosmetic change.Hidetoshi Shimokawa2003-11-071-2/+2
| | | | Notes: svn path=/head/; revision=122224
* update for conserver-8.0.4.Hidetoshi Shimokawa2003-10-251-2/+10
| | | | Notes: svn path=/head/; revision=121504
* remove debug message.Hidetoshi Shimokawa2003-10-251-1/+0
| | | | Notes: svn path=/head/; revision=121503
* Add dumb console driver and related bits.Hidetoshi Shimokawa2003-10-243-0/+1200
dcons(4): very simple console and gdb port driver dcons_crom(4): FireWire attachment dconschat(8): User interface to dcons Tested with: i386, i386-PAE, and sparc64. Notes: svn path=/head/; revision=121468