[FL-1990] Correct release type in copro manifest and rename boot to bootloader (#787)

* World: rename boot to bootloader.
* Scripts: correct release type in copro bundler.
This commit is contained in:
あく
2021-10-26 15:24:14 +03:00
committed by GitHub
parent d9d33a0213
commit ae016ce464
28 changed files with 146 additions and 146 deletions

View File

@@ -272,7 +272,7 @@ const struct Version* furi_hal_version_get_firmware_version(void) {
return version_get();
}
const struct Version* furi_hal_version_get_boot_version(void) {
const struct Version* furi_hal_version_get_bootloader_version(void) {
#ifdef NO_BOOTLOADER
return 0;
#else

View File

@@ -272,7 +272,7 @@ const struct Version* furi_hal_version_get_firmware_version(void) {
return version_get();
}
const struct Version* furi_hal_version_get_boot_version(void) {
const struct Version* furi_hal_version_get_bootloader_version(void) {
#ifdef NO_BOOTLOADER
return 0;
#else

View File

@@ -148,7 +148,7 @@ const uint8_t* furi_hal_version_get_ble_mac();
*
* @return Address of boot version structure.
*/
const struct Version* furi_hal_version_get_boot_version();
const struct Version* furi_hal_version_get_bootloader_version();
/** Get address of version structure of firmware.
*