aboutsummaryrefslogtreecommitdiffstats
path: root/package/ltq-tapidemo/patches/110-filename.patch
blob: 73c2e977b69844c1c7d9d23131464839c61b64f0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
--- a/configure.in
+++ b/configure.in
@@ -1665,6 +1665,30 @@ AC_ARG_WITH(cflags,
     ]
 )
 
+dnl overwrite default FW file name
+AC_ARG_WITH(fw-file,
+    AS_HELP_STRING(
+        [--with-fw-file=val],
+        [overwrite default FW file name]
+    ),
+    [
+        AC_MSG_RESULT([using firmware file $withval])
+        AC_DEFINE_UNQUOTED([TD_FW_FILE], ["$withval"], [using firmware file])
+    ]
+)
+
+dnl overwrite default BBD file name
+AC_ARG_WITH(bbd-file,
+    AS_HELP_STRING(
+        [--with-bbd-file=val],
+        [overwrite default BBD file name]
+    ),
+    [
+        AC_MSG_RESULT([using BBD file $withval])
+        AC_DEFINE_UNQUOTED([TD_BBD_FILE], ["$withval"], [using BBD file])
+    ]
+)
+
 AC_CONFIG_FILES([Makefile])
 AC_CONFIG_FILES([src/Makefile])
 
--- a/src/device_vmmc.c
+++ b/src/device_vmmc.c
@@ -49,40 +49,55 @@
 
 
 #ifdef USE_FILESYSTEM
+#ifdef TD_BBD_FILE
+   IFX_char_t* sBBD_CRAM_File_VMMC = TD_BBD_FILE;
+   IFX_char_t* sBBD_CRAM_File_VMMC_Old = TD_BBD_FILE;
+#else
+   /** File holding coefficients. */
+#ifdef DANUBE
+   /** Prepare file names for DANUBE */
+   IFX_char_t* sBBD_CRAM_File_VMMC = "danube_bbd.bin";
+   IFX_char_t* sBBD_CRAM_File_VMMC_Old = "danube_bbd_fxs.bin";
+#elif AR9
+   IFX_char_t* sBBD_CRAM_File_VMMC = "ar9_bbd.bin";
+   IFX_char_t* sBBD_CRAM_File_VMMC_Old = "ar9_bbd_fxs.bin";
+#elif VINAX
+   IFX_char_t* sBBD_CRAM_File_VMMC = "bbd.bin";
+   IFX_char_t* sBBD_CRAM_File_VMMC_Old = "";
+#elif VR9
+   IFX_char_t* sBBD_CRAM_File_VMMC = "vr9_bbd.bin";
+   IFX_char_t* sBBD_CRAM_File_VMMC_Old = "vr9_bbd_fxs.bin";
+#else
+#endif
+#endif /* TD_BBD_FILE */
+#ifdef TD_FW_FILE
+   IFX_char_t* sPRAMFile_VMMC = TD_FW_FILE;
+   IFX_char_t* sPRAMFile_VMMC_Old = TD_FW_FILE;
+   IFX_char_t* sDRAMFile_VMMC = "";
+#else
 #ifdef DANUBE
    /** Prepare file names for DANUBE */
    IFX_char_t* sPRAMFile_VMMC = "voice_danube_firmware.bin";
    IFX_char_t* sPRAMFile_VMMC_Old = "danube_firmware.bin";
    IFX_char_t* sDRAMFile_VMMC = "";
-   /** File holding coefficients. */
-   IFX_char_t* sBBD_CRAM_File_VMMC = "danube_bbd.bin";
-   IFX_char_t* sBBD_CRAM_File_VMMC_Old = "danube_bbd_fxs.bin";
 #elif AR9
    /** Prepare file names for AR9 */
    IFX_char_t* sPRAMFile_VMMC = "voice_ar9_firmware.bin";
    IFX_char_t* sPRAMFile_VMMC_Old = "ar9_firmware.bin";
    IFX_char_t* sDRAMFile_VMMC = "";
-   /** File holding coefficients. */
-   IFX_char_t* sBBD_CRAM_File_VMMC = "ar9_bbd.bin";
-   IFX_char_t* sBBD_CRAM_File_VMMC_Old = "ar9_bbd_fxs.bin";
 #elif VINAX
    /** Prepare file names for VINAX */
    IFX_char_t* sPRAMFile_VMMC = "voice_vinax_firmware.bin";
    IFX_char_t* sPRAMFile_VMMC_Old = "firmware.bin";
    IFX_char_t* sDRAMFile_VMMC = "";
-   /** File holding coefficients. */
-   IFX_char_t* sBBD_CRAM_File_VMMC = "bbd.bin";
-   IFX_char_t* sBBD_CRAM_File_VMMC_Old = "";
 #elif VR9
    /** Prepare file names for VR9 */
    IFX_char_t* sPRAMFile_VMMC = "voice_vr9_firmware.bin";
    IFX_char_t* sPRAMFile_VMMC_Old = "vr9_firmware.bin";
    IFX_char_t* sDRAMFile_VMMC = "";
-   /** File holding coefficients. */
-   IFX_char_t* sBBD_CRAM_File_VMMC = "vr9_bbd.bin";
-   IFX_char_t* sBBD_CRAM_File_VMMC_Old = "vr9_bbd_fxs.bin";
 #else
 #endif
+#endif /* TD_FW_FILE */
 #endif /* USE_FILESYSTEM */
 
 /** Device names */
--- a/src/common.c
+++ b/src/common.c
@@ -509,6 +509,10 @@ IFX_return_t Common_CheckDownloadPath(IF
    if (IFX_TRUE != Common_FindBBD_CRAM(pCpuDevice, psPath, psFile))
    {
       ret = IFX_ERROR;
+      if(bPrintTrace)
+         TRACE(TAPIDEMO, DBG_LEVEL_LOW,
+               ("Download path %s does not contain the required file %s.\n",
+                psPath, psFile));
    }
 
    if ((IFX_SUCCESS == ret) &&
@@ -521,6 +525,10 @@ IFX_return_t Common_CheckDownloadPath(IF
       {
          ret = Common_CheckFileExists(psFile);
       }
+      if(bPrintTrace && ret != IFX_SUCCESS)
+         TRACE(TAPIDEMO, DBG_LEVEL_LOW,
+               ("Download path %s does not contain the required file %s.\n",
+                psPath, psFile));
    }
 #ifndef TAPI_VERSION4
    if (IFX_SUCCESS == ret)
@@ -532,13 +540,6 @@ IFX_return_t Common_CheckDownloadPath(IF
    }
 #endif
 
-   if (IFX_ERROR == ret)
-   {
-      if(bPrintTrace)
-         TRACE(TAPIDEMO, DBG_LEVEL_LOW,
-               ("Download path %s does not contain the required files.\n",
-                psPath));
-   }
 
    return ret;
 } /* Common_CheckDownloadPath */