# HG changeset patch # User Mychaela Falconia # Date 1477495709 0 # Node ID 819335e06fd16a4fccd7dd22f44329319cbdb132 # Parent cedd12ebf35a60640518915171eaa73adcd1f06e c139explore and pirexplore host wrapper shell scripts added diff -r cedd12ebf35a -r 819335e06fd1 miscutil/Makefile --- a/miscutil/Makefile Wed Oct 26 07:48:29 2016 +0000 +++ b/miscutil/Makefile Wed Oct 26 15:28:29 2016 +0000 @@ -1,6 +1,7 @@ CC= gcc CFLAGS= -O2 PROGS= fc-fr2tch fc-rgbconv fc-serterm fc-tch2fr imei-luhn +SCRIPTS=c139explore pirexplore INSTBIN=/opt/freecalypso/bin all: ${PROGS} @@ -29,7 +30,7 @@ install: mkdir -p ${INSTBIN} - install -c ${PROGS} ${INSTBIN} + install -c ${PROGS} ${SCRIPTS} ${INSTBIN} clean: rm -f ${PROGS} *.o *errs *.out diff -r cedd12ebf35a -r 819335e06fd1 miscutil/c139explore --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/miscutil/c139explore Wed Oct 26 15:28:29 2016 +0000 @@ -0,0 +1,10 @@ +#!/bin/sh + +if [ $# != 1 ] +then + echo "usage: $0 ttyport" 1>&2 + exit 1 +fi + +fcdir=/opt/freecalypso +exec $fcdir/bin/fc-compalram "$1" $fcdir/target-bin/c139explore.bin diff -r cedd12ebf35a -r 819335e06fd1 miscutil/pirexplore --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/miscutil/pirexplore Wed Oct 26 15:28:29 2016 +0000 @@ -0,0 +1,10 @@ +#!/bin/sh + +if [ $# != 1 ] +then + echo "usage: $0 ttyport" 1>&2 + exit 1 +fi + +fcdir=/opt/freecalypso +exec $fcdir/bin/fc-iram -h pirelli "$1" $fcdir/target-bin/pirexplore.srec