view loadtools/install-helpers.sh @ 853:ae254ffeaec3

AT command interface works! The cause of the breakage was the same Nucleus API issue with NU_Create_Timer() which we encountered at the very beginning of this project with Riviera timers: the code in uartfax.c from TCS211 was passing 0 as the initial dummy value for the timer duration, and our FreeNucleus version doesn't like it. The fix is the same: pass 1 as the initial dummy value instead.
author Space Falcon <falcon@ivan.Harhan.ORG>
date Thu, 30 Apr 2015 01:46:26 +0000
parents 7ef814efbebe
children
line wrap: on
line source

#!/bin/sh
# A functional installation of FreeCalypso loadtools consists of not only
# the fc-* host binaries, but also the loadagent and compalstage target
# binaries and some script and help files.  This shell script is
# responsible for installing the latter.

instdir=/usr/local/share/freecalypso
set -ex
mkdir -p $instdir

# The target-binaries directory may or may not be present.  Loadagent and
# compalstage are built in the target-utils tree with the ARM7 toolchain,
# hence having prebuilt binaries would be an important convenience for
# end user releases.  But if one is working with just a source tree, with
# nothing prebuilt, there will be no target-binaries directory here;
# one needs to have the ARM7 toolchain installed, then build target-utils,
# then do a 'make install' there.

if [ -d target-binaries ]
then
	install -c target-binaries/* $instdir
fi

# scripts and loadtool.help should always be present
install -c scripts/* loadtool.help $instdir