diff options
Diffstat (limited to 'ham/yaesu/patches')
-rw-r--r-- | ham/yaesu/patches/patch-ab | 19 | ||||
-rw-r--r-- | ham/yaesu/patches/patch-ad | 23 |
2 files changed, 37 insertions, 5 deletions
diff --git a/ham/yaesu/patches/patch-ab b/ham/yaesu/patches/patch-ab index 760e1eb1c4b..29ae17a2310 100644 --- a/ham/yaesu/patches/patch-ab +++ b/ham/yaesu/patches/patch-ab @@ -1,8 +1,8 @@ -$NetBSD: patch-ab,v 1.2 2002/06/07 10:38:45 cjep Exp $ +$NetBSD: patch-ab,v 1.3 2002/06/15 21:57:53 dmcmahill Exp $ ---- README.orig Sun Sep 20 16:34:46 1998 +--- README.orig Sun Sep 20 11:34:46 1998 +++ README -@@ -34,8 +34,8 @@ +@@ -34,13 +34,20 @@ to make a note of it. Off to usage... Using my program is very simple, to execute it you must provide the com port @@ -13,3 +13,16 @@ $NetBSD: patch-ab,v 1.2 2002/06/07 10:38:45 cjep Exp $ type in the following... 'yaesu 3' + +-where 3 represents com4. Once you have gotten this far with the correct port, ++where 3 represents com4. ++ ++If you need to use a different device, you can specify that with -p serial_device, ++for example: ++ ++ yaesu -p /dev/ttyC1 ++ ++Once you have gotten this far with the correct port, + the program's menu should guide you along. Please see the bug list, disclaimer + and copying section below. + diff --git a/ham/yaesu/patches/patch-ad b/ham/yaesu/patches/patch-ad index a3a2ae5303a..33e72b209ff 100644 --- a/ham/yaesu/patches/patch-ad +++ b/ham/yaesu/patches/patch-ad @@ -1,6 +1,9 @@ -$NetBSD: patch-ad,v 1.4 2002/06/15 21:27:25 wiz Exp $ +$NetBSD: patch-ad,v 1.5 2002/06/15 21:57:54 dmcmahill Exp $ ---- main.c.orig Sat Nov 4 23:48:33 1995 +the addition of the -p flag is required for non-PC machines which +might use a different serial device. + +--- main.c.orig Sat Nov 4 17:48:33 1995 +++ main.c @@ -5,7 +5,6 @@ #include <stdlib.h> @@ -48,3 +51,19 @@ $NetBSD: patch-ad,v 1.4 2002/06/15 21:27:25 wiz Exp $ exit(3); } break; +@@ -130,6 +129,15 @@ + printf("Invalid serial port number!!!\n Remember: com1 is 0, com2 is 1, etc.\n"); + return(-1); + } ++ } else if (argc == 3) { ++ if (strcmp("-p",argv[1]) != 0) { ++ perror("Invalid flag"); ++ exit(3); ++ } ++ if ((fdSer = open(argv[2], O_RDWR )) < 0) { ++ perror("open of serial port failed"); ++ exit(3); ++ } + } else { + printf("usage: yaesu [port #]\n"); + exit(3); |