FreeCalypso > hg > fc-magnetite
annotate components/cc @ 548:9f191ca0051f
implemented ability to enable -D_FF_RV_EXIST_ in TIF library
It is not clear if this quirk is intentional or not, but TI's production
version of tif_na7_db_{fl,ir}.lib was built without -D_FF_RV_EXIST_,
and as a result, the code that is present in the source for the
TRACEMASK_IN_FFS feature was not compiled in, making the feature unavailable.
The present change makes it possible to re-enable this code (when TIF
libraries are being rebuilt from source rather than used as blobs)
by setting TRACEMASK_IN_FFS=1 on the configure line.
The new code is NOT enabled by default: it is not a change which we can
justify inflicting on our production firmwares.
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Sun, 18 Nov 2018 08:09:17 +0000 |
parents | ad7f986afae3 |
children |
rev | line source |
---|---|
155 | 1 # Building cc.lib from the TCS3.2 source |
2 | |
3 CFLAGS="-me -mt -o -pw2 -x -mw" | |
4 CPPFLAGS= | |
5 | |
6 make_version cc | |
7 cfile_plain cc_version.c | |
8 | |
9 # Defines | |
10 | |
11 CPPFLAGS=-DCCDTABLES_EXTERN | |
12 CPPFLAGS="$CPPFLAGS -DOPTION_MULTITHREAD" | |
13 CPPFLAGS="$CPPFLAGS -DNEW_FRAME" | |
14 CPPFLAGS="$CPPFLAGS -DNEW_ENTITY" | |
15 CPPFLAGS="$CPPFLAGS -D_TARGET_" | |
16 CPPFLAGS="$CPPFLAGS -DSHARED_VSI" | |
17 CPPFLAGS="$CPPFLAGS -DALR" | |
18 CPPFLAGS="$CPPFLAGS -DFF_HOMEZONE" | |
19 CPPFLAGS="$CPPFLAGS -DFF_MMI_SAT_ICON" | |
20 CPPFLAGS="$CPPFLAGS -DFF_MMI_SMS_DYNAMIC" | |
21 CPPFLAGS="$CPPFLAGS -DFF_CPHS" | |
22 CPPFLAGS="$CPPFLAGS -D_TMS470" | |
23 CPPFLAGS="$CPPFLAGS -DUART" | |
24 CPPFLAGS="$CPPFLAGS -DFF_ATI" | |
25 CPPFLAGS="$CPPFLAGS -DNWARN" | |
26 CPPFLAGS="$CPPFLAGS -DFF_EM_MODE" | |
27 CPPFLAGS="$CPPFLAGS -DPHONEBOOK_EXTENSION" | |
28 | |
29 if [ "$GPRS" = 1 ] | |
30 then | |
31 CPPFLAGS="$CPPFLAGS -DGPRS" | |
32 fi | |
33 | |
305
9026fa2630e4
components/cc: new CC needs -DSIM_TOOLKIT for MNCC_BEARER_CAP_REQ
Mychaela Falconia <falcon@freecalypso.org>
parents:
155
diff
changeset
|
34 CPPFLAGS="$CPPFLAGS -DSIM_TOOLKIT" |
392
30203d5aeb74
components/*: -DCHIPSET=$CHIPSET instead of fixed -DCHIPSET=10
Mychaela Falconia <falcon@freecalypso.org>
parents:
305
diff
changeset
|
35 CPPFLAGS="$CPPFLAGS -DCHIPSET=$CHIPSET" |
482
ad7f986afae3
pass -DCHIPSET and -DBOARD for all TCS3.2 components
Mychaela Falconia <falcon@freecalypso.org>
parents:
392
diff
changeset
|
36 CPPFLAGS="$CPPFLAGS -DBOARD=41" |
155 | 37 |
38 # Includes | |
39 | |
40 SRCDIR=$SRC/g23m-gsm/cc | |
41 | |
42 CPPFLAGS="$CPPFLAGS -I$SRC/$CONDAT/com/inc" | |
43 CPPFLAGS="$CPPFLAGS -I$SRC/$GPF/inc" | |
44 CPPFLAGS="$CPPFLAGS -I$SRC/$CONDAT/com/include" | |
45 CPPFLAGS="$CPPFLAGS -I../../$CDGINC" | |
46 CPPFLAGS="$CPPFLAGS -I$SRCDIR" | |
47 CPPFLAGS="$CPPFLAGS -I.." | |
48 CPPFLAGS="$CPPFLAGS -I../config" | |
49 | |
50 # Source modules | |
51 | |
52 cfile_str2ind $SRCDIR/cc_act.c | |
53 cfile_str2ind $SRCDIR/cc_cfk.c | |
54 cfile_str2ind $SRCDIR/cc_csf.c | |
55 cfile_str2ind $SRCDIR/cc_est.c | |
56 cfile_str2ind $SRCDIR/cc_ffk.c | |
57 cfile_str2ind $SRCDIR/cc_for.c | |
58 cfile_str2ind $SRCDIR/cc_pei.c | |
59 cfile_str2ind $SRCDIR/cc_rel.c | |
60 cfile_str2ind $SRCDIR/cc_srv.c | |
61 cfile_str2ind $SRCDIR/cc_time.c | |
62 cfile_str2ind $SRCDIR/cc_em.c |