comparison gsm-fw/cfgmagic/processconf.sh @ 489:2a26785fb5a2

gsm-fw: GPF included in the build with feature gpf, link successful
author Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
date Sun, 29 Jun 2014 22:37:29 +0000
parents c70c077243dd
children 6f4cadd1fd7f
comparison
equal deleted inserted replaced
488:e8ed76bbf556 489:2a26785fb5a2
60 export_to_m4 RAMFFS_BLKSIZE_LOG2 60 export_to_m4 RAMFFS_BLKSIZE_LOG2
61 export_to_c RAMFFS_NBLOCKS 61 export_to_c RAMFFS_NBLOCKS
62 export_to_m4 RAMFFS_NBLOCKS 62 export_to_m4 RAMFFS_NBLOCKS
63 fi 63 fi
64 64
65 # At some point the list of build components will probably become 65 # The list of build components: we have some invariants that are always
66 # dependent on feature or maybe even target configurations, but for 66 # included, and some others that are included depending on the configuration.
67 # now it is static.
68 67
69 BUILD_COMPONENTS="bsp nucleus riviera serial services sprintf sysglue" 68 BUILD_COMPONENTS="bsp nucleus riviera serial services sprintf sysglue"
69
70 if [ "$CONFIG_GPF" = 1 ]
71 then
72 BUILD_COMPONENTS="$BUILD_COMPONENTS gpf"
73 fi
74
70 export_to_mk BUILD_COMPONENTS 75 export_to_mk BUILD_COMPONENTS
71 76
72 # The support for building flashable images is not here yet, 77 # The support for building flashable images is not here yet,
73 # so ramImage is all we can build for now. 78 # so ramImage is all we can build for now.
74 79