comparison gsm-fw/cfgmagic/processconf.sh @ 624:407c20f90f6a

gsm-fw/cfgmagic/processconf.sh: guard against building L1 for target != gtamodem
author Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
date Sun, 31 Aug 2014 03:04:51 +0000
parents 11b6ca57a079
children 4cd1dcc167e4
comparison
equal deleted inserted replaced
623:f5243fa2d2b9 624:407c20f90f6a
73 CONFIG_INCLUDE_L1=1 73 CONFIG_INCLUDE_L1=1
74 export_to_c CONFIG_INCLUDE_L1 74 export_to_c CONFIG_INCLUDE_L1
75 export_to_mk CONFIG_INCLUDE_L1 75 export_to_mk CONFIG_INCLUDE_L1
76 fi 76 fi
77 77
78 if [ "$CONFIG_INCLUDE_L1" = 1 -a "$TARGET" != gtamodem ]
79 then
80 echo "Error: tpudrv has not been extended to target != gtamodem yet" \
81 1>&2
82 exit 1
83 fi
84
78 # The list of build components: we have some invariants that are always 85 # The list of build components: we have some invariants that are always
79 # included, and some others that are included depending on the configuration. 86 # included, and some others that are included depending on the configuration.
80 87
81 BUILD_COMPONENTS="bsp nucleus riviera serial services sprintf sysglue" 88 BUILD_COMPONENTS="bsp nucleus riviera serial services sprintf sysglue"
82 89