diff --git a/bootloader/hos/hos.c b/bootloader/hos/hos.c index 8a5bb5e..394d36e 100644 --- a/bootloader/hos/hos.c +++ b/bootloader/hos/hos.c @@ -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; diff --git a/nyx/nyx_gui/hos/hos.c b/nyx/nyx_gui/hos/hos.c index 41d1170..5b571e4 100644 --- a/nyx/nyx_gui/hos/hos.c +++ b/nyx/nyx_gui/hos/hos.c @@ -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;