Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Indicate that usbmuxd is a runtime dependency #92

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,9 @@ Some key features are:

## Installation / Getting started

Please note that `usbmuxd` must also be installed. `ifuse` will not be able to
communicate with devices without it.

### Debian / Ubuntu Linux

First install all required dependencies and build tools:
Expand Down
2 changes: 1 addition & 1 deletion src/ifuse.c
Original file line number Diff line number Diff line change
Expand Up @@ -820,7 +820,7 @@ int main(int argc, char *argv[])
} else {
printf("ERROR: No device found!\n");
}
fprintf(stderr, "Is the device properly connected?\n");
fprintf(stderr, "Ensure that the device properly connected and usbmuxd is installed.\n");
fprintf(stderr, "If it is make sure that your user has permissions to access the raw USB device.\n");
fprintf(stderr, "If you're still having issues try unplugging the device and reconnecting it.\n");
return EXIT_FAILURE;
Expand Down