* Updater: UI rework initial * Updater: further updates to UI, added a temporary parrot * Updater: additional checks on radio stack type before update * Second iteration of updater UI: additional handling of resource unpacking errors * updater: removed extra logging, renamed some stages * Updater: Changed "back" button icon on error screen * Archive: signed/unsigned fix * Updater: cancelling update also cancels LFS+resources processing; restored /ext/update/ folder magic to 0 * Updater: root dir fix Co-authored-by: nminaylov <nm29719@gmail.com>
		
			
				
	
	
		
			62 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			62 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
#pragma once
 | 
						|
 | 
						|
#ifdef __cplusplus
 | 
						|
extern "C" {
 | 
						|
#endif
 | 
						|
 | 
						|
#include <stdint.h>
 | 
						|
#include <stdbool.h>
 | 
						|
#include <m-string.h>
 | 
						|
#include <furi_hal_flash.h>
 | 
						|
 | 
						|
/* Paths don't include /ext -- because at startup SD card is mounted as root */
 | 
						|
#define UPDATE_DIR_DEFAULT_REL_PATH "/update"
 | 
						|
#define UPDATE_MANIFEST_DEFAULT_NAME "update.fuf"
 | 
						|
 | 
						|
typedef union {
 | 
						|
    uint8_t raw[6];
 | 
						|
    struct {
 | 
						|
        uint8_t major;
 | 
						|
        uint8_t minor;
 | 
						|
        uint8_t sub;
 | 
						|
        uint8_t branch;
 | 
						|
        uint8_t release;
 | 
						|
        uint8_t type;
 | 
						|
    } version;
 | 
						|
} UpdateManifestRadioVersion;
 | 
						|
_Static_assert(sizeof(UpdateManifestRadioVersion) == 6, "UpdateManifestRadioVersion size error");
 | 
						|
 | 
						|
typedef struct {
 | 
						|
    string_t version;
 | 
						|
    uint32_t target;
 | 
						|
    string_t staged_loader_file;
 | 
						|
    uint32_t staged_loader_crc;
 | 
						|
    string_t firmware_dfu_image;
 | 
						|
    string_t radio_image;
 | 
						|
    uint32_t radio_address;
 | 
						|
    UpdateManifestRadioVersion radio_version;
 | 
						|
    uint32_t radio_crc;
 | 
						|
    string_t resource_bundle;
 | 
						|
    FuriHalFlashRawOptionByteData ob_reference;
 | 
						|
    FuriHalFlashRawOptionByteData ob_compare_mask;
 | 
						|
    FuriHalFlashRawOptionByteData ob_write_mask;
 | 
						|
    bool valid;
 | 
						|
} UpdateManifest;
 | 
						|
 | 
						|
UpdateManifest* update_manifest_alloc();
 | 
						|
 | 
						|
void update_manifest_free(UpdateManifest* update_manifest);
 | 
						|
 | 
						|
bool update_manifest_init(UpdateManifest* update_manifest, const char* manifest_filename);
 | 
						|
 | 
						|
bool update_manifest_init_mem(
 | 
						|
    UpdateManifest* update_manifest,
 | 
						|
    const uint8_t* manifest_data,
 | 
						|
    const uint16_t length);
 | 
						|
 | 
						|
bool update_manifest_has_obdata(UpdateManifest* update_manifest);
 | 
						|
 | 
						|
#ifdef __cplusplus
 | 
						|
}
 | 
						|
#endif
 |