diff --git a/README.md b/README.md index ac1e9559..c1760e61 100644 --- a/README.md +++ b/README.md @@ -74,7 +74,7 @@ Usage: `futurerestore [OPTIONS] iPSW` | | ` --rkrn PATH ` | Set custom restore kernelcache for entering restoremode(requires use-pwndfu) | | | ` --set-nonce ` | Set custom nonce from your blob then exit recovery(requires use-pwndfu) | | | ` --set-nonce=0xNONCE ` | Set custom nonce then exit recovery(requires use-pwndfu) | -| | ` --latest-sep ` | Use latest signed SEP instead of manually specifying one (may cause bad restore) | +| | ` --latest-sep ` | Use latest signed SEP instead of manually specifying one | | ` -s ` | ` --sep PATH ` | Manually specify SEP to be flashed | | ` -m ` | ` --sep-manifest PATH ` | BuildManifest for requesting SEP ticket | | | ` --latest-baseband ` | Use latest signed baseband instead of manually specifying one | diff --git a/futurerestore/main.cpp b/futurerestore/main.cpp index 66b9b9b2..f07ec5a7 100644 --- a/futurerestore/main.cpp +++ b/futurerestore/main.cpp @@ -91,12 +91,12 @@ void cmd_help(){ #endif printf("\nOptions for SEP:\n"); - printf(" --latest-sep\t\tUse latest signed SEP instead of manually specifying one (may cause bad restore)\n"); + printf(" --latest-sep\t\tUse latest signed SEP instead of manually specifying one\n"); printf(" -s, --sep PATH\t\tSEP to be flashed\n"); printf(" -m, --sep-manifest PATH\tBuildManifest for requesting SEP ticket\n"); printf("\nOptions for baseband:\n"); - printf(" --latest-baseband\t\tUse latest signed baseband instead of manually specifying one (may cause bad restore)\n"); + printf(" --latest-baseband\t\tUse latest signed baseband instead of manually specifying one\n"); printf(" -b, --baseband PATH\t\tBaseband to be flashed\n"); printf(" -p, --baseband-manifest PATH\tBuildManifest for requesting baseband ticket\n"); printf(" --no-baseband\t\tSkip checks and don't flash baseband\n");