blob: 86cf646e21cdf2c12155e07c51a935d97b20b45a [file] [log] [blame]
rjw1f884582022-01-06 17:20:42 +08001#!/bin/bash
2#Copyright (c) 2016, MediaTek Inc. All rights reserved.
3#This software/firmware and related documentation ("MediaTek Software") are protected under relevant copyright laws.
4#The information contained herein is confidential and proprietary to MediaTek Inc. and/or its licensors.
5#Except as otherwise provided in the applicable licensing terms with MediaTek Inc. and/or its licensors, any reproduction,
6#modification, use or disclosure of MediaTek Software, and information contained herein, in whole or in part, shall be strictly prohibited.
7
8echo "IVS push MSD"
9
10#open a socket, communicated with Service.
11exec 9<> /dev/udp/127.0.0.1/8000
12
13#IVS push MSD CMD
14echo "RIL_REQUEST_ECALL_IVS_PUSH_MSD" >&9
15
16#close socket R/W
17exec 9>&-
18exec 9<&-
19exit 0