Skip to content

Commit

Permalink
idek man
Browse files Browse the repository at this point in the history
  • Loading branch information
ElliesSurviving authored May 12, 2024
1 parent f44b66a commit 481e589
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
2 changes: 2 additions & 0 deletions Application/Dopamine/Jailbreak/DOJailbreaker.m
Original file line number Diff line number Diff line change
Expand Up @@ -417,6 +417,7 @@ - (NSError *)BindCores
if (r != 0) {
return [NSError errorWithDomain:JBErrorDomain code:JBErrorCodeFailedBindCores userInfo:@{NSLocalizedDescriptionKey : [NSString stringWithFormat:@"Mounting cores failed with error: %d", r]}];
}
return nil;
}

- (NSError *)BindFonts
Expand All @@ -425,6 +426,7 @@ - (NSError *)BindFonts
if (r != 0) {
return [NSError errorWithDomain:JBErrorDomain code:JBErrorCodeFailedBindFonts userInfo:@{NSLocalizedDescriptionKey : [NSString stringWithFormat:@"Mounting fonts failed with error: %d", r]}];
}
return nil;
}

- (NSError *)ensureNoDuplicateApps
Expand Down
6 changes: 3 additions & 3 deletions BaseBin/jbctl/src/internal.m
Original file line number Diff line number Diff line change
Expand Up @@ -117,15 +117,15 @@ int jbctl_handle_internal(const char *command, int argc, char* argv[])
return 0;
}
else if (!strcmp(command, "fakelib_mount")) {
printf("Applying mount...\n");
printf("Applying fakelib mount...\n");
return mount_unsandboxed("bindfs", "/usr/lib", MNT_RDONLY, (void *)JBRootPath("/basebin/.fakelib"));
}
else if (!strcmp(command, "fonts_mount")) {
printf("Applying mount...\n");
printf("Applying fonts mount...\n");
return mount_unsandboxed("bindfs", (void *)JBRootPath("/System/Library/Fonts"), MNT_RDONLY, "/System/Library/Fonts");
}
else if (!strcmp(command, "cores_mount")) {
printf("Applying mount...\n");
printf("Applying cores mount...\n");
return mount_unsandboxed("bindfs", "/cores", MNT_RDONLY, (void *)JBRootPath("/cores"));
}
else if (!strcmp(command, "startup")) {
Expand Down

0 comments on commit 481e589

Please sign in to comment.