rjw | 1f88458 | 2022-01-06 17:20:42 +0800 | [diff] [blame^] | 1 | #!/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 | |
| 8 | echo "IVS push MSD" |
| 9 | |
| 10 | #open a socket, communicated with Service. |
| 11 | exec 9<> /dev/udp/127.0.0.1/8000 |
| 12 | |
| 13 | #IVS push MSD CMD |
| 14 | echo "RIL_REQUEST_ECALL_IVS_PUSH_MSD" >&9 |
| 15 | |
| 16 | #close socket R/W |
| 17 | exec 9>&- |
| 18 | exec 9<&- |
| 19 | exit 0 |