uvk5: Bless 1o11 firmwares in base uvk5 driver

Fixes #11139
This commit is contained in:
Dan Smith 2024-02-06 16:38:16 -08:00 committed by Dan Smith
parent e579e7e101
commit e6685dfaad

View File

@ -2069,7 +2069,8 @@ class UVK5RadioBase(chirp_common.CloneModeRadio):
class UVK5Radio(UVK5RadioBase):
@classmethod
def k5_approve_firmware(cls, firmware):
approved_prefixes = ('k5_2.01.', 'app_2.01.', '2.01.')
approved_prefixes = ('k5_2.01.', 'app_2.01.', '2.01.',
'1o11')
return any(firmware.startswith(x) for x in approved_prefixes)