mirror of
https://github.com/CTCaer/hekate.git
synced 2024-11-09 20:11:50 +00:00
eks: Add compatibility support for v1.1
This commit is contained in:
parent
7b460f7e56
commit
f196b8bb0e
2 changed files with 2 additions and 2 deletions
|
@ -208,7 +208,7 @@ void hos_eks_get()
|
|||
|
||||
// Check if valid and for this unit.
|
||||
if (eks->magic == HOS_EKS_MAGIC &&
|
||||
eks->lot0 == FUSE(FUSE_OPT_LOT_CODE_0))
|
||||
(eks->lot0 == FUSE(FUSE_OPT_LOT_CODE_0) || eks->lot0 == FUSE(FUSE_PRIVATE_KEY0)))
|
||||
{
|
||||
h_cfg.eks = eks;
|
||||
return;
|
||||
|
|
|
@ -180,7 +180,7 @@ void hos_eks_get()
|
|||
|
||||
// Check if valid and for this unit.
|
||||
if (eks->magic == HOS_EKS_MAGIC &&
|
||||
eks->lot0 == FUSE(FUSE_OPT_LOT_CODE_0))
|
||||
(eks->lot0 == FUSE(FUSE_OPT_LOT_CODE_0) || eks->lot0 == FUSE(FUSE_PRIVATE_KEY0)))
|
||||
{
|
||||
h_cfg.eks = eks;
|
||||
return;
|
||||
|
|
Loading…
Reference in a new issue