summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorUwe Kleine-König <u.kleine-koenig@pengutronix.de>2014-09-22 10:16:56 +0200
committerUwe Kleine-König <u.kleine-koenig@pengutronix.de>2014-09-22 10:17:18 +0200
commitdb57bb677de2c2dba087d9cfd041ba08c5c49a98 (patch)
tree508604a55e69a33af9a59f54b4d0ad91ef47e821
parent44a61a26c5f3966957c4f7a203a667bf64e4060a (diff)
downloadmicrocom-db57bb677de2c2dba087d9cfd041ba08c5c49a98.tar.gz
microcom-db57bb677de2c2dba087d9cfd041ba08c5c49a98.tar.xz
release 2014.09.0v2014.09.0
-rw-r--r--ChangeLog33
-rw-r--r--Makefile2
2 files changed, 34 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index b239bc8..af2751f 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,36 @@
+2014-09-22 Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
+
+ * Makefile: release 2014.09.0
+
+2014-09-11 Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
+
+ * telnet.c: make telnet mode address family agnostic Use getaddrinfo et al
+ over gethostbyname. This allows (depending on system configuration) to use
+ ipv6 connections. As an added bonus allow specifying ipv6 addresses in the
+ usual square bracketed syntax.
+
+2014-02-18 Sascha Hauer <s.hauer@pengutronix.de>
+
+ * mux.c: Only send answerback string if one is set
+
+2014-02-12 Sascha Hauer <s.hauer@pengutronix.de>
+
+ * mux.c: factor out handle_receive_buf function Instead of handling special
+ characters in two places.
+
+ * microcom.c, microcom.h, mux.c: Add ENQ/answerback support This adds
+ support for a configurable answerback string for an enquiry character (ENQ,
+ ASCII 0x5). The answerback string can be specified using the --answerback
+ option. If this option is not given, no answerback string is sent which is
+ the behaviour without this patch.
+
+ * microcom.c: update help text Document the long options and some missing
+ options.
+
+2014-02-11 Sascha Hauer <s.hauer@pengutronix.de>
+
+ * mux.c: remove unnecessary return
+
2014-02-11 Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
* ChangeLog, Makefile: release 2014.02.0
diff --git a/Makefile b/Makefile
index e759cf9..a5e1c01 100644
--- a/Makefile
+++ b/Makefile
@@ -21,7 +21,7 @@
CFLAGS += -Wall -O2 -g
LDLIBS += -lreadline -lpthread
-CPPFLAGS += -DPKG_VERSION="\"2014.02.0\"" -DPF_CAN=29 -DAF_CAN=PF_CAN
+CPPFLAGS += -DPKG_VERSION="\"2014.09.0\"" -DPF_CAN=29 -DAF_CAN=PF_CAN
microcom: microcom.o mux.o serial.o telnet.o can.o commands.o parser.o commands_fsl_imx.o