annotate rvinterf/ctracedec/Makefile @ 867:c4da570dca83
int_osx_receive_prim() in gsm-fw/gpf/osx/osx.c: there was an error in the
reconstruction of this function from disassembly in the logic that implements
special handling for MPHC_RXLEV_REQ messages.
The code is now fixed to properly match what the binary object version does;
with this fix the firmware now performs the power measurement phase correctly
and the initial network registration succeeds.
author |
Space Falcon <falcon@ivan.Harhan.ORG> |
date |
Sat, 16 May 2015 06:34:09 +0000 |
parents |
d32dff865575 |
children |
|
rev |
line source |
859
|
1 CC= gcc
|
|
2 CFLAGS= -O2
|
|
3 PROG= ctracedec
|
|
4 OBJS= decode.o doprnt.o main.o processlog.o readtab.o
|
|
5 INSTBIN=/usr/local/bin
|
|
6
|
|
7 all: ${PROG}
|
|
8
|
|
9 ${PROG}: ${OBJS}
|
|
10 ${CC} ${CFLAGS} -o $@ ${OBJS}
|
|
11
|
|
12 install: ${PROG}
|
|
13 mkdir -p ${INSTBIN}
|
|
14 install -c ${PROG} ${INSTBIN}
|
|
15
|
|
16 clean:
|
|
17 rm -f *.o *.out *errs ${PROG}
|