comparison gsm-fw/cfgmagic/processconf.sh @ 898:cc9d97d0e911

gsm-fw: DWNLD (static DSP patch) and L1_DYN_DSP_DWNLD moved to config mechanism
author Space Falcon <falcon@ivan.Harhan.ORG>
date Sun, 05 Jul 2015 02:41:39 +0000
parents 7f305eb3c530
children aac4d4b15d2f
comparison
equal deleted inserted replaced
897:e8bdd3d0c4c2 898:cc9d97d0e911
19 FFS_IN_RAM=1 19 FFS_IN_RAM=1
20 RVTMUX_UART_port=IrDA 20 RVTMUX_UART_port=IrDA
21 RVTMUX_UART_baud=115200 21 RVTMUX_UART_baud=115200
22 FLASH_BOOT_VIA_BOOTROM=1 22 FLASH_BOOT_VIA_BOOTROM=1
23 FLASHIMAGE_BASE_ADDR=0x2000 23 FLASHIMAGE_BASE_ADDR=0x2000
24 DWNLD=0
25 L1_DYN_DSP_DWNLD=0
24 26
25 # We always export CONFIG_INCLUDE_xxx to config.h and config.mk, whether 27 # We always export CONFIG_INCLUDE_xxx to config.h and config.mk, whether
26 # enabled or disabled. This way enabling any of these components is 28 # enabled or disabled. This way enabling any of these components is
27 # as simple as CONFIG_INCLUDE_xxx=1, without having to remember the 29 # as simple as CONFIG_INCLUDE_xxx=1, without having to remember the
28 # export_to_{c,mk} magic. 30 # export_to_{c,mk} magic.
93 then 95 then
94 echo "Error: feature gsm and feature l1stand are mutually exclusive" \ 96 echo "Error: feature gsm and feature l1stand are mutually exclusive" \
95 1>&2 97 1>&2
96 exit 1 98 exit 1
97 fi 99 fi
100 if [ "$CONFIG_INCLUDE_L1" = 1 ]
101 then
102 export_to_c L1_DYN_DSP_DWNLD DWNLD
103 export_to_mk L1_DYN_DSP_DWNLD
104 fi
98 105
99 # The list of build components: we have some invariants that are always 106 # The list of build components: we have some invariants that are always
100 # included, and some others that are included depending on the configuration. 107 # included, and some others that are included depending on the configuration.
101 108
102 BUILD_COMPONENTS="bsp libiram nucleus riviera serial services sprintf sysglue" 109 BUILD_COMPONENTS="bsp libiram nucleus riviera serial services sprintf sysglue"