Skip to content

Commit 0ee7432

Browse files
authored
Merge pull request #274 from pganna856/rdkbaccl_1093
RDKBACCL-1093: Core dump observed for Telcovoice component upon fetching Device. DM
2 parents 9a07e96 + 848dd99 commit 0ee7432

File tree

2 files changed

+55
-0
lines changed

2 files changed

+55
-0
lines changed
Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
diff --git a/config/RdkTelcoVoiceManager_v1.xml b/config/RdkTelcoVoiceManager_v1.xml
2+
index f07200a..b8c26d8 100644
3+
--- a/config/RdkTelcoVoiceManager_v1.xml
4+
+++ b/config/RdkTelcoVoiceManager_v1.xml
5+
@@ -61,14 +61,16 @@
6+
<name>Voice</name>
7+
<objectType>object</objectType>
8+
<functions>
9+
- <func_GetParamUlongValue>X_RDK_Report_VoiceService_GetParamUlongValue</func_GetParamUlongValue>
10+
+ <!--
11+
+ <func_GetParamUlongValue>X_RDK_Report_VoiceService_GetParamUlongValue</func_GetParamUlongValue>
12+
<func_SetParamUlongValue>X_RDK_Report_VoiceService_SetParamUlongValue</func_SetParamUlongValue>
13+
<func_GetParamStringValue>X_RDK_Report_VoiceService_GetParamStringValue</func_GetParamStringValue>
14+
<func_GetParamBoolValue>X_RDK_Report_VoiceService_GetParamBoolValue</func_GetParamBoolValue>
15+
<func_SetParamBoolValue>X_RDK_Report_VoiceService_SetParamBoolValue</func_SetParamBoolValue>
16+
<func_Validate>X_RDK_Report_VoiceService_Validate</func_Validate>
17+
<func_Commit>X_RDK_Report_VoiceService_Commit</func_Commit>
18+
- <func_Rollback>X_RDK_Report_VoiceService_Rollback</func_Rollback>
19+
+ <func_Rollback>X_RDK_Report_VoiceService_Rollback</func_Rollback>
20+
+ -->
21+
</functions>
22+
<parameters>
23+
<parameter>
24+
@@ -98,9 +100,11 @@
25+
<object>
26+
<name>Default</name>
27+
<objectType>object</objectType>
28+
- <functions>
29+
+ <functions>
30+
+ <!--
31+
<func_GetParamUlongValue>X_RDK_Report_VoiceService_Default_GetParamUlongValue</func_GetParamUlongValue>
32+
- <func_SetParamUlongValue>X_RDK_Report_VoiceService_Default_SetParamUlongValue</func_SetParamUlongValue>
33+
+ <func_SetParamUlongValue>X_RDK_Report_VoiceService_Default_SetParamUlongValue</func_SetParamUlongValue>
34+
+ -->
35+
</functions>
36+
<parameters>
37+
<parameter>
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
include ccsp_common_bananapi.inc
2+
3+
FILESEXTRAPATHS_prepend := "${THISDIR}/files:"
4+
5+
SRC_URI += "file://fix_device_dm_taking_long_time.patch;apply=no "
6+
7+
do_voice_patch() {
8+
cd ${S}
9+
if [ ! -e bpi_voice_patch_applied ]; then
10+
bbnote "Patching fix_device_dm_taking_long_time.patch"
11+
patch -p1 < ${WORKDIR}/fix_device_dm_taking_long_time.patch
12+
13+
touch bpi_voice_patch_applied
14+
fi
15+
}
16+
addtask voice_patch after do_unpack before do_compile
17+
18+
INHIBIT_PACKAGE_STRIP = "1"

0 commit comments

Comments
 (0)