summaryrefslogtreecommitdiffstats
path: root/docs/idevicediagnostics.1
diff options
context:
space:
mode:
authorGravatar Martin Szulecki2012-09-08 16:05:01 +0200
committerGravatar Martin Szulecki2012-10-21 14:19:50 +0200
commit71840e12059b2ea84bb7ec31877c2d05a2c3aed0 (patch)
treec7467cfd4436c26631186035e84163d70b41d281 /docs/idevicediagnostics.1
parent9c760c9563b88d6f5ce352a79181f33b8329c6f8 (diff)
downloadlibimobiledevice-71840e12059b2ea84bb7ec31877c2d05a2c3aed0.tar.gz
libimobiledevice-71840e12059b2ea84bb7ec31877c2d05a2c3aed0.tar.bz2
Add manpages for new tools
Diffstat (limited to 'docs/idevicediagnostics.1')
-rw-r--r--docs/idevicediagnostics.151
1 files changed, 51 insertions, 0 deletions
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
3idevicediagnostics \- Interact with the diagnostics interface of a device.
4.SH SYNOPSIS
5.B idevicediagnostics
6[OPTIONS] COMMAND
7
8.SH DESCRIPTION
9
10Interact with the diagnostics interface of a device which allows to retrive
11all kinds of information including diagnostics data, mobilegestalt data, remote
12access to the IORegistry and certain commands like restart, shutdown and sleep.
13Only available for iOS 4 and later. Accessing IORegistry is only supported on
14iOS 5 and later.
15
16.SH OPTIONS
17.TP
18.B \-u, \-\-udid UDID
19target specific device by its 40-digit device UDID.
20.TP
21.B \-d, \-\-debug
22enable communication debugging.
23.TP
24.B \-h, \-\-help
25prints usage information.
26
27.SH COMMANDS
28.TP
29.B diagnostics [TYPE]
30print diagnostics information from device optionally by TYPE. This includes
31"All", "WiFi", "GasGauge" or "NAND". Default is "All".
32.TP
33.B mobilegestalt KEY [...]
34print values of mobilegestalt keys passed as arguments after the command and
35seperated by a space.
36.TP
37.B ioreg [PLANE]
38print IORegistry of device, optionally by PLANE like "IODeviceTree", "IOPower"
39 or "IOService". Only available on iOS 5 and later.
40.TP
41.B shutdown
42shutdown device
43.TP
44.B restart
45restart device
46.TP
47.B sleep
48put device into sleep mode which also disconnects it from the host.
49
50.SH AUTHORS
51Martin Szulecki