FreeCalypso > hg > fc-magnetite
view components/sm @ 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 |
line wrap: on
line source
# Building sm.lib from the TCS3.2 source CFLAGS="-me -mt -o -pw2 -x -mw" # Defines CPPFLAGS=-DCCDTABLES_EXTERN CPPFLAGS="$CPPFLAGS -DOPTION_MULTITHREAD" CPPFLAGS="$CPPFLAGS -DNEW_FRAME" CPPFLAGS="$CPPFLAGS -DNEW_ENTITY" CPPFLAGS="$CPPFLAGS -D_TARGET_" CPPFLAGS="$CPPFLAGS -DSHARED_VSI" CPPFLAGS="$CPPFLAGS -DALR" CPPFLAGS="$CPPFLAGS -DFF_HOMEZONE" CPPFLAGS="$CPPFLAGS -DFF_MMI_SAT_ICON" CPPFLAGS="$CPPFLAGS -DFF_MMI_SMS_DYNAMIC" CPPFLAGS="$CPPFLAGS -DFF_CPHS" CPPFLAGS="$CPPFLAGS -D_TMS470" CPPFLAGS="$CPPFLAGS -DUART" CPPFLAGS="$CPPFLAGS -DFF_ATI" CPPFLAGS="$CPPFLAGS -DNWARN" CPPFLAGS="$CPPFLAGS -DFF_EM_MODE" CPPFLAGS="$CPPFLAGS -DAT_INTERPRETER" CPPFLAGS="$CPPFLAGS -DUSE_L1FD_FUNC_INTERFACE" if [ "$SRVC" != 0 ] then CPPFLAGS="$CPPFLAGS -DFAX_AND_DATA" if [ "$SRVC" = 1 ] then CPPFLAGS="$CPPFLAGS -DFF_FAX" fi CPPFLAGS="$CPPFLAGS -DUSE_L2FD_FUNC_INTERFACE" fi CPPFLAGS="$CPPFLAGS -DSRVC=$SRVC" CPPFLAGS="$CPPFLAGS -DMMI=$MMI" if [ "$MMI" = 0 ] then CPPFLAGS="$CPPFLAGS -DACI" elif [ "$MMI" = 2 ] then CPPFLAGS="$CPPFLAGS -DMFW" fi CPPFLAGS="$CPPFLAGS -DPHONEBOOK_EXTENSION" CPPFLAGS="$CPPFLAGS -DGPRS" CPPFLAGS="$CPPFLAGS -DENTITY_SM" CPPFLAGS="$CPPFLAGS -DCHIPSET=$CHIPSET" CPPFLAGS="$CPPFLAGS -DBOARD=41" # Includes SRCDIR=$SRC/g23m-gprs/sm CPPFLAGS="$CPPFLAGS -I$SRC/$CONDAT/com/inc" CPPFLAGS="$CPPFLAGS -I$SRC/$GPF/inc" CPPFLAGS="$CPPFLAGS -I$SRC/$CONDAT/com/include" CPPFLAGS="$CPPFLAGS -I../../$CDGINC" CPPFLAGS="$CPPFLAGS -I../../$CDGPRIM" CPPFLAGS="$CPPFLAGS -I$SRCDIR" CPPFLAGS="$CPPFLAGS -I.." CPPFLAGS="$CPPFLAGS -I../config" # Source modules cfile_str2ind $SRCDIR/sm.c cfile_str2ind $SRCDIR/sm_aci_output_handler.c cfile_str2ind $SRCDIR/sm_context_control.c cfile_str2ind $SRCDIR/sm_context_deactivate_control.c cfile_str2ind $SRCDIR/sm_debug.c cfile_str2ind $SRCDIR/sm_dispatch_message.c cfile_str2ind $SRCDIR/sm_dispatcher.c cfile_str2ind $SRCDIR/sm_memory_handler.c cfile_str2ind $SRCDIR/sm_mm_output_handler.c cfile_str2ind $SRCDIR/sm_network_control.c cfile_str2ind $SRCDIR/sm_pei.c cfile_str2ind $SRCDIR/sm_qos.c cfile_str2ind $SRCDIR/sm_sequencer.c cfile_str2ind $SRCDIR/sm_tft.c cfile_str2ind $SRCDIR/sm_timer_handler.c cfile_str2ind $SRCDIR/sm_upm_output_handler.c cfile_str2ind $SRCDIR/sm_user_plane_control.c