annotate configs/hybrid-ui @ 516:1ed9de6c90bd

src/g23m-gsm/sms/sms_for.c: bogus malloc removed The new error handling code that was not present in TCS211 blob version contains a malloc call that is bogus for 3 reasons: 1) The memory allocation in question is not needed in the first place; 2) libc malloc is used instead of one of the firmware's proper ways; 3) The memory allocation is made inside a function and then never freed, i.e., a memory leak. This bug was caught in gcc-built FreeCalypso fw projects (Citrine and Selenite) because our gcc environment does not allow any use of libc malloc (any reference to malloc produces a link failure), but this code from TCS3.2 is wrong even for Magnetite: if this code path is executed repeatedly over a long time, the many small allocations made by this malloc call without a subsequent free will eventually exhaust the malloc heap provided by the TMS470 environment, malloc will start returning NULL, and the bogus code will treat it as an error. Because the memory allocation in question is not needed at all, the fix entails simply removing it.
author Mychaela Falconia <falcon@freecalypso.org>
date Sun, 22 Jul 2018 06:04:49 +0000
parents 53f32098ea36
children 69e52afc01d5
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
438
53f32098ea36 configs/hybrid-ui: switch to the new TCS3 versions of BMI and MFW
Mychaela Falconia <falcon@freecalypso.org>
parents: 419
diff changeset
1 # This is the TCS2/TCS3 hybrid config with the UI enabled,
53f32098ea36 configs/hybrid-ui: switch to the new TCS3 versions of BMI and MFW
Mychaela Falconia <falcon@freecalypso.org>
parents: 419
diff changeset
2 # using the new TCS3 versions of BMI and MFW.
419
59143cd42ec7 failed attempt to build TCS211 UI atop of the hybrid config
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
3
59143cd42ec7 failed attempt to build TCS211 UI atop of the hybrid config
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
4 GPRS=1
59143cd42ec7 failed attempt to build TCS211 UI atop of the hybrid config
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
5 MMI=2
59143cd42ec7 failed attempt to build TCS211 UI atop of the hybrid config
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
6 SRVC=1
59143cd42ec7 failed attempt to build TCS211 UI atop of the hybrid config
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
7 export GPRS MMI SRVC
59143cd42ec7 failed attempt to build TCS211 UI atop of the hybrid config
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
8
59143cd42ec7 failed attempt to build TCS211 UI atop of the hybrid config
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
9 ATP_STATE=0
59143cd42ec7 failed attempt to build TCS211 UI atop of the hybrid config
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
10 FCHG_STATE=1
59143cd42ec7 failed attempt to build TCS211 UI atop of the hybrid config
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
11 LCC_STATE=0
59143cd42ec7 failed attempt to build TCS211 UI atop of the hybrid config
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
12 MKS_STATE=0
59143cd42ec7 failed attempt to build TCS211 UI atop of the hybrid config
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
13 PWR_STATE=0
59143cd42ec7 failed attempt to build TCS211 UI atop of the hybrid config
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
14 R2D_STATE=1
59143cd42ec7 failed attempt to build TCS211 UI atop of the hybrid config
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
15 export ATP_STATE FCHG_STATE LCC_STATE MKS_STATE PWR_STATE R2D_STATE
59143cd42ec7 failed attempt to build TCS211 UI atop of the hybrid config
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
16
59143cd42ec7 failed attempt to build TCS211 UI atop of the hybrid config
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
17 scripts/config-headers-new.sh
59143cd42ec7 failed attempt to build TCS211 UI atop of the hybrid config
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
18
59143cd42ec7 failed attempt to build TCS211 UI atop of the hybrid config
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
19 CONDAT=condat3
59143cd42ec7 failed attempt to build TCS211 UI atop of the hybrid config
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
20 GPF=gpf3
59143cd42ec7 failed attempt to build TCS211 UI atop of the hybrid config
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
21 CDGINC=cdg-hybrid/cdginc
59143cd42ec7 failed attempt to build TCS211 UI atop of the hybrid config
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
22 CDGPRIM=cdg-hybrid/sap-inline
59143cd42ec7 failed attempt to build TCS211 UI atop of the hybrid config
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
23 ACI=g23m-aci
59143cd42ec7 failed attempt to build TCS211 UI atop of the hybrid config
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
24 export CONDAT GPF CDGINC CDGPRIM ACI
59143cd42ec7 failed attempt to build TCS211 UI atop of the hybrid config
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
25
59143cd42ec7 failed attempt to build TCS211 UI atop of the hybrid config
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
26 build_lib ccddata
59143cd42ec7 failed attempt to build TCS211 UI atop of the hybrid config
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
27
59143cd42ec7 failed attempt to build TCS211 UI atop of the hybrid config
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
28 # ACI libs
59143cd42ec7 failed attempt to build TCS211 UI atop of the hybrid config
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
29 build_lib aci tcs3
59143cd42ec7 failed attempt to build TCS211 UI atop of the hybrid config
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
30 build_lib aciext tcs3
59143cd42ec7 failed attempt to build TCS211 UI atop of the hybrid config
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
31 build_lib aci_dti_mng tcs3
59143cd42ec7 failed attempt to build TCS211 UI atop of the hybrid config
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
32 build_lib atiext tcs3
59143cd42ec7 failed attempt to build TCS211 UI atop of the hybrid config
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
33 build_lib comlib hybrid
59143cd42ec7 failed attempt to build TCS211 UI atop of the hybrid config
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
34 build_lib config_gprs_fl hybrid
59143cd42ec7 failed attempt to build TCS211 UI atop of the hybrid config
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
35 build_lib config_gprs_ir hybrid
59143cd42ec7 failed attempt to build TCS211 UI atop of the hybrid config
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
36 lib_link_magic '(BSS_LIBS (.bss) CONST_LIBS (.text, .const))'
59143cd42ec7 failed attempt to build TCS211 UI atop of the hybrid config
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
37
59143cd42ec7 failed attempt to build TCS211 UI atop of the hybrid config
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
38 # UI layers
438
53f32098ea36 configs/hybrid-ui: switch to the new TCS3 versions of BMI and MFW
Mychaela Falconia <falcon@freecalypso.org>
parents: 419
diff changeset
39 build_lib bmi tcs3
53f32098ea36 configs/hybrid-ui: switch to the new TCS3 versions of BMI and MFW
Mychaela Falconia <falcon@freecalypso.org>
parents: 419
diff changeset
40 build_lib icn tcs3
53f32098ea36 configs/hybrid-ui: switch to the new TCS3 versions of BMI and MFW
Mychaela Falconia <falcon@freecalypso.org>
parents: 419
diff changeset
41 build_lib mfw tcs3
419
59143cd42ec7 failed attempt to build TCS211 UI atop of the hybrid config
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
42
59143cd42ec7 failed attempt to build TCS211 UI atop of the hybrid config
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
43 # G23M protocol stack libs
59143cd42ec7 failed attempt to build TCS211 UI atop of the hybrid config
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
44 build_lib alr sotovik
59143cd42ec7 failed attempt to build TCS211 UI atop of the hybrid config
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
45 build_lib cc
59143cd42ec7 failed attempt to build TCS211 UI atop of the hybrid config
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
46 build_lib cci
59143cd42ec7 failed attempt to build TCS211 UI atop of the hybrid config
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
47 build_lib cci_ir
59143cd42ec7 failed attempt to build TCS211 UI atop of the hybrid config
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
48 lib_link_magic '(BSS_LIBS (.bss) CONST_LIBS (.text, .const))'
59143cd42ec7 failed attempt to build TCS211 UI atop of the hybrid config
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
49 build_lib cl
59143cd42ec7 failed attempt to build TCS211 UI atop of the hybrid config
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
50 build_lib dl
59143cd42ec7 failed attempt to build TCS211 UI atop of the hybrid config
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
51 build_lib dti
59143cd42ec7 failed attempt to build TCS211 UI atop of the hybrid config
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
52 build_lib fad
59143cd42ec7 failed attempt to build TCS211 UI atop of the hybrid config
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
53 build_lib gmm
59143cd42ec7 failed attempt to build TCS211 UI atop of the hybrid config
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
54 build_lib grlc
59143cd42ec7 failed attempt to build TCS211 UI atop of the hybrid config
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
55 build_lib grlc_ir
59143cd42ec7 failed attempt to build TCS211 UI atop of the hybrid config
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
56 lib_link_magic '(BSS_LIBS (.bss) CONST_LIBS (.text, .const))'
59143cd42ec7 failed attempt to build TCS211 UI atop of the hybrid config
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
57 build_lib grr
59143cd42ec7 failed attempt to build TCS211 UI atop of the hybrid config
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
58 build_lib l1_pei
59143cd42ec7 failed attempt to build TCS211 UI atop of the hybrid config
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
59 build_lib l2r
59143cd42ec7 failed attempt to build TCS211 UI atop of the hybrid config
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
60 build_lib llc
59143cd42ec7 failed attempt to build TCS211 UI atop of the hybrid config
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
61 build_lib mm
59143cd42ec7 failed attempt to build TCS211 UI atop of the hybrid config
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
62 build_lib ra
59143cd42ec7 failed attempt to build TCS211 UI atop of the hybrid config
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
63 build_lib rlp
59143cd42ec7 failed attempt to build TCS211 UI atop of the hybrid config
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
64 build_lib rr
59143cd42ec7 failed attempt to build TCS211 UI atop of the hybrid config
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
65 build_lib sim_b_lib
59143cd42ec7 failed attempt to build TCS211 UI atop of the hybrid config
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
66 build_lib sm
59143cd42ec7 failed attempt to build TCS211 UI atop of the hybrid config
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
67 build_lib sms
59143cd42ec7 failed attempt to build TCS211 UI atop of the hybrid config
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
68 build_lib sndcp
59143cd42ec7 failed attempt to build TCS211 UI atop of the hybrid config
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
69 build_lib ss
59143cd42ec7 failed attempt to build TCS211 UI atop of the hybrid config
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
70 build_lib t30
59143cd42ec7 failed attempt to build TCS211 UI atop of the hybrid config
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
71 build_lib uart_b_lib
59143cd42ec7 failed attempt to build TCS211 UI atop of the hybrid config
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
72 build_lib ppp
59143cd42ec7 failed attempt to build TCS211 UI atop of the hybrid config
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
73 build_lib ppp_ir
59143cd42ec7 failed attempt to build TCS211 UI atop of the hybrid config
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
74 lib_link_magic '(BSS_LIBS (.bss) CONST_LIBS (.text, .const))'
59143cd42ec7 failed attempt to build TCS211 UI atop of the hybrid config
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
75 build_lib upm
59143cd42ec7 failed attempt to build TCS211 UI atop of the hybrid config
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
76
59143cd42ec7 failed attempt to build TCS211 UI atop of the hybrid config
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
77 # Condat drivers
59143cd42ec7 failed attempt to build TCS211 UI atop of the hybrid config
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
78 build_lib gdi
59143cd42ec7 failed attempt to build TCS211 UI atop of the hybrid config
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
79
59143cd42ec7 failed attempt to build TCS211 UI atop of the hybrid config
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
80 # GPF
59143cd42ec7 failed attempt to build TCS211 UI atop of the hybrid config
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
81 build_lib ccd_na7_db
59143cd42ec7 failed attempt to build TCS211 UI atop of the hybrid config
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
82 blob_lib_gpf frame_na7_db_fl
59143cd42ec7 failed attempt to build TCS211 UI atop of the hybrid config
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
83 blob_lib_custom blobs/patches/frame_na7_db_ir-systrace.lib frame_na7_db_ir
59143cd42ec7 failed attempt to build TCS211 UI atop of the hybrid config
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
84 lib_link_magic '(BSS_LIBS (.bss) CONST_LIBS (.text, .const))'
59143cd42ec7 failed attempt to build TCS211 UI atop of the hybrid config
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
85 blob_lib_gpf misc_na7_db_fl
59143cd42ec7 failed attempt to build TCS211 UI atop of the hybrid config
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
86 blob_lib_gpf misc_na7_db_ir
59143cd42ec7 failed attempt to build TCS211 UI atop of the hybrid config
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
87 lib_link_magic '(BSS_LIBS (.bss) CONST_LIBS (.text, .const))'
59143cd42ec7 failed attempt to build TCS211 UI atop of the hybrid config
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
88 blob_lib_gpf osx_na7_db
59143cd42ec7 failed attempt to build TCS211 UI atop of the hybrid config
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
89 lib_link_magic '(BSS_LIBS (.bss) CONST_LIBS (.text, .const))'
59143cd42ec7 failed attempt to build TCS211 UI atop of the hybrid config
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
90 blob_lib_gpf tif_na7_db_fl
59143cd42ec7 failed attempt to build TCS211 UI atop of the hybrid config
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
91 blob_lib_gpf tif_na7_db_ir
59143cd42ec7 failed attempt to build TCS211 UI atop of the hybrid config
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
92 lib_link_magic '(BSS_LIBS (.bss) CONST_LIBS (.text, .const))'
59143cd42ec7 failed attempt to build TCS211 UI atop of the hybrid config
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
93
59143cd42ec7 failed attempt to build TCS211 UI atop of the hybrid config
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
94 # core drivers
59143cd42ec7 failed attempt to build TCS211 UI atop of the hybrid config
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
95 build_lib drivers_flash
59143cd42ec7 failed attempt to build TCS211 UI atop of the hybrid config
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
96
59143cd42ec7 failed attempt to build TCS211 UI atop of the hybrid config
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
97 # Layer 1
59143cd42ec7 failed attempt to build TCS211 UI atop of the hybrid config
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
98 build_lib tpudrv
59143cd42ec7 failed attempt to build TCS211 UI atop of the hybrid config
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
99 lib_link_magic '(BSS_LIBS (.bss) CONST_LIBS (.text, .const))'
59143cd42ec7 failed attempt to build TCS211 UI atop of the hybrid config
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
100 build_lib l1_ext
59143cd42ec7 failed attempt to build TCS211 UI atop of the hybrid config
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
101 lib_link_magic '(BSS_LIBS (.l1s_global))'
59143cd42ec7 failed attempt to build TCS211 UI atop of the hybrid config
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
102 build_lib l1_int
59143cd42ec7 failed attempt to build TCS211 UI atop of the hybrid config
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
103 lib_link_magic '(BSS_LIBS (.bss) CONST_LIBS (.text, .const))'
59143cd42ec7 failed attempt to build TCS211 UI atop of the hybrid config
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
104 build_lib l1_custom_ext
59143cd42ec7 failed attempt to build TCS211 UI atop of the hybrid config
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
105 build_lib l1_custom_int
59143cd42ec7 failed attempt to build TCS211 UI atop of the hybrid config
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
106 lib_link_magic '(BSS_LIBS (.bss) CONST_LIBS (.text, .const))'
59143cd42ec7 failed attempt to build TCS211 UI atop of the hybrid config
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
107
59143cd42ec7 failed attempt to build TCS211 UI atop of the hybrid config
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
108 build_lib riviera_core_flash
59143cd42ec7 failed attempt to build TCS211 UI atop of the hybrid config
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
109 build_lib riviera_cust_flash
59143cd42ec7 failed attempt to build TCS211 UI atop of the hybrid config
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
110
59143cd42ec7 failed attempt to build TCS211 UI atop of the hybrid config
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
111 # services
59143cd42ec7 failed attempt to build TCS211 UI atop of the hybrid config
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
112 #build_lib atp
59143cd42ec7 failed attempt to build TCS211 UI atop of the hybrid config
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
113 build_lib audio
59143cd42ec7 failed attempt to build TCS211 UI atop of the hybrid config
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
114 build_lib audio_bgd
59143cd42ec7 failed attempt to build TCS211 UI atop of the hybrid config
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
115 build_lib cst
59143cd42ec7 failed attempt to build TCS211 UI atop of the hybrid config
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
116 build_lib dar
59143cd42ec7 failed attempt to build TCS211 UI atop of the hybrid config
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
117 build_lib dar_gbl_var
59143cd42ec7 failed attempt to build TCS211 UI atop of the hybrid config
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
118 lib_link_magic '(BSS_DAR_LIB (.bss))'
59143cd42ec7 failed attempt to build TCS211 UI atop of the hybrid config
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
119 build_lib etm
59143cd42ec7 failed attempt to build TCS211 UI atop of the hybrid config
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
120 build_lib lls
59143cd42ec7 failed attempt to build TCS211 UI atop of the hybrid config
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
121 #build_lib mks
59143cd42ec7 failed attempt to build TCS211 UI atop of the hybrid config
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
122
59143cd42ec7 failed attempt to build TCS211 UI atop of the hybrid config
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
123 # app drivers
59143cd42ec7 failed attempt to build TCS211 UI atop of the hybrid config
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
124 build_lib abb
59143cd42ec7 failed attempt to build TCS211 UI atop of the hybrid config
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
125 build_lib buzzer
59143cd42ec7 failed attempt to build TCS211 UI atop of the hybrid config
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
126 build_lib fchg
59143cd42ec7 failed attempt to build TCS211 UI atop of the hybrid config
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
127 build_lib ffs
59143cd42ec7 failed attempt to build TCS211 UI atop of the hybrid config
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
128 build_lib ffs_drv
59143cd42ec7 failed attempt to build TCS211 UI atop of the hybrid config
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
129 build_lib ffs_pcm
59143cd42ec7 failed attempt to build TCS211 UI atop of the hybrid config
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
130 build_lib kpd
59143cd42ec7 failed attempt to build TCS211 UI atop of the hybrid config
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
131 build_lib power
59143cd42ec7 failed attempt to build TCS211 UI atop of the hybrid config
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
132 build_lib r2d_drv_custom_flash
59143cd42ec7 failed attempt to build TCS211 UI atop of the hybrid config
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
133 build_lib r2d_drv_flash
59143cd42ec7 failed attempt to build TCS211 UI atop of the hybrid config
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
134 build_lib r2d_drv_int_ram
59143cd42ec7 failed attempt to build TCS211 UI atop of the hybrid config
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
135 lib_link_magic '(CONST_LIBS (.text, .r2dlcd))'
59143cd42ec7 failed attempt to build TCS211 UI atop of the hybrid config
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
136 build_lib rtc_drv
59143cd42ec7 failed attempt to build TCS211 UI atop of the hybrid config
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
137 build_lib sim_drv
59143cd42ec7 failed attempt to build TCS211 UI atop of the hybrid config
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
138 build_lib spi_drv
59143cd42ec7 failed attempt to build TCS211 UI atop of the hybrid config
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
139 build_lib uart_drv
59143cd42ec7 failed attempt to build TCS211 UI atop of the hybrid config
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
140
59143cd42ec7 failed attempt to build TCS211 UI atop of the hybrid config
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
141 # system glue
59143cd42ec7 failed attempt to build TCS211 UI atop of the hybrid config
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
142 build_lib main init
59143cd42ec7 failed attempt to build TCS211 UI atop of the hybrid config
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
143 build_lib bootloader
59143cd42ec7 failed attempt to build TCS211 UI atop of the hybrid config
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
144 lib_link_magic '(CONST_BOOT_LIB (.const, .text, .text:v$3) BSS_BOOT_LIB (.bss))'
59143cd42ec7 failed attempt to build TCS211 UI atop of the hybrid config
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
145
59143cd42ec7 failed attempt to build TCS211 UI atop of the hybrid config
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
146 # Nucleus and TI's compiler stuff
59143cd42ec7 failed attempt to build TCS211 UI atop of the hybrid config
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
147 blob_lib_os nucleus_flash_nodbg
59143cd42ec7 failed attempt to build TCS211 UI atop of the hybrid config
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
148 blob_lib_os nucleus_int_ram_nodbg
59143cd42ec7 failed attempt to build TCS211 UI atop of the hybrid config
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
149 lib_link_magic '(BSS_LIBS (.bss) CONST_LIBS (.text, .const))'
59143cd42ec7 failed attempt to build TCS211 UI atop of the hybrid config
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
150 blob_lib_os rts16le_flash
59143cd42ec7 failed attempt to build TCS211 UI atop of the hybrid config
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
151 blob_lib_os rts16le_int_ram
59143cd42ec7 failed attempt to build TCS211 UI atop of the hybrid config
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
152 lib_link_magic '(BSS_LIBS (.bss))'
59143cd42ec7 failed attempt to build TCS211 UI atop of the hybrid config
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
153
59143cd42ec7 failed attempt to build TCS211 UI atop of the hybrid config
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
154 str2ind_blobs_used=0