1*4882a593Smuzhiyun /* 2*4882a593Smuzhiyun * Copyright (c) 2018 Rockchip Electronics Co. Ltd. 3*4882a593Smuzhiyun * Author: chad.ma <chad.ma@rock-chips.com> 4*4882a593Smuzhiyun * 5*4882a593Smuzhiyun * Licensed under the Apache License, Version 2.0 (the "License"); 6*4882a593Smuzhiyun * you may not use this file except in compliance with the License. 7*4882a593Smuzhiyun * You may obtain a copy of the License at 8*4882a593Smuzhiyun * 9*4882a593Smuzhiyun * http://www.apache.org/licenses/LICENSE-2.0 10*4882a593Smuzhiyun * 11*4882a593Smuzhiyun * Unless required by applicable law or agreed to in writing, software 12*4882a593Smuzhiyun * distributed under the License is distributed on an "AS IS" BASIS, 13*4882a593Smuzhiyun * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14*4882a593Smuzhiyun * See the License for the specific language governing permissions and 15*4882a593Smuzhiyun * limitations under the License. 16*4882a593Smuzhiyun */ 17*4882a593Smuzhiyun #ifndef __UPDATE_RECV_H__ 18*4882a593Smuzhiyun #define __UPDATE_RECV_H__ 19*4882a593Smuzhiyun #include <stdio.h> 20*4882a593Smuzhiyun #include <stdlib.h> 21*4882a593Smuzhiyun #include <string.h> 22*4882a593Smuzhiyun #include <stdbool.h> 23*4882a593Smuzhiyun #include <errno.h> 24*4882a593Smuzhiyun #include <fcntl.h> 25*4882a593Smuzhiyun #include <unistd.h> 26*4882a593Smuzhiyun #include <sys/stat.h> 27*4882a593Smuzhiyun 28*4882a593Smuzhiyun #include "DefineHeader.h" 29*4882a593Smuzhiyun 30*4882a593Smuzhiyun #define UPDATE_IMG "update.img" 31*4882a593Smuzhiyun #define DEV_RECOVERY_NODE "/dev/block/by-name/recovery" 32*4882a593Smuzhiyun 33*4882a593Smuzhiyun extern int WriteFwData(char* imgPath, char* fwName); 34*4882a593Smuzhiyun extern bool CheckFwData(char* imgPath, char* fwName); 35*4882a593Smuzhiyun #endif 36