History log of /freebsd-current/usr.sbin/dconschat/dconschat.c
Revision Date Author Comments
# 42b38843 16-Aug-2023 Warner Losh <imp@FreeBSD.org>

Remove $FreeBSD$: one-line .h pattern

Remove /^\s*\*+\s*\$FreeBSD\$.*$\n/


# b23e15e1 02-Mar-2023 Elyes Haouas <ehaouas@noos.fr>

dconschat: Remove useless return at the end of void function

Signed-off-by: Elyes Haouas <ehaouas@noos.fr>
Reviewed by: imp
Pull Request: https://github.com/freebsd/freebsd-src/pull/656


# 7bef61ee 24-Oct-2022 Gordon Bergling <gbe@FreeBSD.org>

dconschat(8): Fix a typo in an error message

- s/faild/failed/

MFC after: 1 week


# 8ef97d2b 20-Apr-2021 Warner Losh <imp@FreeBSD.org>

dconschat: Remove support for FreeBSD 4.x and earlier.

Sponsored by: Netflix


# df57947f 18-Nov-2017 Pedro F. Giffuni <pfg@FreeBSD.org>

spdx: initial adoption of licensing ID tags.

The Software Package Data Exchange (SPDX) group provides a specification
to make it easier for automated tools to detect and summarize well known
opensource licenses. We are gradually adopting the specification, noting
that the tags are considered only advisory and do not, in any way,
superceed or replace the license texts.

Special thanks to Wind River for providing access to "The Duke of
Highlander" tool: an older (2014) run over FreeBSD tree was useful as a
starting point.

Initially, only tag files that use BSD 4-Clause "Original" license.

RelNotes: yes
Differential Revision: https://reviews.freebsd.org/D13133


# 32376289 28-Jun-2015 Pedro F. Giffuni <pfg@FreeBSD.org>

dconschat(8): Use NULL instead of 0 for the last argument in execl(3)

Found while experimenting with the gcc sentinel attribute.

MFC after: 3 days


# 0aa9d419 19-Mar-2012 Dimitry Andric <dim@FreeBSD.org>

Fix the following warning from clang trunk:

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


# a7d5f7eb 19-Oct-2010 Jamie Gritton <jamie@FreeBSD.org>

A new jail(8) with a configuration file, to replace the work currently done
by /etc/rc.d/jail.


# fe0506d7 09-Mar-2010 Marcel Moolenaar <marcel@FreeBSD.org>

Create the altix project branch. The altix project will add support
for the SGI Altix 350 to FreeBSD/ia64. The hardware used for porting
is a two-module system, consisting of a base compute module and a
CPU expansion module. SGI's NUMAFlex architecture can be an excellent
platform to test CPU affinity and NUMA-aware features in FreeBSD.


# 32cf31fa 13-Jun-2009 Ed Schouten <ed@FreeBSD.org>

Include <sys/wait.h> and <signal.h> for wait() and kill().


# d7f03759 19-Oct-2008 Ulf Lilleengen <lulf@FreeBSD.org>

- Import the HEAD csup code which is the basis for the cvsmode work.


# 3992d42c 12-Jul-2007 Hidetoshi Shimokawa <simokawa@FreeBSD.org>

Set the default escape character as described in the manpage of dconschat(8).
Fix a cut-and-paste error.

Spotted by: avatar
Approved by: re (rwatson)


# 8bd69949 14-Jun-2007 Hidetoshi Shimokawa <simokawa@FreeBSD.org>

- Add an option to change escape character.
- Use CTRL macro.
- Make target reset work on telnet port.
- Add a key bind to invoke kgdb on the terminal. (experimental)


# 2ac79858 07-Jun-2007 Hidetoshi Shimokawa <simokawa@FreeBSD.org>

Reset dc->paddr and dc->reset if we cannot read configuration ROM.


# 0311fbe1 07-Jun-2007 Hidetoshi Shimokawa <simokawa@FreeBSD.org>

Clean up escape sequence handling and add support for
resetting target and suspending dconschat.


# f6416cb4 06-Jun-2007 Hidetoshi Shimokawa <simokawa@FreeBSD.org>

Add heuristics for smooth reconnection.


# 820f6fa9 30-May-2007 Hidetoshi Shimokawa <simokawa@FreeBSD.org>

Discard backlog on GDB port when connected.

MFC after: 3 days


# c9a4ff25 11-Mar-2005 Stefan Farfeleder <stefanf@FreeBSD.org>

Fix typos in comments.


# 595e5323 11-Mar-2005 Stefan Farfeleder <stefanf@FreeBSD.org>

Use socklen_t where appropriate.


# 00fab05d 25-Sep-2004 Hidetoshi Shimokawa <simokawa@FreeBSD.org>

Invalidate dcons buffer address if the magic is wrong.


# cb5df0b2 26-May-2004 Brooks Davis <brooks@FreeBSD.org>

Use new eui64(3) functions to print EUI-64s and to allow access to nodes
by EUI-64 and name.

Reviewed by: simokawa


# 7d72cc56 20-Feb-2004 Hidetoshi Shimokawa <simokawa@FreeBSD.org>

Normalize polling interval while the target is offline.


# 0e49db83 09-Nov-2003 Hidetoshi Shimokawa <simokawa@FreeBSD.org>

Increase MAXDEV up to 10.


# 3a97f68f 07-Nov-2003 Hidetoshi Shimokawa <simokawa@FreeBSD.org>

Cosmetic change.


# be162aff 25-Oct-2003 Hidetoshi Shimokawa <simokawa@FreeBSD.org>

remove debug message.


# 869093b1 24-Oct-2003 Hidetoshi Shimokawa <simokawa@FreeBSD.org>

Add dumb console driver and related bits.

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.