FreeCalypso > hg > fc-magnetite
annotate components/ss @ 671:5f00e9afd5d9
removing clutter: INIT_blob provision
The lost init.c source was reconstructed from init.obj in 2017; prior
to that reconstruction we were compiling main.lib from partial source:
using the init module in blob form with various binary patches, but
recompiling create_RVtasks.c from source so we could change RiViera SWE
configuration.
We've been using the fully reconstructed version of init.c since 2017,
and now the old INIT_blob provision (which is not used by any config)
is just extra noise in our targets/*.conf files. This commit removes
all bits related to this provision, reducing clutter and making it
easier to add new targets.
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Fri, 29 May 2020 02:36:39 +0000 |
parents | ad7f986afae3 |
children |
rev | line source |
---|---|
161 | 1 # Building ss.lib from the TCS3.2 source |
2 | |
3 CFLAGS="-me -mt -o -pw2 -x -mw" | |
4 CPPFLAGS= | |
5 | |
6 make_version ss | |
7 cfile_plain ss_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 -DMMI=$MMI" | |
28 | |
29 if [ "$MMI" = 0 ] | |
30 then | |
31 CPPFLAGS="$CPPFLAGS -DACI" | |
32 elif [ "$MMI" = 2 ] | |
33 then | |
34 CPPFLAGS="$CPPFLAGS -DMFW" | |
35 fi | |
36 | |
37 CPPFLAGS="$CPPFLAGS -DPHONEBOOK_EXTENSION" | |
38 | |
39 if [ "$GPRS" = 1 ] | |
40 then | |
41 CPPFLAGS="$CPPFLAGS -DGPRS" | |
42 fi | |
43 | |
482
ad7f986afae3
pass -DCHIPSET and -DBOARD for all TCS3.2 components
Mychaela Falconia <falcon@freecalypso.org>
parents:
161
diff
changeset
|
44 CPPFLAGS="$CPPFLAGS -DCHIPSET=$CHIPSET" |
ad7f986afae3
pass -DCHIPSET and -DBOARD for all TCS3.2 components
Mychaela Falconia <falcon@freecalypso.org>
parents:
161
diff
changeset
|
45 CPPFLAGS="$CPPFLAGS -DBOARD=41" |
ad7f986afae3
pass -DCHIPSET and -DBOARD for all TCS3.2 components
Mychaela Falconia <falcon@freecalypso.org>
parents:
161
diff
changeset
|
46 |
161 | 47 # Includes |
48 | |
49 SRCDIR=$SRC/g23m-gsm/ss | |
50 | |
51 CPPFLAGS="$CPPFLAGS -I$SRC/$CONDAT/com/inc" | |
52 CPPFLAGS="$CPPFLAGS -I$SRC/$GPF/inc" | |
53 CPPFLAGS="$CPPFLAGS -I$SRC/$CONDAT/com/include" | |
54 CPPFLAGS="$CPPFLAGS -I../../$CDGINC" | |
55 CPPFLAGS="$CPPFLAGS -I$SRCDIR" | |
56 CPPFLAGS="$CPPFLAGS -I.." | |
57 CPPFLAGS="$CPPFLAGS -I../config" | |
58 | |
59 # Source modules | |
60 | |
61 cfile_str2ind $SRCDIR/ss_csf.c | |
62 cfile_str2ind $SRCDIR/ss_for.c | |
63 cfile_str2ind $SRCDIR/ss_pei.c | |
64 cfile_str2ind $SRCDIR/ss_ss.c | |
65 cfile_str2ind $SRCDIR/ss_em.c |