FreeCalypso > hg > fc-magnetite
annotate components/ra @ 673:62a5285e014a
Lorekeeping: allow tpudrv-leonardo.lib on Leonardo/Tango
Back in 2015 the Mother's idea was to produce a FreeCalypso development
board that would be a clone of TI Leonardo, including the original
quadband RFFE; one major additional stipulation was that this board
needed to be able to run original unmodified TCS211-20070608 firmware
with all blobs intact, with only minimal binary patches to main.lib
and tpudrv.lib. The necessary patched libs were produced at that time
in the tcs211-patches repository.
That plan was changed and we produced FCDEV3B instead, with Openmoko's
triband RFFE instead of Leonardo quadband, but when FC Magnetite started
in 2016, a TPUDRV_blob= provision was still made, allowing the possibility
of patching OM's tpudrv.lib for a restored Leonardo RFFE.
Now in 2020 we have FC Tango which is essentially a verbatim clone of
Leonardo core, including the original quadband RFFE. We have also
deblobbed our firmware so much that we have absolutely no real need
for a blob version of tpudrv.lib - but I thought it would be neat to put
the ancient TPUDRV_blob= mechanism (classic config) to its originally
intended use, just for the heck of it.
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Fri, 29 May 2020 03:55:36 +0000 |
parents | ad7f986afae3 |
children |
rev | line source |
---|---|
177 | 1 # Building ra.lib from the TCS3.2 source |
2 | |
3 CFLAGS="-me -mt -o -pw2 -x -mw" | |
4 CPPFLAGS= | |
5 | |
6 make_version ra | |
7 cfile_plain ra_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 | |
34 CPPFLAGS="$CPPFLAGS -DAT_INTERPRETER" | |
35 CPPFLAGS="$CPPFLAGS -DUSE_L1FD_FUNC_INTERFACE" | |
36 CPPFLAGS="$CPPFLAGS -DFAX_AND_DATA" | |
37 | |
38 if [ "$SRVC" = 1 ] | |
39 then | |
40 CPPFLAGS="$CPPFLAGS -DFF_FAX" | |
41 fi | |
42 | |
43 CPPFLAGS="$CPPFLAGS -DUSE_L2FD_FUNC_INTERFACE" | |
44 CPPFLAGS="$CPPFLAGS -DSRVC=$SRVC" | |
482
ad7f986afae3
pass -DCHIPSET and -DBOARD for all TCS3.2 components
Mychaela Falconia <falcon@freecalypso.org>
parents:
177
diff
changeset
|
45 CPPFLAGS="$CPPFLAGS -DCHIPSET=$CHIPSET" |
ad7f986afae3
pass -DCHIPSET and -DBOARD for all TCS3.2 components
Mychaela Falconia <falcon@freecalypso.org>
parents:
177
diff
changeset
|
46 CPPFLAGS="$CPPFLAGS -DBOARD=41" |
177 | 47 |
48 # Includes | |
49 | |
50 SRCDIR=$SRC/g23m-fad/ra | |
51 | |
52 CPPFLAGS="$CPPFLAGS -I$SRC/$CONDAT/com/inc" | |
53 CPPFLAGS="$CPPFLAGS -I$SRC/$GPF/inc" | |
54 CPPFLAGS="$CPPFLAGS -I$SRC/$CONDAT/com/include" | |
55 CPPFLAGS="$CPPFLAGS -I../../$CDGINC" | |
56 CPPFLAGS="$CPPFLAGS -I$SRCDIR" | |
57 CPPFLAGS="$CPPFLAGS -I.." | |
58 CPPFLAGS="$CPPFLAGS -I../config" | |
59 | |
60 # Source modules | |
61 | |
62 cfile_str2ind $SRCDIR/ra_tra.c | |
63 cfile_str2ind $SRCDIR/ra_shm.c | |
64 cfile_str2ind $SRCDIR/ra_rlp.c | |
65 cfile_str2ind $SRCDIR/ra_l1int.c | |
66 | |
67 if [ "$SRVC" = 1 ] | |
68 then | |
69 cfile_str2ind $SRCDIR/ra_fax.c | |
70 fi | |
71 | |
72 cfile_str2ind $SRCDIR/ra_dll.c |