[Feature]add MT2731_MP2_MR2_SVN388 baseline version
Change-Id: Ief04314834b31e27effab435d3ca8ba33b499059
diff --git a/src/telephony/tel-demo/src/demoscript/ECALL_API/IVSPushMSD.sh b/src/telephony/tel-demo/src/demoscript/ECALL_API/IVSPushMSD.sh
new file mode 100644
index 0000000..86cf646
--- /dev/null
+++ b/src/telephony/tel-demo/src/demoscript/ECALL_API/IVSPushMSD.sh
@@ -0,0 +1,19 @@
+#!/bin/bash
+#Copyright (c) 2016, MediaTek Inc. All rights reserved.
+#This software/firmware and related documentation ("MediaTek Software") are protected under relevant copyright laws.
+#The information contained herein is confidential and proprietary to MediaTek Inc. and/or its licensors.
+#Except as otherwise provided in the applicable licensing terms with MediaTek Inc. and/or its licensors, any reproduction,
+#modification, use or disclosure of MediaTek Software, and information contained herein, in whole or in part, shall be strictly prohibited.
+
+echo "IVS push MSD"
+
+#open a socket, communicated with Service.
+exec 9<> /dev/udp/127.0.0.1/8000
+
+#IVS push MSD CMD
+echo "RIL_REQUEST_ECALL_IVS_PUSH_MSD" >&9
+
+#close socket R/W
+exec 9>&-
+exec 9<&-
+exit 0