diff gsm-fw/cfgmagic/processconf.sh @ 671:210268d8e553

gsm-fw: comlib included in the build along with ccd CONFIG_INCLUDE_CCD eliminated and absorbed into CONFIG_INCLUDE_PS
author Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
date Sun, 28 Sep 2014 18:23:19 +0000
parents 46e5c90fd0b8
children 40a223937246
line wrap: on
line diff
--- a/gsm-fw/cfgmagic/processconf.sh	Sun Sep 28 17:00:14 2014 +0000
+++ b/gsm-fw/cfgmagic/processconf.sh	Sun Sep 28 18:23:19 2014 +0000
@@ -26,9 +26,6 @@
 # enabled or disabled.  This way enabling any of these components is
 # as simple as CONFIG_INCLUDE_xxx=1, without having to remember the
 # export_to_{c,mk} magic.
-CONFIG_INCLUDE_CCD=0
-export_to_c	CONFIG_INCLUDE_CCD
-export_to_mk	CONFIG_INCLUDE_CCD
 CONFIG_INCLUDE_GPF=0
 export_to_c	CONFIG_INCLUDE_GPF
 export_to_mk	CONFIG_INCLUDE_GPF
@@ -38,6 +35,9 @@
 CONFIG_INCLUDE_PCM=0
 export_to_c	CONFIG_INCLUDE_PCM
 export_to_mk	CONFIG_INCLUDE_PCM
+CONFIG_INCLUDE_PS=0
+export_to_c	CONFIG_INCLUDE_PS
+export_to_mk	CONFIG_INCLUDE_PS
 CONFIG_INCLUDE_SIM=0
 export_to_c	CONFIG_INCLUDE_SIM
 export_to_mk	CONFIG_INCLUDE_SIM
@@ -105,10 +105,6 @@
 
 BUILD_COMPONENTS="bsp nucleus riviera serial services sprintf sysglue"
 
-if [ "$CONFIG_INCLUDE_CCD" = 1 ]
-then
-	BUILD_COMPONENTS="$BUILD_COMPONENTS ccd"
-fi
 if [ "$CONFIG_INCLUDE_GPF" = 1 ]
 then
 	BUILD_COMPONENTS="$BUILD_COMPONENTS gpf"
@@ -117,12 +113,14 @@
 then
 	BUILD_COMPONENTS="$BUILD_COMPONENTS L1"
 fi
+if [ "$CONFIG_INCLUDE_PS" = 1 ]
+then
+	BUILD_COMPONENTS="$BUILD_COMPONENTS ccd comlib"
+fi
 
 export_to_mk BUILD_COMPONENTS
 
-# The support for building flashable images is not here yet,
-# so ramImage is all we can build for now.
-
+# We can build flashable images now, but now for we always default to ramImage.
 BUILD_DEFAULT_IMAGE=ramImage
 export_to_mk BUILD_DEFAULT_IMAGE