We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e978478 commit 55b7145Copy full SHA for 55b7145
checkra1n/kpf/main.c
@@ -1617,7 +1617,10 @@ static void kpf_cmd(const char *cmd, char *args)
1617
#ifdef DEV_BUILD
1618
#if 0
1619
// 15.0 beta 1 onwards, but only iOS/iPadOS
1620
- if((livefs_string_match != NULL) != (gKernelVersion.darwinMajor >= 21 && xnu_platform() == PLATFORM_IOS)) panic("livefs panic doesn't match expected Darwin version");
+ if((livefs_string_match != NULL) != (
1621
+ (gKernelVersion.darwinMajor >= 21 && xnu_platform() == PLATFORM_IOS) ||
1622
+ (gKernelVersion.darwinMajor >= 24 && gKernelVersion.darwinMinor >= 2 && xnu_platform() == PLATFORM_TVOS)))
1623
+ panic("livefs panic doesn't match expected Darwin version");
1624
#endif
1625
1626
0 commit comments