FreeCalypso > hg > freecalypso-tools
view miscutil/Makefile @ 921:74d284add54d
fc-fsio: guard against bogus readdir results from the target
If the FFS being operated on contains SE K2x0 extended filenames,
readdir will return strings that are bad for printing. We need to
guard against this possibility, and also against possible other
bogosity that could be sent by other alien firmwares.
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Sat, 31 Dec 2022 22:55:23 +0000 (2022-12-31) |
parents | 8ddb16a37273 |
children |
line wrap: on
line source
CC= gcc CFLAGS= -O2 PROGS= arfcn2ti fc-pulse-dtr fc-pulse-rts fc-rgbconv fc-serterm imei-luhn \ make-imeisv mokosrec2bin srec-regions ti2arfcn SCRIPTS=c139explore pirexplore INSTALL_PREFIX= /opt/freecalypso INSTBIN=${INSTALL_PREFIX}/bin all: ${PROGS} SERTERM_OBJS= fc-serterm.o ttypassthru.o ../libserial/libserial.a arfcn2ti: arfcn2ti.c ${CC} ${CFLAGS} -o $@ $@.c fc-pulse-dtr: fc-pulse-dtr.c ${CC} ${CFLAGS} -o $@ $@.c fc-pulse-rts: fc-pulse-rts.c ${CC} ${CFLAGS} -o $@ $@.c fc-rgbconv: fc-rgbconv.c ${CC} ${CFLAGS} -o $@ $@.c fc-serterm: ${SERTERM_OBJS} ${CC} ${CFLAGS} -o $@ ${SERTERM_OBJS} ttypassthru.o: ../loadtools/ttypassthru.c ${CC} ${CFLAGS} -c -o $@ $< imei-luhn: imei-luhn.c ${CC} ${CFLAGS} -o $@ $@.c make-imeisv: make-imeisv.c ${CC} ${CFLAGS} -o $@ $@.c mokosrec2bin: mokosrec2bin.c ${CC} ${CFLAGS} -o $@ $@.c srec-regions: srec-regions.c ${CC} ${CFLAGS} -o $@ $@.c ti2arfcn: ti2arfcn.c ${CC} ${CFLAGS} -o $@ $@.c install: mkdir -p ${INSTBIN} install -c ${PROGS} ${SCRIPTS} ${INSTBIN} clean: rm -f ${PROGS} *.o *errs *.out