diff options
| author | 2012-09-08 16:05:01 +0200 | |
|---|---|---|
| committer | 2012-10-21 14:19:50 +0200 | |
| commit | 71840e12059b2ea84bb7ec31877c2d05a2c3aed0 (patch) | |
| tree | c7467cfd4436c26631186035e84163d70b41d281 | |
| parent | 9c760c9563b88d6f5ce352a79181f33b8329c6f8 (diff) | |
| download | libimobiledevice-71840e12059b2ea84bb7ec31877c2d05a2c3aed0.tar.gz libimobiledevice-71840e12059b2ea84bb7ec31877c2d05a2c3aed0.tar.bz2 | |
Add manpages for new tools
| -rw-r--r-- | docs/Makefile.am | 2 | ||||
| -rw-r--r-- | docs/idevicedebugserverproxy.1 | 34 | ||||
| -rw-r--r-- | docs/idevicediagnostics.1 | 51 | ||||
| -rw-r--r-- | docs/ideviceprovision.1 | 41 |
4 files changed, 127 insertions, 1 deletions
diff --git a/docs/Makefile.am b/docs/Makefile.am index d15ba09..22fa4ff 100644 --- a/docs/Makefile.am +++ b/docs/Makefile.am | |||
| @@ -1,4 +1,4 @@ | |||
| 1 | man_MANS = idevice_id.1 ideviceinfo.1 idevicesyslog.1 idevicebackup.1 idevicebackup2.1 ideviceimagemounter.1 idevicescreenshot.1 idevicepair.1 ideviceenterrecovery.1 idevicedate.1 | 1 | man_MANS = idevice_id.1 ideviceinfo.1 idevicesyslog.1 idevicebackup.1 idevicebackup2.1 ideviceimagemounter.1 idevicescreenshot.1 idevicepair.1 ideviceenterrecovery.1 idevicedate.1 ideviceprovision.1 idevicedebugserverproxy.1 idevicediagnostics.1 |
| 2 | 2 | ||
| 3 | EXTRA_DIST = $(man_MANS) | 3 | EXTRA_DIST = $(man_MANS) |
| 4 | 4 | ||
diff --git a/docs/idevicedebugserverproxy.1 b/docs/idevicedebugserverproxy.1 new file mode 100644 index 0000000..46dfeb7 --- /dev/null +++ b/docs/idevicedebugserverproxy.1 | |||
| @@ -0,0 +1,34 @@ | |||
| 1 | .TH "idevicedebugserverproxy" 1 | ||
| 2 | .SH NAME | ||
| 3 | idevicedebugserverproxy \- Remote debugging proxy. | ||
| 4 | .SH SYNOPSIS | ||
| 5 | .B idevicedebugserverproxy | ||
| 6 | [OPTIONS] PORT | ||
| 7 | |||
| 8 | .SH DESCRIPTION | ||
| 9 | |||
| 10 | Proxy a debugserver connection from a device for remote debugging. | ||
| 11 | After starting up, clients can connect to PORT and communicate with the remote | ||
| 12 | debugserver using the LLVM remote serial debugging protocol. | ||
| 13 | Thus connecting using LLDB or a LLVM based gdb to this port would allow | ||
| 14 | remote debugging. | ||
| 15 | The developer disk image needs to be mounted for this service to be available. | ||
| 16 | |||
| 17 | .SH OPTIONS | ||
| 18 | .TP | ||
| 19 | .B \-u, \-\-udid UDID | ||
| 20 | target specific device by its 40-digit device UDID. | ||
| 21 | .TP | ||
| 22 | .B \-d, \-\-debug | ||
| 23 | enable communication debugging. | ||
| 24 | .TP | ||
| 25 | .B \-h, \-\-help | ||
| 26 | prints usage information. | ||
| 27 | |||
| 28 | .SH USAGE | ||
| 29 | .TP | ||
| 30 | .B PORT | ||
| 31 | The port under which the proxy should listen for connections from clients. | ||
| 32 | |||
| 33 | .SH AUTHORS | ||
| 34 | Martin Szulecki | ||
diff --git a/docs/idevicediagnostics.1 b/docs/idevicediagnostics.1 new file mode 100644 index 0000000..2098955 --- /dev/null +++ b/docs/idevicediagnostics.1 | |||
| @@ -0,0 +1,51 @@ | |||
| 1 | .TH "idevicediagnostics" 1 | ||
| 2 | .SH NAME | ||
| 3 | idevicediagnostics \- Interact with the diagnostics interface of a device. | ||
| 4 | .SH SYNOPSIS | ||
| 5 | .B idevicediagnostics | ||
| 6 | [OPTIONS] COMMAND | ||
| 7 | |||
| 8 | .SH DESCRIPTION | ||
| 9 | |||
| 10 | Interact with the diagnostics interface of a device which allows to retrive | ||
| 11 | all kinds of information including diagnostics data, mobilegestalt data, remote | ||
| 12 | access to the IORegistry and certain commands like restart, shutdown and sleep. | ||
| 13 | Only available for iOS 4 and later. Accessing IORegistry is only supported on | ||
| 14 | iOS 5 and later. | ||
| 15 | |||
| 16 | .SH OPTIONS | ||
| 17 | .TP | ||
| 18 | .B \-u, \-\-udid UDID | ||
| 19 | target specific device by its 40-digit device UDID. | ||
| 20 | .TP | ||
| 21 | .B \-d, \-\-debug | ||
| 22 | enable communication debugging. | ||
| 23 | .TP | ||
| 24 | .B \-h, \-\-help | ||
| 25 | prints usage information. | ||
| 26 | |||
| 27 | .SH COMMANDS | ||
| 28 | .TP | ||
| 29 | .B diagnostics [TYPE] | ||
| 30 | print diagnostics information from device optionally by TYPE. This includes | ||
| 31 | "All", "WiFi", "GasGauge" or "NAND". Default is "All". | ||
| 32 | .TP | ||
| 33 | .B mobilegestalt KEY [...] | ||
| 34 | print values of mobilegestalt keys passed as arguments after the command and | ||
| 35 | seperated by a space. | ||
| 36 | .TP | ||
| 37 | .B ioreg [PLANE] | ||
| 38 | print IORegistry of device, optionally by PLANE like "IODeviceTree", "IOPower" | ||
| 39 | or "IOService". Only available on iOS 5 and later. | ||
| 40 | .TP | ||
| 41 | .B shutdown | ||
| 42 | shutdown device | ||
| 43 | .TP | ||
| 44 | .B restart | ||
| 45 | restart device | ||
| 46 | .TP | ||
| 47 | .B sleep | ||
| 48 | put device into sleep mode which also disconnects it from the host. | ||
| 49 | |||
| 50 | .SH AUTHORS | ||
| 51 | Martin Szulecki | ||
diff --git a/docs/ideviceprovision.1 b/docs/ideviceprovision.1 new file mode 100644 index 0000000..e48ea91 --- /dev/null +++ b/docs/ideviceprovision.1 | |||
| @@ -0,0 +1,41 @@ | |||
| 1 | .TH "ideviceprovision" 1 | ||
| 2 | .SH NAME | ||
| 3 | ideviceprovision \- Manage provisioning profiles on a device. | ||
| 4 | .SH SYNOPSIS | ||
| 5 | .B ideviceprovision | ||
| 6 | [OPTIONS] COMMAND | ||
| 7 | |||
| 8 | .SH DESCRIPTION | ||
| 9 | |||
| 10 | Manage provisioning profiles on a device. | ||
| 11 | |||
| 12 | .SH OPTIONS | ||
| 13 | .TP | ||
| 14 | .B \-u, \-\-udid UDID | ||
| 15 | target specific device by its 40-digit device UDID. | ||
| 16 | .TP | ||
| 17 | .B \-d, \-\-debug | ||
| 18 | enable communication debugging. | ||
| 19 | .TP | ||
| 20 | .B \-h, \-\-help | ||
| 21 | prints usage information. | ||
| 22 | |||
| 23 | .SH COMMANDS | ||
| 24 | .TP | ||
| 25 | .B install FILE | ||
| 26 | Install the provisioning profile specified by FILE. A valid ".mobileprovision" | ||
| 27 | file is expected. | ||
| 28 | .TP | ||
| 29 | .B list | ||
| 30 | Get a list of all provisioning profiles on the device. | ||
| 31 | .TP | ||
| 32 | .B copy PATH | ||
| 33 | Retrieves all provisioning profiles from the device and stores them into the | ||
| 34 | existing directory specified by PATH. The files will be stored | ||
| 35 | as "UUID.mobileprovision". | ||
| 36 | .TP | ||
| 37 | .B remove UUID | ||
| 38 | Removes the provisioning profile identified by UUID. | ||
| 39 | |||
| 40 | .SH AUTHORS | ||
| 41 | Nikias Bassen | ||
