diff options
author | dmcmahill <dmcmahill@pkgsrc.org> | 2002-06-15 21:57:53 +0000 |
---|---|---|
committer | dmcmahill <dmcmahill@pkgsrc.org> | 2002-06-15 21:57:53 +0000 |
commit | 5f7a574461e5b3eac7f35a32b9e813c7c2ac6b0a (patch) | |
tree | 3e085c6f6111d5017f05f3002fb3cd6d92820d29 /ham/yaesu/patches/patch-ad | |
parent | 4aa068ea115713f9237f62ae1495aef3e36f25ad (diff) | |
download | pkgsrc-5f7a574461e5b3eac7f35a32b9e813c7c2ac6b0a.tar.gz |
add '-p device_name' option so that non-PC platforms can use the program.
The previous behaviour was to hard code /dev/ttyE{0,1,2,3} as the only
device choices.
Diffstat (limited to 'ham/yaesu/patches/patch-ad')
-rw-r--r-- | ham/yaesu/patches/patch-ad | 23 |
1 files changed, 21 insertions, 2 deletions
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); |