view loadtools/Makefile @ 884:353daaa6014d

gsm-fw/gpf/conf/gsmcomp.c: increased max partition in the voice-only config The code we got from TCS211 had the maximum prim pool partition size set to 900 bytes in the voice-only config (no FAX_AND_DATA, no GPRS) and to 1600 bytes in every other config. As it turns out, this "minimized" config breaks when the AT command interface is used with %CPI enabled, as the responsible code in ATI does an ACI_MALLOC of 1012 bytes. TI may have considered this case to be unsupported usage (perhaps they didn't care about the combination of a voice-only PS with AT command control), but we do want this use case to work without crashing. Solution: I made the largest prim pool the same as it is with FAX_AND_DATA: 3 partitions of 1600 bytes.
author Space Falcon <falcon@ivan.Harhan.ORG>
date Sat, 27 Jun 2015 07:31:30 +0000
parents bf49e348576b
children 86ff6d0b0a97
line wrap: on
line source

CC=	gcc
CFLAGS=	-O2
PROGS=	fc-iram fc-loadtool fc-xram
INSTBIN=/usr/local/bin

EXTRA_OBJ=	compalload.o

IRAM_OBJS=	defpath.o hexdecode.o hwparam.o hwparamstubs.o romload.o \
		sercomm.o sertool.o srecreader.o ttypassthru.o ${EXTRA_OBJ}

LOADTOOL_OBJS=	crc32tab.o defpath.o flashops.o flcmplboot.o flmain.o flmisc.o \
		flprogbin.o flprogsrec.o flutil.o hexdecode.o hwparam.o \
		labaud.o ltdispatch.o ltdump.o ltexit.o lthelp.o ltmain.o \
		ltmisc.o ltpassthru.o ltscript.o romload.o sercomm.o \
		srecreader.o tpinterf.o tpinterf2.o tpinterf3.o ${EXTRA_OBJ}

XRAM_OBJS=	chainload.o clmain.o defpath.o hexdecode.o hwparam.o \
		hwparamstubs.o initscript.o labaud.o romload.o sercomm.o \
		srecreader.o tpinterf.o ttypassthru.o ${EXTRA_OBJ}

all:	${PROGS}

fc-iram:	${IRAM_OBJS}
	${CC} ${CFLAGS} -o $@ ${IRAM_OBJS}

fc-loadtool:	${LOADTOOL_OBJS}
	${CC} ${CFLAGS} -o $@ ${LOADTOOL_OBJS}

fc-xram:	${XRAM_OBJS}
	${CC} ${CFLAGS} -o $@ ${XRAM_OBJS}

install:
	mkdir -p ${INSTBIN}
	install -c ${PROGS} ${INSTBIN}
	./install-helpers.sh

clean:
	rm -f *.o *.out *errs ${PROGS}