FreeCalypso > hg > freecalypso-tools
view rvinterf/Makefile @ 505:7bf0d909c87e
fc-loadtool flash ID check: change of reset after the check logic
This change only affects those flash configurations that have ID checks
enabled. The logic for resetting the flash after the ID check has been
changed as follows:
1) If the check fails, we return without attempting to reset the flash.
2) If the check is successful, we reset the flash using the configured
method (could be AMD or Intel or Intel W30) instead of always doing an
AMD flash reset as the original code did.
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Mon, 27 May 2019 19:58:01 +0000 |
parents | f2a040324509 |
children | ab20ff8156ea |
line wrap: on
line source
CC= gcc CFLAGS= -O2 PROGDIR=asyncshell ctracedec etmsync lowlevel rvtat tmsh LIBDIR= libasync libg23 libinterf SUBDIR= ${PROGDIR} ${LIBDIR} INSTALL_PREFIX= /opt/freecalypso INCLUDE_INSTALL_DIR= ${INSTALL_PREFIX}/include/rvinterf all: ${SUBDIR} asyncshell: libasync libg23 libinterf etmsync: libinterf lowlevel: libg23 rvtat: libinterf tmsh: libasync libinterf ${SUBDIR}: FRC cd $@; ${MAKE} ${MFLAGS} CC=${CC} CFLAGS="${CFLAGS}" clean: FRC rm -f a.out core errs for i in ${SUBDIR}; do (cd $$i; ${MAKE} ${MFLAGS} clean); done install: FRC for i in ${PROGDIR}; do (cd $$i; ${MAKE} ${MFLAGS} \ INSTALL_PREFIX=${INSTALL_PREFIX} install); done mkdir -p ${INCLUDE_INSTALL_DIR} install -c -m 644 include/* ${INCLUDE_INSTALL_DIR} FRC: