fix bootloader versions

This commit is contained in:
yparitcher 2019-02-12 23:10:36 -05:00
parent 8f6f8a34e1
commit 85004370b7
No known key found for this signature in database
GPG Key ID: FC78BE8055D48472

View File

@ -209,11 +209,11 @@ int bootloader_bridge(int klen, uint8_t * keyh)
case BootVersion:
has_erased = 0;
printf1(TAG_BOOT, "BootVersion.\r\n");
version = BOOT_VERSION_MAJ;
version = SOLO_VERSION_MAJ;
u2f_response_writeback(&version,1);
version = BOOT_VERSION_MIN;
version = SOLO_VERSION_MIN;
u2f_response_writeback(&version,1);
version = BOOT_VERSION_PATCH;
version = SOLO_VERSION_PATCH;
u2f_response_writeback(&version,1);
break;
case BootReboot: