linuxOS_MC3302/sdk/X-AIOS-LT00-V1.0.4/tools/libhardware/include/hardware_ota.h

32 lines
687 B
C
Raw Normal View History

#ifndef _HARDWARE_OTA_H_
#define _HARDWARE_OTA_H_
#ifdef __cplusplus
extern "C" {
#endif
/**
* @brief OTA系统升级函数
*
* OTA升级流程:
* 1. /data/update目录
* 2. misc分区设置bootonce-bootloader标志
* 3. uboot执行升级脚本
*
* @param ota_path (: "/tmp/udisk/update.tar.gz")
*
* @return 0:
* -1:
* -2:
* -3:
* -4: misc分区写入失败
* -5:
*/
extern int update_system(const char *ota_path);
#ifdef __cplusplus
}
#endif
#endif /* _HARDWARE_OTA_H_ */