iBoot (Bootloader)

From The Apple Wiki

iBoot, also referred to as “iBoot second-stage loader” in the source code, is Apple's stage 2 bootloader for all of the devices. It runs what is known as Recovery Mode. It has an interactive interface which can be used over USB or serial.

Extract and Disassemble

To extract the bootloader and disassemble using IDA:

  1. Obtain the bootloader from the iPSW. This file is in the Firmware/all_flash subdir, e.g. Firmware/all_flash/all_flash.n81ap.production/iBoot.n81ap.RELEASE.img3, where the "n81ap", "k90", etc.. are for the i-Device type
  2. Run xpwntool with the proper key
  3. Make sure the decryption was successful - if it is, you should see the following if you cat (i.e. type) the file:
"iBoot for ...., Copyright 2011, Apple Inc."
  1. Load in IDA. Set processor to ARM. Rebase program (Edit→Segments→Rebase Program) to 0x5FF00000 (for iBoot in iOS 5). You should see something like:
ROM:5FF00000 loc_5FF00000                            ; CODE XREF: ROM:5FF00078↓j
ROM:5FF00000                 B       loc_5FF00040        ; Used for Reset - This is where we start
ROM:5FF00004 ; ---------------------------------------------------------------------------
ROM:5FF00004                 LDR     PC, =sub_5FF16FB4   ; Used for Undef
ROM:5FF00008 ; ---------------------------------------------------------------------------
ROM:5FF00008                 LDR     PC, =sub_5FF16FEC   ; Used for SWI
ROM:5FF0000C ; ---------------------------------------------------------------------------
ROM:5FF0000C                 LDR     PC, =sub_5FF17024   ; Used for Prefabt
ROM:5FF00010 ; ---------------------------------------------------------------------------
ROM:5FF00010                 LDR     PC, =sub_5FF17060   ; Used for DataAbt
ROM:5FF00014 ; ---------------------------------------------------------------------------
ROM:5FF00014                 LDR     PC, =loc_5FF17098   ; Used for AddrExc 
ROM:5FF00018 ; ---------------------------------------------------------------------------
ROM:5FF00018                 LDR     PC, =loc_5FF16F24   ; Used for IRQ
ROM:5FF0001C ; ---------------------------------------------------------------------------
ROM:5FF0001C                 LDR     PC, =sub_5FF16F6C   ; Probably FIQ, need to verify this
ROM:5FF00020 ; ---------------------------------------------------------------------------
ROM:5FF00020                 SVCPL   0xF00040
ROM:5FF00020 ; ---------------------------------------------------------------------------
ROM:5FF00024 off_5FF00024    DCD sub_5FF16FB4        ; DATA XREF: ROM:5FF00004↑r
ROM:5FF00028 off_5FF00028    DCD sub_5FF16FEC        ; DATA XREF: ROM:5FF00008↑r
ROM:5FF0002C off_5FF0002C    DCD sub_5FF17024        ; DATA XREF: ROM:5FF0000C↑r
ROM:5FF00030 off_5FF00030    DCD sub_5FF17060        ; DATA XREF: ROM:5FF00010↑r
ROM:5FF00034 off_5FF00034    DCD loc_5FF17098        ; DATA XREF: ROM:5FF00014↑r
ROM:5FF00038 off_5FF00038    DCD loc_5FF16F24        ; DATA XREF: ROM:5FF00018↑r
ROM:5FF0003C off_5FF0003C    DCD sub_5FF16F6C        ; DATA XREF: ROM:5FF0001C↑r
ROM:5FF00040 ; ---------------------------------------------------------------------------
ROM:5FF00040
ROM:5FF00040 loc_5FF00040                            ; CODE XREF: ROM:loc_5FF00000↑j
ROM:5FF00040                 ADR     R0, loc_5FF00000   <-- The address we rebased to
ROM:5FF00044                 LDR     R1, =loc_5FF00000
ROM:5FF00048                 CMP     R0, R1
ROM:5FF0004C                 CMP     R0, R1
ROM:5FF00050                 BEQ     loc_5FF0007C
...
...
ROM:5FF000E8 loc_5FF000E8                            ; CODE XREF: ROM:5FF000F0↓j
ROM:5FF000E8                 CMP     R0, R1
ROM:5FF000EC                 STRLT   R2, [R0],#4
ROM:5FF000F0                 BLT     loc_5FF000E8
ROM:5FF000F4                 LDR     R0, =(_ibootStart+1)
ROM:5FF000F8                 MOV     LR, PC
ROM:5FF000FC                 BX      R0 ; _ibootStart
ROM:5FF00100
ROM:5FF00100 loc_5FF00100                            ; CODE XREF: ROM:loc_5FF00100↓j
ROM:5FF00100                 B       loc_5FF00100

Where iBootStart (not the official Apple Symbol, of course) can be seen at:

ROM:5FF00BA4 _ibootStart                             ; CODE XREF: ROM:5FF000FC↑p
ROM:5FF00BA4                                         ; DATA XREF: ROM:5FF000F4↑o ...
ROM:5FF00BA4                 PUSH    {R7,LR}
ROM:5FF00BA6                 MOV     R7, SP
ROM:5FF00BA8                 LDR     R0, =aIbootStart ; "\niBoot start\n"
ROM:5FF00BAA                 BL      loc_5FF233C4
ROM:5FF00BAE                 MOVS    R0, #0
ROM:5FF00BB0                 BL      loc_5FF16E54
ROM:5FF00BB4                 BL      loc_5FF1570C
ROM:5FF00BB8                 BL      loc_5FF143A8
ROM:5FF00BBC                 BL      unk_5FF15264
ROM:5FF00BC0                 LDR     R0, =aMain      ; "main"
..

Flow of iBoot (1219 - 5.0.x)

iBoot is quite a complicated binary, which spawns several ARM tasks to enable the boot process:

- iBootStart (disassembly started above) - starts main (5FF00BCA) - which calls the main function at 5FF00C14
- main: Does the good stuff (loading the kernel, etc)
   starts the poweroff task (5FF00EF2) - calls  (sub_5FF00FD0+1)
   In recovery mode (failed boot): 
           starts command (5FF00F0A) - calls 5FF15928
           starts idleoff (5FF99F2E) - calls 5FF01060

Versions

audioOS/HomePod Software

Version list for audioOS (HomePod Software)
iBoot Version Software Version Build Number
iBoot-4076.20.8~14 11.0.2 15C25
iBoot-4076.30.40~30 11.2 beta 15C4092b
iBoot-4076.30.43~18 11.2 beta 2 15C4097d
iBoot-4076.30.43~137 11.2.5 beta 15D5037e
11.2.5 beta 2 15D5046b
iBoot-4076.30.43~140 11.2.5 beta 3 15D59
iBoot-4076.50.126~85 11.3 15E217
iBoot-4076.60.11~7 11.4 15F80
iBoot-4076.70.15~19 11.4.1 15G77
iBoot-4513.200.297~1 12.0 16A366
iBoot-4513.220.100~1 12.1 16B92
iBoot-4513.230.10~5 12.1.1 16C50
iBoot-4513.230.10~63 12.1.3 16D39
iBoot-4513.250.288~5 12.2 16E227
iBoot-4513.260.81~7 12.3 16F156
iBoot-5540.40.51~223 13.2 17B84
13.2.1 17B90
iBoot-5540.60.11~30 13.3 17C54
iBoot-5540.80.2~139 13.3.1 17D50
iBoot-5540.100.194~112 13.4 17L256
iBoot-5540.120.17~6 13.4.5 17L562
13.4.6 17L570
iBoot-5540.140.12~19 13.4.8 17M61
iBoot-6603.0.0.110.6~12 14.0 beta 18J5313t
iBoot-6631.0.0.0.1~30 14.0 beta 2 18J5331g
iBoot-6690.0.0.0.4~207 14.0 beta 3 18J5344d
iBoot-6723.0.7.143.1~1 14.0 beta 4 18J5354f
iBoot-6723.0.34~189 14.1 beta 5 18J4364d
iBoot-6723.0.43~12 14.1 beta 6 18J6370e
iBoot-6723.0.43~59 14.1 beta 7 18J6379c
14.1 beta 8 18J6385b
iBoot-6723.1.1~1 14.1 18J8394
iBoot-6723.40.106~177 14.2 beta 18K5027e
iBoot-6723.40.120.0.2~152 14.2 beta 2 18K5036d
iBoot-6723.40.151~84 14.2 beta 3 18K5047f
iBoot-6723.43.1~24 14.2 beta 4 18K5057c
iBoot-6723.43.1~10 14.2 18K60
14.2.1 18K75
iBoot-6723.60.60.0.2~137 14.3 beta 18K5545e
iBoot-6723.60.62~85 14.3 beta 2 18K5556a
14.3 beta 3 18K5559a
iBoot-6723.60.62~95 14.3 RC 18K561
14.3 18K563
iBoot-6723.80.14~45 14.4 beta 18K5780c
iBoot-6723.80.17~27 14.4 beta 2 18K5793d
iBoot-6723.80.19~1 14.4 RC 18K802
14.4
iBoot-6723.100.321~58 14.5 beta 18L5149j
iBoot-6723.100.360~61 14.5 beta 3 18L5173f
iBoot-6723.103.1~2 14.5 beta 4 18L5186a
14.5 beta 5 18L5193a
iBoot-6723.103.1~12 14.5 beta 6 18L5200a
14.5 beta 7 18L5203a
iBoot-6723.103.1~1 14.5 RC 18L203
14.5
iBoot-6723.120.33.0.1~153 14.6 beta 18L5546f
iBoot-6723.120.35~169 14.6 beta 2 18L5555c
iBoot-6723.120.36~225 14.6 beta 3 18L5565a
iBoot-6723.120.36~404 14.6 RC 18L569
14.6
iBoot-6723.120.36~423 14.7 beta 18M5523d
iBoot-6723.120.36~540 14.7 beta 2 18M5533c
iBoot-6723.120.36~784 14.7 beta 3 18M5542c
iBoot-6723.140.1~41 14.7 beta 4 18M5552d
iBoot-6723.140.2~45 14.7 beta 5 18M5558a
iBoot-6723.140.2~9 14.7 RC 18M60
14.7
iBoot-7429.0.72.0.3~429 15.0 beta 19J5268r
iBoot-7429.0.133.0.1~8 15.0 beta 2 19J5288e
iBoot-7429.0.181.0.2~9 15.0 beta 3 19J5304b
19J5304e
iBoot-7429.0.207.0.3~16 15.0 beta 4 19J5314e
iBoot-7429.10.23.0.2~43 15.0 beta 5 19J5332b
iBoot-7429.10.23.0.2~83 15.0 beta 6 19J5332d
iBoot-7429.10.23.0.2~114 15.0 beta 7 19J5340a
15.0 beta 8 19J5345a
15.0 beta 9 19J5346a
iBoot-7429.10.23.0.2~113 15.0 RC 19J346
15.0
iBoot-7429.40.68~15 15.1 beta 19J5542e
iBoot-7429.40.84.0.1~7 15.1 beta 2 19J5552e
iBoot-7429.40.92.0.5~7 15.1 beta 3 19J5560d
iBoot-7429.40.94~8 15.1 beta 4 19J5567a
iBoot-7429.40.94~3 15.1 RC 19J572
15.1
15.1.1 19J582
iBoot-7429.60.27.0.1~76 15.2 beta 19K5025g
iBoot-7429.60.41~7 15.2 beta 2 19K5035d
iBoot-7429.60.47~5 15.2 beta 3 19K5043b
15.2 beta 4 19K5050a
iBoot-7429.60.47~2 15.2 RC 19K52
15.2
iBoot-7429.80.17~43 15.3 beta 19K5527d
iBoot-7429.80.33~11 15.3 beta 2 19K5541d
iBoot-7429.80.33~49 15.3 RC 19K546
15.3 19K547
iBoot-7459.100.487~22 15.4 beta 19L5409j
iBoot-7459.100.494.0.2~66 15.4 beta 2 19L5419e
iBoot-7459.100.504.0.1~15 15.4 beta 3 19L5425e
iBoot-7459.103.1~2 15.4 beta 4 19L5436a
15.4 beta 5 19L5440a
iBoot-7459.103.1~1 15.4 RC 19L440
15.4
15.4.1 19L452
iBoot-7459.120.39.0.2~28 15.5 beta 19L5547e
iBoot-7459.120.45.0.4~103 15.5 beta 2 19L5557d
iBoot-7459.120.56.0.2~18 15.5 beta 3 19L5562e
iBoot-7459.120.62.0.3~16 15.5 beta 4 19L5569a
iBoot-7459.120.62.0.3~1 15.5 RC 19L570
15.5
15.5.1 19L580
iBoot-7459.140.8~33 15.6 beta 19M5027c
iBoot-7459.140.10~17 15.6 beta 2 19M5037c
iBoot-7459.140.12.0.1~15 15.6 beta 3 19M5046c
iBoot-7459.140.15~7 15.6 beta 4 19M5056c
iBoot-7459.140.15~38 15.6 beta 5 19M5062a
iBoot-7459.140.15~18 15.6 RC 19M63
15.6 19M65
iBoot-8419.0.42.113.2~2 16.0 beta 20J5299n
iBoot-8419.0.79.0.2~451 16.0 beta 2 20J5319h
iBoot-8419.0.113.0.1~9 16.0 beta 3 20J5328f
iBoot-8419.0.151.0.1~47 16.0 beta 4 20J5344f
iBoot-8419.0.151.0.2~369 16.0 beta 5 20J5355f
iBoot-8419.3.1~12 16.0 beta 6 20J5366a
16.0 beta 7 20J5371a
iBoot-8419.3.1~6 16.0 RC 20J373
16.0
iBoot-8419.40.90.0.2~66 16.1 beta 20K5041d
iBoot-8419.40.95.0.1~93 16.1 beta 2 20K5046d
iBoot-8419.40.102.0.2~66 16.1 beta 3 20K5052c
iBoot-8419.40.112~37 16.1 beta 4 20K5062a
16.1 beta 5 20K5068a
iBoot-8419.40.112~49 16.1 RC 20K71
16.1
iBoot-8419.60.31~13 16.2 beta 20K5331f
iBoot-8419.60.38.0.1~66 16.2 beta 2 20K5342d
iBoot-8419.60.44~59 16.2 beta 3 20K5348d
iBoot-8419.60.44~165 16.2 beta 4 20K5357b
iBoot-8419.60.44~108 16.2 RC 20K362
16.2
iBoot-8419.80.3~6 16.3 beta 20K5626c
iBoot-8419.80.4.0.1~16 16.3 beta 2 20K5637g
iBoot-8419.80.7~6 16.3 RC 20K649
16.3
16.3.1 20K661
16.3.2 20K672
iBoot-8422.100.610.503.1~1 16.4 beta 20L5463g
iBoot-8422.100.640.0.1~32 16.4 beta 2 20L5474e
iBoot-8422.100.645.0.1~29 16.4 beta 3 20L5480g
iBoot-8422.100.650~40 16.4 beta 4 20L5490a
iBoot-8422.100.650~27 16.4 RC 20L497
16.4
16.4.1 20L498
iBoot-8422.120.33~21 16.5 beta 20L5527d
iBoot-8422.120.55~7 16.5 beta 2 20L5538d
iBoot-8422.120.65~47 16.5 beta 3 20L5549e
iBoot-8422.120.65.0.1~25 16.5 beta 4 20L5559a
iBoot-8422.120.65.0.1~9 16.5 RC 20L562
16.5 20L563
iBoot-8422.140.18.0.2~88 16.6 beta 20M5527e
iBoot-8422.140.32~78 16.6 beta 2 20M5538d
iBoot-8422.140.46.0.1~10 16.6 beta 3 20M5548b
iBoot-8422.140.50.0.2~11 16.6 beta 4 20M5559c
iBoot-8422.140.59~48 16.6 beta 5 20M5571a
iBoot-8422.140.59~12 16.6 RC 20M73
16.6
iBoot-10151.0.82.0.1~508 17.0 beta 21J5273q
iBoot-10151.0.211~14 17.0 beta 2 21J5303f
iBoot-10151.0.255.0.4~44 17.0 beta 3 21J5318f
iBoot-10151.0.305.0.1~21 17.0 beta 4 21J5330e
17.0 beta 5 21J5339b
17.0 beta 6 21J5347a
iBoot-10151.0.305.0.1~235 17.0 beta 7 21J5353a
iBoot-10151.0.305.0.1~151 17.0 RC 21J354
17.0
iBoot-10151.40.132~115 17.1 beta 21K5043e
iBoot-10151.40.171.0.4~23 17.1 beta 2 21K5054e
iBoot-10151.40.175~49 17.1 beta 3 21K5064b
iBoot-10151.40.175~44 17.1 RC 21K69
17.1
17.1.1 21K82
iBoot-10151.60.43~25 17.2 beta 21K5330g
iBoot-10151.60.55~28 17.2 beta 2 21K5341f
iBoot-10151.60.56~26 17.2 beta 3 21K5348f
iBoot-10151.60.59~39 17.2 beta 4 21K5356c
iBoot-10151.60.59~32 17.2 RC 21K364
17.2 RC 2 21K365
17.2
iBoot-10151.80.6~238 17.3 beta 21K5625e
iBoot-10151.80.20~7 17.3 beta 2 21K5635c
iBoot-10151.80.20~86 17.3 beta 3 21K5643b
iBoot-10151.80.20~68 17.3 RC 21K646
17.3
iBoot-10151.100.738.0.1~16 17.4 beta 21L5195h
iBoot-10151.100.753~103 17.4 beta 2 21L5206f
iBoot-10151.100.756~167 17.4 beta 3 21L5212d
iBoot-10151.103.1~26 17.4 beta 4 21L5222a
17.4 beta 5 21L5225a
iBoot-10151.103.1~25 17.4 RC 21L227
17.4
iBoot-10151.120.125.0.2~25 17.5 beta 21L5543d
iBoot-10151.120.136~15 17.5 beta 2 21L5553e

macOS

Version list for macOS
iBoot Version Software Version Build Number
iBoot-6603.110.6.3~4 11.0 beta 20A5299w
iBoot-6671.0.0.0.6~849 11.0 beta 3 20A5323l
iBoot-6723.0.0.141.6~2 11.0 beta 4 20A5343i
20A5343j
iBoot-6723.40.26.151.1~2 11.0 beta 5 20A5354i
iBoot-6723.40.67.0.1~123 11.0 beta 6 20A5364e
iBoot-6723.40.86.0.5~223 11.0 beta 7 20A5374g
11.0 beta 8 20A5374i
iBoot-6723.40.120.0.2~363 11.0 beta 9 20A5384c
iBoot-6723.40.151~107 11.0 beta 10 20A5395g
iBoot-6723.41.11 11.0 20A2411
iBoot-6723.41.11~32 11.0.1 beta 20B5012d
iBoot-6723.50.2~20 11.0.1 RC 20B5022a
iBoot-6723.50.2~21 11.0.1 RC 2 20B28
11.0.1 20B29
20B50
iBoot-6723.60.62~64 11.1 beta 20C5048k
iBoot-6723.61.3~12 11.1 beta 2 20C5061b
iBoot-6723.61.3~65 11.1 RC 20C69
11.1
iBoot-6723.80.14~61 11.2 beta 20D5029f
iBoot-6723.80.17~168 11.2 beta 2 20D5042d
iBoot-6723.81.1~5 11.2 RC 20D53
11.2 RC 2 20D62
11.2 RC 3 20D64
11.2
11.2.1 20D74
iBoot-6723.81.1~18 11.2.2 20D80
11.2.3 20D91
iBoot-6723.100.321~147 11.3 beta 20E5172i
iBoot-6723.100.337.121.1~3 11.3 beta 2 20E5186d
iBoot-6723.100.360~103 11.3 beta 3 20E5196f
iBoot-6723.101.3~15 11.3 beta 4 20E5210c
iBoot-6723.101.4~6 11.3 beta 5 20E5217a
iBoot-6723.101.4~18 11.3 beta 6 20E5224a
11.3 beta 7 20E5229a
11.3 beta 8 20E5231a
iBoot-6723.101.4~21 11.3 RC 20E232
11.3
11.3.1 20E241
iBoot-6723.120.33.0.1~159 11.4 beta 20F5046g
iBoot-6723.120.35~234 11.4 beta 2 20F5055c
iBoot-6723.120.36~305 11.4 beta 3 20F5065a
iBoot-6723.120.36~406 11.4 RC 20F71
11.4
iBoot-6723.120.36~445 11.5 beta 20G5023d
iBoot-6723.120.36~617 11.5 beta 2 20G5033c
iBoot-6723.120.36.131.1~1 11.5 beta 3 20G5042c
iBoot-6723.140.1~104 11.5 beta 4 20G5052c
iBoot-6723.140.2~58 11.5 beta 5 20G5065a
iBoot-6723.140.2~69 11.5 RC 20G70
11.5 RC 2 20G71
11.5
11.5.1 20G80
11.5.2 20G95
iBoot-6723.140.2~93 11.6 20G165
iBoot-6723.140.2~156 11.6.1 RC 20G211
iBoot-6723.140.2~157 11.6.1 RC 2 20G214
iBoot-6723.140.2~159 11.6.1 RC 3 20G219
iBoot-6723.140.2~161 11.6.1 RC 4 20G221
11.6.1 20G224
iBoot-6723.140.2~164 11.6.2 RC 20G303
iBoot-6723.140.2~166 11.6.2 RC 2 20G306
iBoot-6723.140.2~169 11.6.2 RC 3 20G311
iBoot-6723.140.2~170 11.6.2 RC 4 20G313
11.6.2 20G314
iBoot-6723.140.2~171 11.6.3 RC 20G405
11.6.3 RC 2 20G409
11.6.3 RC 3 20G413
11.6.3 20G415
11.6.4 RC 20G507
11.6.4 20G417
11.6.5 RC 20G517
11.6.5 RC 2 20G521
11.6.5 RC 3 20G525
11.6.5 RC 4 20G526
11.6.5 20G527
11.6.6 RC 20G604
11.6.6 RC 2 20G608
11.6.6 RC 3 20G614
11.6.6 RC 4 20G618
11.6.6 RC 5 20G623
11.6.6 20G624
11.6.7 RC 20G704
11.6.7 RC 2 20G710
11.6.7 20G630
11.6.8 RC 3 20G715
11.6.8 RC 4 20G720
11.6.8 RC 5 20G725
11.6.8 RC 6 20G728
11.6.8 20G730
iBoot-6723.140.2~184 11.7 RC 20G817
11.7
11.7.1 RC 20G908
11.7.1 RC 2 20G912
11.7.1 RC 3 20G916
11.7.1 RC 4 20G918
11.7.1
11.7.2 RC 20G1008
11.7.2 RC 2 20G1011
11.7.2 RC 3 20G1020
11.7.2
11.7.3 RC 20G1102
11.7.3 RC 2 20G1113
iBoot-6723.140.2~185 11.7.3 RC 3 20G1116
11.7.3
11.7.4 20G1120
11.7.5 RC 20G1205
11.7.5 RC 2 20G1210
11.7.5 RC 3 20G1215
iBoot-6723.140.2~186 11.7.5 RC 4 20G1220
11.7.5 RC 5 20G1225
11.7.6 RC 20G1329
11.7.6 20G1231
11.7.7 RC 2 20G1332
11.7.7 RC 3 20G1338
11.7.7 RC 4 20G1342
11.7.7 RC 5 20G1345
11.7.7
11.7.8 RC 20G1403
11.7.8 RC 2 20G1407
11.7.8 20G1351
iBoot-6723.140.2~191 11.7.9 RC 3 20G1413
iBoot-6723.140.2~192 11.7.9 RC 4 20G1416
iBoot-6723.140.2~194 11.7.9 RC 5 20G1424
11.7.9 RC 6 20G1426
11.7.9
iBoot-6723.140.2~195 11.7.10 20G1427
iBoot-6997 12.0 ?
iBoot-7429.0.72.0.3~559 12.0 beta 21A5248p
iBoot-7429.0.133.121.1~6 12.0 beta 2 21A5268h
iBoot-7429.0.181.131.1~5 12.0 beta 3 21A5284e
iBoot-7429.0.207.141.1~4 12.0 beta 4 21A5294g
iBoot-7429.30.8.0.4~161 12.0 beta 5 21A5304g
iBoot-7429.40.38~32 12.0 beta 6 21A5506j
iBoot-7429.40.68~75 12.0 beta 7 21A5522h
iBoot-7429.40.84.181.1~3 12.0 beta 8 21A5534d
iBoot-7429.40.92.0.5~11 12.0 beta 9 21A5543b
iBoot-7429.41.4~21 12.0 beta 10 21A5552a
iBoot-7429.30.65 12.0 21A344
iBoot-7429.41.4~25 12.0.1 RC 21A558
iBoot-7429.41.5~1 12.0.1 RC 2 21A559
12.0.1
iBoot-7429.60.27.0.1~107 12.1 beta 21C5021h
iBoot-7429.60.41~118 12.1 beta 2 21C5031d
iBoot-7429.60.47~12 12.1 beta 3 21C5039b
iBoot-7429.61.2~16 12.1 beta 4 21C5045a
iBoot-7429.61.2~18 12.1 RC 21C51
12.1 RC 2 21C52
12.1
iBoot-7429.80.17~49 12.2 beta 21D5025f
iBoot-7429.80.33~15 12.2 beta 2 21D5039d
iBoot-7429.81.3~5 12.2 RC 21D48
12.2 21D49
21D2048
12.2.1 21D62
iBoot-7459.100.487.115.1~5 12.3 beta 21E5196i
iBoot-7459.100.494.121.1~6 12.3 beta 2 21E5206e
iBoot-7459.100.504.0.1~129 12.3 beta 3 21E5212f
iBoot-7459.101.2~33 12.3 beta 4 21E5222a
iBoot-7459.101.2~39 12.3 beta 5 21E5227a
iBoot-7459.101.2~38 12.3 RC 21E230
12.3
iBoot-7459.101.3~1 12.3.1 21E258
iBoot-7459.120.39.111.1~1 12.4 beta 21F5048e
iBoot-7459.120.45.0.4~113 12.4 beta 2 21F5058e
iBoot-7459.120.56.0.2~31 12.4 beta 3 21F5063e
iBoot-7459.121.2~7 12.4 beta 4 21F5071b
iBoot-7459.121.3~2 12.4 RC 21F79
12.4
iBoot-7459.121.3~1 12.4 21F2081
21F2092
iBoot-7459.140.8~42 12.5 beta 21G5027d
iBoot-7459.140.10~64 12.5 beta 2 21G5037d
iBoot-7459.140.12.0.1~18 12.5 beta 3 21G5046c
iBoot-7459.140.15~11 12.5 beta 4 21G5056b
iBoot-7459.141.1~9 12.5 beta 5 21G5063a
iBoot-7459.141.1~10 12.5 RC 21G69
iBoot-7459.141.1~11 12.5 RC 2 21G72
12.5
iBoot-7459.141.1~19 12.5.1 21G83
iBoot-7459.141.1~23 12.6 RC 21G115
12.6
12.6.1 RC 21G207
12.6.1 RC 2 21G211
12.6.1 RC 3 21G215
12.6.1 RC 4 21G217
12.6.1
12.6.2 RC 21G309
12.6.2 RC 2 21G312
12.6.2 RC 3 21G317
12.6.2 RC 4 21G320
12.6.2
12.6.3 RC 21G403
12.6.3 RC 2 21G417
iBoot-7459.141.1~24 12.6.3 RC 3 21G419
12.6.3
12.6.4 RC 21G506
iBoot-7459.141.1~25 12.6.4 RC 2 21G511
12.6.4 RC 3 21G516
12.6.4 RC 4 21G521
12.6.4 RC 5 21G526
12.6.5 RC 21G630
12.6.5 21G531
12.6.6 RC 2 20G1332
iBoot-7459.141.1~32 12.6.6 RC 3 20G1339
12.6.6 RC 4 21G644
12.6.6 RC 5 21G646
12.6.6
iBoot-7459.141.1~34 12.6.7 RC 21G703
12.6.7 RC 2 21G708
iBoot-7459.141.1~40 12.6.7 21G651
iBoot-7459.141.1~36 12.6.8 RC 3 21G713
iBoot-7459.141.1~46 12.6.8 RC 4 21G716
iBoot-7459.141.1.700.1~2 12.6.8 RC 5 21G724
12.6.8 RC 6 21G725
12.6.8
iBoot-7459.141.1.700.1~24 12.6.9 21G726
iBoot-7459.141.1.700.1~17 12.7 RC 21G808
iBoot-7459.141.1.700.1~22 12.7 RC 2 21G813
iBoot-7459.141.1.700.1~25 12.7 RC 3 21G814
12.7 21G816
iBoot-7459.141.1.701.1~4 12.7.1 RC 21G913
iBoot-7459.141.1.701.1~5 12.7.1 RC 2 21G918
iBoot-7459.141.1.701.1~5 12.7.1 RC 3 21G920
12.7.1
iBoot-7459.141.1.701.1~7 12.7.2 RC 21G1925
iBoot-7459.141.1.701.1~13 12.7.2 RC 2 21G1965
12.7.2 RC 3 21G1967
iBoot-7459.141.1.701.1~15 12.7.2 RC 4 21G1971
iBoot-7459.141.1.701.1~16 12.7.2 RC 5 21G1974
12.7.2
iBoot-7459.141.1.701.1~19 12.7.3 RC 21H1006
iBoot-7459.141.1.701.1~21 12.7.3 RC 2 21H1009
iBoot-7459.141.1.701.1~26 12.7.3 RC 3 21H1013
iBoot-7459.141.1.701.1~28 12.7.3 RC 4 21H1015
12.7.3
iBoot-7459.141.1.701.1~29 12.7.4 RC 21H1105
12.7.4 RC 2 21H1111
iBoot-7459.141.1.701.1~34 12.7.4 RC 3 21H1121
12.7.4 RC 4 21H1122
12.7.4 RC 5 21H1123
12.7.4
12.7.5 RC 21H1205
12.7.5 RC 2 21H1211
iBoot-8419.0.42.111.3~15 13.0 beta 22A5266r
iBoot-8419.0.79.0.2~748 13.0 beta 2 22A5286j
iBoot-8419.0.113.0.1~392 13.0 beta 3 22A5295h
13.0 beta 3
Update
22A5295i
iBoot-8419.0.151.0.1~179 13.0 beta 4 22A5311f
iBoot-8419.40.2.0.5~99 13.0 beta 5 22A5321d
iBoot-8419.40.33.0.1~264 13.0 beta 6 22A5331f
iBoot-8419.40.75~34 13.0 beta 7 22A5342f
iBoot-8419.40.95.0.1~152 13.0 beta 8 22A5352e
iBoot-8419.40.102.0.2~183 13.0 beta 9 22A5358e
iBoot-8419.41.6~36 13.0 beta 10 22A5365d
iBoot-8419.41.10~7 13.0 beta 11 22A5373b
iBoot-8419.41.10~28 13.0 RC 22A379
13.0 RC 2 22A380
13.0
iBoot-8419.41.10~35 13.0.1 22A400
iBoot-8419.60.31~64 13.1 beta 22C5033e
iBoot-8419.60.38.0.1~75 13.1 beta 2 22C5044e
iBoot-8419.60.44~61 13.1 beta 3 22C5050e
iBoot-8419.60.44~243 13.1 beta 4 22C5059b
iBoot-8419.60.44~324 13.1 RC 22C65
13.1
iBoot-8419.80.3~19 13.2 beta 22D5027d
iBoot-8419.80.4.0.1~76 13.2 beta 2 22D5038i
iBoot-8419.80.7~8 13.2 RC 22D49
13.2
iBoot-8422.100.610.0.1~81 13.3 beta 22E5219e
iBoot-8422.100.640.505.1~3 13.3 beta 2 22E5230e
iBoot-8422.100.645.0.1~58 13.3 beta 3 22E5236f
iBoot-8422.100.650~91 13.3 beta 4 22E5246b
iBoot-8422.100.650~129 13.3 RC 22E252
13.3
? 13.3 22E8252
iBoot-8422.100.650~129 13.3.1 22E261
iBoot-8422.120.33~93 13.4 beta 22F5027f
iBoot-8422.120.55~52 13.4 beta 2 22F5037d
iBoot-8422.120.65~85 13.4 beta 3 22F5049e
iBoot-8422.121.1~23 13.4 beta 4 22F5059b
iBoot-8422.121.3~1 13.4 RC 22F62
iBoot-8422.121.1~25 13.4 RC 2 22F63
13.4 RC 3 22F66
13.4
? 13.4 22F2063
iBoot-8422.121.3.1.1~1 22F2073
iBoot-8422.121.1~31 13.4.1 22F82
iBoot-8422.121.3.1.1~3 22F2083
iBoot-8422.140.18.0.2~96 13.5 beta 22G5027e
iBoot-8422.140.32~103 13.5 beta 2 22G5038d
iBoot-8422.140.46.505.1~11 13.5 beta 3 22G5048d
iBoot-8422.140.50.0.2~22 13.5 beta 4 22G5048d
iBoot-8422.141.1~19 13.5 beta 5 22G5072a
iBoot-8422.141.2~8 13.5 RC 22G74
13.5
? 13.5 22G2074
? 22G2080
iBoot-8422.141.2~8 13.5.1 22G90
13.5.2 22G91
13.6 RC 22G109
13.6 RC 2 22G115
13.6 RC 3 22G116
13.6 22G120
iBoot-8422.141.2.700.1~4 13.6.1 RC 22G213
iBoot-8422.141.2.700.1~13 13.6.1 RC 2 22G311
iBoot-8422.141.2.700.1~17 13.6.1 RC 3 22G313
13.6.1
iBoot-8422.141.2.700.1~22 13.6.2 RC 22G417
iBoot-8422.141.2.700.1~30 13.6.2 22G320
iBoot-8422.141.2.700.1~21 22G2321
iBoot-8422.141.2.700.1~31 13.6.3 RC 2 22G423
iBoot-8422.141.2.700.1~35 13.6.3 RC 3 22G430
iBoot-8422.141.2.700.1~37 13.6.3 RC 4 22G433
iBoot-8422.141.2.700.1~38 13.6.3 RC 5 22G436
13.6.3
iBoot-8422.141.2.700.1~42 13.6.4 RC 22G504
iBoot-8422.141.2.700.1~46 13.6.4 RC 2 22G507
iBoot-8422.141.2.700.1~50 13.6.4 RC 3 22G511
iBoot-8422.141.2.700.1~51 13.6.4 RC 4 22G513
13.6.4
iBoot-8422.141.2.700.1~53 13.6.5 RC 22G605
13.6.5 RC 2 22G610
iBoot-8422.141.2.700.1~58 13.6.5 RC 3 22G619
iBoot-8422.141.2.700.1~62 13.6.5 RC 4 22G620
13.6.5 RC 5 22G621
13.6.5
13.6.6 22G630
13.6.7 RC 22G705
13.6.7 RC 2 22G711
iBoot-8419.0.42.111.3~15 14.0 beta 23A5257q
iBoot-10151.0.156.505.1~8 14.0 beta 2 23A5276g
iBoot-10151.0.172.0.3~104 14.0 beta 3 23A5286g
iBoot-10151.0.172.0.3~107 23A5286i
iBoot-10151.0.255.0.4~358 14.0 beta 4 23A5301g
iBoot-10151.0.255.0.4~428 23A5301h
iBoot-10151.0.305.0.1~143 14.0 beta 5 23A5312d
iBoot-10151.1.1~110 14.0 beta 6 23A5328b
iBoot-10151.1.1~159 14.0 beta 7 23A5337a
iBoot-10151.1.1~184 14.0 RC 23A339
14.0 RC 2 23A344
14.0
iBoot-10151.40.132~320 14.1 beta 23B5046f
iBoot-10151.40.171.501.2~3 14.1 beta 2 23B5056e
iBoot-10151.41.10~6 14.1 beta 3 23B5067a
iBoot-10151.41.12~1 14.1 RC 23B73
? 14.1 23B2073
iBoot-10151.41.12~1 23B74
iBoot-10151.41.12~2 23B2077
iBoot-10151.41.12~1 14.1.1 23B81
iBoot-10151.41.12~2 23B2082
iBoot-10151.41.12~1 14.1.2 23B92
iBoot-10151.41.12~2 23B2091
iBoot-10151.60.43~68 14.2 beta 23C5030f
iBoot-10151.60.55~135 14.2 beta 2 23C5041e
iBoot-10151.60.56~46 14.2 beta 3 23C5047e
iBoot-10151.61.4~43 14.2 beta 4 23C5055b
iBoot-10151.61.4~51 14.2 RC 23C63
14.2 RC 2 23C64
14.2
14.2.1 23C71
iBoot-10151.80.6~304 14.3 beta 23D5033f
iBoot-10151.80.20~49 14.3 beta 2 23D5043d
iBoot-10151.81.1~24 14.3 beta 3 23D5051b
iBoot-10151.81.1~41 14.3 RC 23D56
14.3
iBoot-10151.81.1~42 14.3 23D2057
iBoot-10151.81.1~41 14.3.1 23D60
iBoot-10151.100.738.0.1~306 14.4 beta 23E5180j
iBoot-10151.100.753~105 14.4 beta 2 23E5191e
iBoot-10151.100.756~165 14.4 beta 3 23E5196e
iBoot-10151.101.2.501.1~1 14.4 beta 4 23E5205c
iBoot-10151.101.3~26 14.4 beta 5 23E5211a
iBoot-10151.101.3~2 14.4 RC 23E214
14.4
14.4.1 23E224
iBoot-10151.120.115.0.4~79 14.5 beta 23F5049f
iBoot-10151.120.136~10 14.5 beta 2 23F5059e

embeddedOS

Version list for embeddedOS
iBoot Version Software Version Build Number
iBoot-3406.20.16~95 3.0 14Y363
14Y502
iBoot-3406.55.1~2 14Y565
iBoot-3406.65.1~1 14Y617
14Y618b
14Y657
14Y661
14Y662
14Y663
14Y664
14Y665
14Y666
iBoot-3406.65.1.1~1 14Y667
14Y674
iBoot-3406.65.1.2~1 14Y675
14Y677
iBoot-3406.65.1.2~14 14Y901
14Y903
14Y904
14Y905
14Y906
14Y907
14Y908
14Y910

bridgeOS

Version list for bridgeOS
iBoot Version Software Version Build Number
iBoot-4076.20.46~58 2.0 15P254
? 2.0.1 15P2064
iBoot-4076.47.12~1 15P2542
? 2.3 beta 15P53128e
? 2.3 beta 2 15P53138b
? 2.3 beta 3 15P53149a
? 2.3 beta 4 15P53160b
? 2.3 beta 5 15P53165a
? 2.3 beta 7 15P53168a
? 2.3 15P3169
? 2.3.1 beta 15P55035c
? 2.3.1 beta 2 15P55045b
? 2.3.1 beta 4 15P55063a
iBoot-4076.60.11~20 2.3.1 15P5064
? 2.3.2 beta 15P56030b
iBoot-4076.70.14~9 2.3.2 beta 2 15P56038b
iBoot-4076.70.15~45 2.3.2 beta 3 15P56045b
iBoot-4076.70.15~60 2.3.2 beta 4 15P56053a
iBoot-4076.75.2~10 2.3.2 beta 5 15P56058b
iBoot-4076.75.2~1 2.3.2 15P6059
iBoot-4076.75.2~2 2.4.1 15P6613
15P6703
iBoot-4076.75.2~31 15P6805
? 3.0 beta 16P50295l
iBoot-4513.200.209~8 3.0 beta 2 16P50315f
16P50315h
iBoot-4513.200.230.0.1~23 3.0 beta 3 16P50325c
iBoot-4513.200.250~9 3.0 beta 4 16P50334e
iBoot-4513.200.278~29 3.0 beta 5 16P50345e
iBoot-4513.200.287.0.2~5 3.0 beta 6 16P50351c
iBoot-4513.200.293~10 3.0 beta 7 16P50361a
3.0 beta 8 16P50366a
iBoot-4513.200.293~70 3.0 beta 9 16P50371a
3.0 beta 10 16P50374a
iBoot-4513.200.293~99 3.0 16P375
iBoot-4513.207.14~8 16P554
? 3.1 beta 16P51043b
? 3.1 beta 2 16P51048a
? 3.1 beta 3 16P51055b
iBoot-4513.220.97~50 3.1 beta 4 16P51061a
? 3.1 beta 5 16P51063a
iBoot-4513.220.97~13 3.1 16P1065
? 16P1578
iBoot-4513.220.97~20 16P1582
iBoot-4513.220.97~61 16P2088
iBoot-4513.230.5~75 3.2 beta 16P52529a
iBoot-4513.230.5~131 3.2 beta 2 16P52534b
3.2 beta 3 16P52540a
3.2 beta 4 16P52541a
iBoot-4513.230.5~132 3.2 16P2542
iBoot-4513.230.10~41 3.3 beta 16P53118a
iBoot-4513.230.10~61 3.3 beta 2 16P53129a
3.3 beta 3 16P53132a
iBoot-4513.230.10~54 3.3 16P3133
iBoot-4513.250.271~193 3.4 beta 16P54075e
iBoot-4513.250.278~40 3.4 beta 2 16P54085b
iBoot-4513.250.284~11 3.4 beta 3 16P54095d
iBoot-4513.250.287~8 3.4 beta 4 16P54106c
iBoot-4513.250.287~106 3.4 beta 5 16P54505a
3.4 beta 6 16P54506a
iBoot-4513.250.287~83 3.4 16P4507
? 3.5 beta 16P55095c
iBoot-4513.260.78~9 3.5 beta 2 16P55107b
iBoot-4513.260.80~31 3.5 beta 3 16P55117a
3.5 beta 4 16P55123a
3.5 beta 5 16P55124a
iBoot-4513.260.80~56 3.5 16P5125
16P5200
? 16P5601
? 3.6 beta 16P56529b
iBoot-4513.270.12~35 3.6 beta 2 16P56548b
iBoot-4513.270.14~16 3.6 beta 3 16P56558a
? 3.6 beta 4 16P56566a
? 3.6 beta 5 16P56567a
iBoot-4513.270.14~30 3.6 16P6568
iBoot-4513.270.14~33 16P6571
? 4.0 beta 17P50466r
? 4.0 beta 2 17P50482j
? 4.0 beta 3 17P50496d
iBoot-5540.0.87~72 4.0 beta 4 17P50507f
? 4.0 beta 5 17P50521d
iBoot-5540.0.124~5 4.0 beta 6 17P50531d
iBoot-5540.0.126~53 4.0 beta 7 17P50541b
iBoot-5540.0.129~56 4.0 beta 8 17P50553c
iBoot-5540.11.1~16 4.0 beta 9 17P50566a
4.0 beta 10 17P50569a
4.0 GM 17P50571a
iBoot-5540.11.1~11 4.0 17P572
iBoot-5540.40.19.100.4 4.? ?
iBoot-5540.40.51~40 4.1 beta 17P51068f
? 4.1 beta 2 17P51077a
? 4.1 beta 3 17P51080a
iBoot-5540.40.51~220 4.1 17P1081
? 17P1593
? 17P1600
iBoot-5540.60.6~91 4.2 beta 17P52535b
iBoot-5540.60.11~85 4.2 beta 2 17P52542b
iBoot-5540.60.11~139 4.2 beta 3 17P52548a
4.2 beta 4 17P52550a
iBoot-5540.60.11~84 4.2 17P2551
iBoot-5540.80.1~88 4.2 beta 17P53025a
iBoot-5540.80.2~147 4.2 beta 2 17P53038c
iBoot-5540.80.2~167 4.2 beta 3 17P53049a
iBoot-5540.80.2~166 4.2 17P3050
iBoot-5540.80.2~185 4.3 17P3561
iBoot-5540.100.177.0.1~98 4.4 beta 17P54226c
iBoot-5540.100.190~18 4.4 beta 2 17P54236b
iBoot-5540.100.194~15 4.4 beta 3 17P54244e
iBoot-5540.100.194~188 4.4 beta 4 17P54252a
iBoot-5540.105.2~3 4.4 beta 5 17P54257a
iBoot-5540.105.2~26 4.4 beta 6 17P54261a
iBoot-5540.105.2~25 4.4 17P4263
iBoot-5540.105.2~39 17P4281
? 17P4534
iBoot-5540.105.2~40 17P4538
iBoot-5540.120.9~15 4.5 beta 17P55254a
iBoot-5540.120.14.100.1~1 4.5 beta 2 17P55264c
iBoot-5540.120.15.100.2~1 4.5 beta 3 17P55274c
iBoot-5540.125.3~16 4.5 beta 4 17P55284b
iBoot-5540.125.4~5 4.5 beta 5 17P55289a
iBoot-5540.125.4~4 4.5 17P5290
17P5300
? 17P5566
iBoot-5540.125.4~9 17P5580
iBoot-5540.140.5~26 4.6 beta 17P56035a
iBoot-5540.140.7~35 4.6 beta 2 17P56045a
iBoot-5540.140.12~14 4.6 beta 3 17P56058a
iBoot-5540.140.12~32 4.6 beta 4 17P56063a
iBoot-5540.140.12~43 4.6 17P6065
iBoot-5540.140.12~39 17P6604
17P6610
iBoot-6603.0.0.110.6~7 5.0 beta 18P50310o
iBoot-6675.0.0.0.5~134 5.0 beta 2 18P50335d
iBoot-6723.0.0.0.1~103 5.0 beta 3 18P50347c
iBoot-6723.40.26.0.2~36 5.0 beta 4 18P50358b
iBoot-6723.40.67.0.1~51 5.0 beta 5 18P50370a
iBoot-6723.40.106~38 5.0 beta 6 18P50380a
iBoot-6723.40.120.0.2~174 5.0 beta 7 18P50390a
iBoot-6723.40.151~13 5.0 beta 8 18P50402b
iBoot-6723.41.9~9 5.0.1 beta 18P52551s
iBoot-6723.50.2~11 5.0.1 RC 18P52560a
iBoot-6723.50.2~19 5.0.1 RC 2 18P2561
5.0.1
iBoot-6723.60.62~14 5.1 beta 18P53017c
iBoot-6723.61.3~2 5.1 beta 2 18P53026b
iBoot-6723.61.3~63 5.1 18P3030
iBoot-6723.80.14~46 5.2 beta 18P54330a
iBoot-6723.80.17~166 5.2 beta 2 18P54343c
? 5.2 beta 3 18P54345a
iBoot-6723.80.19~25 5.2 RC 18P4346
5.2 18P4346 & 18P4347
iBoot-6723.100.321~132 5.3 beta 18P54515f
iBoot-6723.100.340~222 5.3 beta 2 18P54529c
iBoot-6723.100.360~48 5.3 beta 3 18P54539d
iBoot-6723.101.3~3 5.3 beta 4 18P54554a
iBoot-6723.101.4~3 5.3 beta 5 18P54555a
iBoot-6723.101.4~1 5.3 RC 18P4556
5.3
iBoot-6723.120.33.0.1~19 5.4 beta 18P54646b
iBoot-6723.120.35~180 5.4 beta 2 18P54655a
iBoot-6723.120.36~302 5.4 beta 3 18P54662a
iBoot-6723.120.36~387 5.4 RC 18P4663
5.4
iBoot-6723.120.36~427 5.5 beta 18P54724b
iBoot-6723.120.36~605 5.5 beta 2 18P54734a
iBoot-6723.120.36~809 5.5 beta 3 18P54743a
iBoot-6723.140.1~30 5.5 beta 4 18P54753c
iBoot-6723.140.2~46 5.5 beta 5 18P54758a
iBoot-6723.140.2~5 5.5 RC 18P4759a
5.5
iBoot-6932.0.0.0.1~2 6.0 (internal) 19P115
iBoot-6997.0.0.0.1~151 19P11135a
iBoot-7429.0.72.0.3~416 6.0 beta 19P50264n
iBoot-7429.0.133.121.1~1 6.0 beta 2 19P50284g
iBoot-7429.0.181.131.1~1 6.0 beta 3 19P50300d
iBoot-7429.0.207.141.1~1 6.0 beta 4 19P50310e
iBoot-7429.30.8.0.4~112 6.0 beta 5 19P50321e
iBoot-7429.30.26.0.2~11 6.0 (internal) 19P325
iBoot-7429.40.37.0.2~11 6.0 beta 6 19P50506a
iBoot-7429.40.68~12 6.0 beta 7 19P50522d
iBoot-7429.40.84.181.1~1 6.0 beta 8 19P50534d
iBoot-7429.40.92.0.5~6 6.0 beta 9 19P50542a
iBoot-7429.41.4~11 6.0 beta 10 19P50547a
iBoot-7429.41.4~2 6.0 RC 19P548
6.0
6.0 19P549
iBoot-7429.60.27.0.1~71 6.1 beta 19P50621c
iBoot-7429.60.41~6 6.1 beta 2 19P50631c
iBoot-7429.60.47~6 6.1 beta 3 19P50639a
iBoot-7429.61.2~11 6.1 beta 4 19P50645a
iBoot-7429.61.2~10 6.1 RC 19P647
6.1
iBoot-7429.80.17~35 6.2 beta 19P50725a
iBoot-7429.80.33~9 6.2 beta 2 19P50739a
iBoot-7429.81.3~1 6.2 RC 19P744
6.2
iBoot-7459.100.487.115.1~1 6.4 beta 19P54214d
iBoot-7459.100.494.121.1~1 6.4 beta 2 19P54224e
iBoot-7459.100.504.0.1~88 6.4 beta 3 19P54230d
iBoot-7459.101.2~14 6.4 beta 4 19P54240a
6.4 beta 5 19P54242a
iBoot-7459.101.2~13 6.4 RC 19P4242 & 19P4243
6.4
iBoot-7459.120.39.0.2~27 6.5 beta 19P55048a
iBoot-7459.120.45.0.4~102 6.5 beta 2 19P55058a
iBoot-7459.120.56.0.2~8 6.5 beta 3 19P55063a
iBoot-7459.121.2~4 6.5 beta 4 19P55070a
iBoot-7459.121.2~1 6.5 RC 19P5071
6.5
iBoot-7459.140.8~24 6.6 beta 19P56027a
iBoot-7459.140.10~13 6.6 beta 2 19P56037a
iBoot-7459.140.12.0.1~12 6.6 beta 3 19P56046a
iBoot-7459.140.15~10 6.6 beta 4 19P56056a
iBoot-7459.141.1~4 6.6 beta 5 19P56062a
iBoot-7459.141.1~1 6.6 RC 19P6063
6.6 RC 2 19P6064
6.6 19P6064, 19P6066 & 19P6067
6.6 RC 19P6067
iBoot-8419.0.42.111.3~10 7.0 beta 20P50300m
iBoot-8419.0.79.0.2~448 7.0 beta 2 20P50320f
iBoot-8419.0.113.0.1~19 7.0 beta 3 20P50329e
iBoot-8419.0.151.0.1~44 7.0 beta 4 20P50345d
iBoot-8419.40.18.0.3~5 7.0 beta 5 20P50355d
iBoot-8419.40.47.0.1~29 7.0 beta 6 20P50365d
iBoot-8419.40.74.0.1~37 7.0 beta 7 20P50376b
iBoot-8419.40.95.0.1~94 7.0 beta 8 20P50386e
iBoot-8419.40.102.0.2~65 7.0 beta 9 20P50392d
iBoot-8419.41.6~29 7.0 beta 10 20P50400b
iBoot-8419.41.10~4 7.0 beta 11 20P50406a
iBoot-8419.41.10~24 7.0 RC 20P411
7.0 20P420
iBoot-8419.60.31~14 7.1 beta 20P52032c
iBoot-8419.60.38.0.1~65 7.1 beta 2 20P52043a
iBoot-8419.60.44~50 7.1 beta 3 20P52049a
iBoot-8419.60.44~181 7.1 beta 4 20P52055a
iBoot-8419.60.44~315 7.1 RC 20P2059
7.1
iBoot-8419.80.3~8 7.2 beta 20P53026b
iBoot-8419.80.4.0.1~12 7.2 beta 2 20P53037h
iBoot-8419.80.7~2 7.2 RC 20P3045
7.2
? 7.4 beta 20P54223d
iBoot-8422.100.610.0.1~76 20P54223e
iBoot-8422.100.640.505.1~2 7.4 beta 2 20P54234c
iBoot-8422.100.645.0.1~28 7.4 beta 3 20P54240d
iBoot-8422.100.650~44 7.4 beta 4 20P54250a
iBoot-8422.100.650~62 7.4 RC 20P4252
7.4
iBoot-8422.120.33~18 7.5 beta 20P55027c
iBoot-8422.120.55~6 7.5 beta 2 20P55038c
iBoot-8422.120.65~48 7.5 beta 3 20P55049b
iBoot-8422.121.1~17 7.5 beta 4 20P55057a
iBoot-8422.121.2~3 7.5 RC 20P5058
iBoot-8422.121.2~10 7.5 20P5060
iBoot-8422.140.18.0.2~89 7.6 beta 20P65027b
iBoot-8422.140.32~97 7.6 beta 2 20P66038b
iBoot-8422.140.46.505.1~9 7.6 beta 3 20P66048d
iBoot-8422.140.50.0.2~10 7.6 beta 4 20P66059a
iBoot-8422.141.1~8 7.6 beta 5 20P66071a
iBoot-8422.141.2~1 7.6 RC 20P6072
7.6
iBoot-10151.0.82.0.1~506 8.0 beta 21P50287n
iBoot-10151.0.156.505.1~1 8.0 beta 2 21P50307f
iBoot-10151.0.211~10 8.0 beta 3 21P50318d
21P50318e
iBoot-10151.0.255.0.4~42 8.0 beta 4 21P50333c
iBoot-10151.0.255.0.4~425 21P50333d
iBoot-10151.0.305.0.1~62 8.0 beta 5 21P50345d
iBoot-10151.1.1~93 8.0 beta 6 21P50360a
iBoot-10151.1.1~129 8.0 beta 7 21P50364a
iBoot-10151.1.1~115 8.0 RC 21P365
8.0
iBoot-10151.40.132~128 8.1 beta 21P51045c
iBoot-10151.40.171.501.2~1 8.1 beta 2 21P51056d
iBoot-10151.41.8~20 8.1 beta 3 21P51066a
iBoot-10151.41.11~10 8.1 RC 21P1069
8.1
iBoot-10151.60.43~24 8.2 beta 21P52030c
iBoot-10151.60.55~29 8.2 beta 2 21P52041d
iBoot-10151.60.56~22 8.2 beta 3 21P52047d
iBoot-10151.61.4~39 8.2 beta 4 21P52054b
iBoot-10151.61.4~47 8.2 RC 21P2057
8.2
iBoot-10151.80.6~236 8.3 beta 21P53030b
iBoot-10151.80.20~6 8.3 beta 2 21P53040c
iBoot-10151.81.1~14 8.3 beta 3 21P53047a
iBoot-10151.81.1~1 8.3 RC 21P3049
iBoot-10151.100.738.0.1~305 8.4 beta 21P54195e
iBoot-10151.100.753~107 8.4 beta 2 21P54206e
iBoot-10151.100.756~163 8.4 beta 3 21P54212c
iBoot-10151.101.2~78 8.4 beta 4 21P54220a
iBoot-10151.101.3~1 8.4 RC 21P4222
8.4
iBoot-10151.120.125.0.2~19 8.5 beta 21P55049e
iBoot-10151.120.136~7 8.5 beta 2 21P55059c

Studio Display

Version list for Studio Display
iBoot Version Software Version Build Number
iBoot-7459.102.5~1 15.4 19E241
iBoot-7459.120.56.0.2~17 15.5 beta 19F5062g
iBoot-7459.120.62.0.3~31 15.5 beta 2 19F5070b
iBoot-7459.120.62.0.3~30 15.5 RC 19F77
15.5
19F80
iBoot-8422.100.610.502.1~2 16.4 beta 20E5212f
iBoot-8422.100.640.0.1~10 16.4 beta 2 20E5223e
iBoot-8422.100.645.0.1~34 16.4 beta 3 20E5229e
iBoot-8422.100.650~48 16.4 beta 4 20E5239b
iBoot-8422.100.650~104 16.4 RC 20E246
16.4
iBoot-10151.0.82.502.1~8 17.0 beta 21A5248v
iBoot-10151.0.156.502.1~4 17.0 beta 2 21A5268h
iBoot-10151.0.156.0.3~652 17.0 beta 3 21A5277h & 21A5277j
iBoot-10151.0.255.0.4~45 17.0 beta 4 21A5291h & 21A5291j
iBoot-10151.0.305.0.1~68 17.0 beta 5 21A5303d
iBoot-10151.2.12~27 17.0 beta 6 21A5326a
iBoot-10151.2.12~25 17.0 RC 21A329
17.0

Haywire

Version list for Haywire
iBoot Version Software Version Build Number
iBoot-1537.4.18~1 6.0 10A7401
iBoot-1537.9.40~2 6.1 beta 1 10B7095
iBoot-1537.9.46~7 6.1 beta 2 10B7105
iBoot-1537.9.50~1 6.1 beta 3 10B7117
iBoot-1537.9.54~3 6.1 beta 4 10B7127
iBoot-1537.9.55~3 6.1 beta 5 10B7129
iBoot-1764 7.0 ?
iBoot-1940.1.8~9 7.0 beta 1 11A7372p
iBoot-1940.1.35~7 7.0 beta 2 11A7400
iBoot-1940.1.46~12 7.0 beta 3 11A7414
iBoot-1940.1.66~7 7.0 beta 4 11A7435
iBoot-1940.2.1~2 7.0 beta 5 11A7449
iBoot-1940.2.1~4 7.0 11A7451
iBoot-1940.10.51~1 7.1 beta 1 11D7099
iBoot-1940.10.58~28 7.1 beta 4 11D7134
iBoot-1940.10.58~63 7.1 beta 5 11D7144
iBoot-1940.10.58~101 7.1 11D7155
iBoot-2261.1.6~1 8.0 beta 1 12A7265a
iBoot-2261.1.64~18 8.0 beta 5 12A7346a
iBoot-2261.1.66~10 8.0 12A7353a
iBoot-2261.1.66~35 12A7400
iBoot-2261.1.66~45 8.0.2 13A7011
iBoot-2261.1.66~48 13A7014
iBoot-2261.1.66~67 14A7024
iBoot-2261.1.66~68 14A7026
iBoot-2261.1.66~76 14A7033
iBoot-2261.1.66~77 14A7034
iBoot-2261.1.66~79 14A7036
iBoot-2261.1.66~80 14A7040

iOS/iPadOS (iPad, iPhone, iPod touch)

Version list for iOS and iPadOS
iBoot Version Software Version Build Number
iBoot-87.1 1.0 factory 1A396b
iBoot-99 1.0 factory 1A420
iBoot-115.6 1.0 factory 1A469d
iBoot-159 1.0 1A543a
1.0.1 1C25
1.0.2 1C28
iBoot-165 1.0 factory 2A539i
iBoot-204 1.1 3A100 & 3A101
1.1.1 3A109a
iBoot-204.0.2 1.1.1 3A110a
iBoot-204.2.9 1.1.2 3B48b
iBoot-204.3.14 1.1.3 4A93
1.1.4 4A102
iBoot-204.3.16 1.1.5 4B1
? 1.2 beta 5A147p
iBoot-294 2.0 beta 2 5A225c
iBoot-304 2.0 beta 3 5A240d
iBoot-311 2.0 beta 4 5A258f
? 2.0 beta 5 5A274d
? 2.0 beta 6 Pre-release 5A292g
? 2.0 beta 6 Final 5A308
? 2.0b7 5A331
iBoot-320.19 2.0b8 (GM) 5A345
iBoot-320.20 2.0 5A347
2.0.1 5B108
2.0.2 5C1
? 2.1 beta 5F90
iBoot-385.22 2.1 5F137
2.1.1 5F138
? 2.2 beta 5G29
iBoot-385.49 2.2 5G77 & 5G77a
2.2.1 5H11 & 5H11a
iBoot-573.1 3.0 beta 7A238j
iBoot-594.2~1 3.0 beta 2 7A259g
iBoot-596.6~3 3.0 beta 3 7A280f
iBoot-596.16~2 3.0 beta 4 7A300g
iBoot-596.20~1 3.0 beta 5 7A312g
iBoot-596.24~1 3.0 7A341
3.0.1 7A400
iBoot-636.26~2 3.1 beta 7C97d
iBoot-636.35~1 3.1 beta 2 7C106c
iBoot-636.47~1 3.1 beta 3 7C116a
iBoot-636.65~2 3.1 7C144
iBoot-636.66~1 3.1.1 7C145 & 7C146
iBoot-636.66~5 3.1.2 7D11
iBoot-636.66.33~4 3.1.3 7E18
iBoot-817.28~18 3.2 7B367
iBoot-817.29~2 3.2.1 7B405
3.2.2 7B500
iBoot-770 4.0 factory 8A133
iBoot-803 4.0 ?
iBoot-822.2.1 4.0 factory 8A2180g
iBoot-872~12 4.0 beta 8A230m
iBoot-889.3~2 4.0 beta 2 8A248c
iBoot-889.12~2 4.0 beta 3 8A260b
iBoot-889.19~1 4.0 beta 4 8A274b
iBoot-889.24~4 4.0 GM 8A293
4.0
4.0.1 8A306
4.0.2 8A400
iBoot-931.18.1~1 4.1 beta 8B5080c
iBoot-931.18.15~2 4.1 beta 2 8B5091b
iBoot-931.18.27~1 4.1 8B117 & 8B118
iBoot-931.67~2 4.2 beta 8C5091e
iBoot-931.71.80~1 4.2 beta 2 8C5101c
iBoot-931.71.13~3 4.2 beta 3 8C5115c
iBoot-931.71.16~9 4.2 GM 8C134
4.2 GM 2 8C134b
4.2.1 GM 8C148
4.2.1 8C148 & 8C148a
iBoot-931.72.14~6 4.2.5 8E128
4.2.6 8E200
4.2.7 8E303
4.2.8 8E401
iBoot-931.72.14~10 4.2.9 8E501
4.2.10 8E600
iBoot-1072.33~1 4.3 beta 8F5148b
iBoot-1072.38~2 4.3 beta 2 8F5153d
iBoot-1072.49~2 4.3 beta 3 8F5166b
iBoot-1072.58~4 4.3 GM 8F190
4.3
iBoot-1072.59~2 4.3 8F191
4.3.1 8G4
iBoot-1072.61~2 4.3.2 8H7 & 8H8
4.3.3 8J2 & 8J3
iBoot-1072.61~6 4.3.4 8K2
4.3.5 8L1
iBoot-1186 5.? ?
iBoot-1219.35.80~1 5.0 beta 9A5220p
iBoot-1219.40.25~4 5.0 beta 2 9A5248d
iBoot-1219.41.11~1 5.0 beta 3 9A5259f
iBoot-1219.42.8~1 5.0 beta 4 9A5274d
iBoot-1219.42.72 5.0 ?
iBoot-1219.43.9~3 5.0 beta 5 9A5288d
iBoot-1219.43.18~3 5.0 beta 6 9A5302b
iBoot-1219.43.27~1 5.0 beta 7 9A5313e
iBoot-1219.43.32~15 5.0 GM 9A332
9A334
5.0
iBoot-1219.43.32~27 5.0.1 beta 9A402
iBoot-1219.43.32~29 5.0.1 beta 2 9A404
5.0.1 9A405 & 9A406
iBoot-1219.43.84 5.? ?
iBoot-1219.61.19~6 5.1 beta 9B5117b
iBoot-1219.62.1~2 5.1 beta 2 9B5127c
iBoot-1219.62.8~5 5.1 beta 3 9B5141a
iBoot-1219.62.15~2 5.1 9B169
9B172
9B174
9B176
9B179
5.1.1 9B206
iBoot-1470 6.0 factory 10A219
iBoot-1489 6.0 10A234
iBoot-1537.1.60~15 6.0 beta 10A5316k & 10A316
iBoot-1537.2.11~5 6.0 beta 2 10A5338d
iBoot-1537.2.75 6.0 factory 10A23110z
iBoot-1537.2.81~1 6.0 beta 3 10A5355d
iBoot-1537.2.41~2 6.0 beta 4 10A5376e
iBoot-1537.4.18~2 6.0 10A402
6.0 GM 10A403
6.0
iBoot-1537.4.19~1 6.0 10A405 & 10A406
iBoot-1537.4.20~1 6.0 10A407
iBoot-1537.4.21~3 6.0.1 10A523 & 10A525
iBoot-1537.4.21~2 6.0.1 10A8426
6.0.2 10A8500
iBoot-1537.4.21~3 6.0.2 10A550 & 10A551
iBoot-1537.9.40~3 6.1 beta 10B5095f
iBoot-1537.9.46~8 6.1 beta 2 10B5105c
iBoot-1537.9.50~2 6.1 beta 3 10B5117b
iBoot-1537.9.54~4 6.1 beta 4 10B5126b
iBoot-1537.9.55~4 6.1 10B137
6.1 beta 5 10B141, 10B142, 10B143 & 10B144
6.1
6.1.1 beta 10B311
6.1.1 10B137
10B141
10B145
6.1.2 10B146 & 10B147
iBoot-1537.9.55~11 6.1.3 beta 2 10B318
10B318a
6.1.3 10B327
10B329
6.1.4 10B350
6.1.5 10B400
6.1.6 10B500
iBoot-1712.0.73 7.0 factory 11A21680f
iBoot-1761 7.0 factory 11A202
iBoot-1765.0.81 7.0 ?
iBoot-1769.0.78 7.0 ?
iBoot-1940.1.8~44 7.0 beta 11A4372q
iBoot-1940.1.20 7.0 factory 11A93840l
iBoot-1940.1.25.1.3 7.0 ?
iBoot-1940.1.35~9 7.0 beta 2 11A4400f
iBoot-1940.1.46.1.1~1 7.0 beta 3 11A4414e
iBoot-1940.1.66~9 7.0 beta 4 11A4435d
iBoot-1940.1.75~3 7.0 beta 5 11A4449a
7.0 beta 6 11A4449d
iBoot-1940.1.75~20 7.0 GM 11A465
7.0 11A465 & 11A466
iBoot-1940.1.75~93 7.0.1 11A470a
7.0.2 11A501
iBoot-1940.3.5~1 7.0.3 11B508
11B511
7.0.4 11B553
11B554a
7.0.5 11B601
7.0.6 11B651
iBoot-1940.10.51~3 7.1 beta 11D5099e
iBoot-1940.10.57~8 7.1 beta 2 11D5115d
iBoot-1940.10.58~11 7.1 beta 3 11D5127c
iBoot-1940.10.58~32 7.1 beta 4 11D5134c
iBoot-1940.10.58~70 7.1 beta 5 11D5145e
iBoot-1940.10.58~115 7.1 11D167 & 11D169
iBoot-1940.10.58~122 7.1.1 11D201
iBoot-1940.10.58~132 7.1.2 11D257
iBoot-2139.0.0.2.2 8.0 ?
iBoot-2261.1.6.0.1~45 8.0 beta 12A4265u
iBoot-2261.1.31~21 8.0 beta 2 12A4297e
iBoot-2261.1.46~31 8.0 beta 3 12A4318c
iBoot-2261.1.57~43 8.0 beta 4 12A4331d
iBoot-2261.1.64~28 8.0 beta 5 12A4345d
iBoot-2261.1.67~8 8.0 GM 12A365
8.0 12A365 & 12A366
iBoot-2261.1.68~1 8.0.1 12A402
8.0.2 12A405
iBoot-2261.3.31~3 8.1 beta 12B401
iBoot-2261.3.31~9 8.1 beta 2 12B407
iBoot-2261.3.32~2 8.1 12B410 & 12B411
iBoot-2261.3.33~13 8.1.1 beta 12B432
iBoot-2261.3.33~14 8.1.1 12B435 & 12B436
8.1.2 12B440
iBoot-2261.3.33~39 8.1.3 12B446
iBoot-2261.5.34~3 8.2 beta 12D436
iBoot-2261.5.41~10 8.2 beta 2 12D445d
iBoot-2261.5.47~1 8.2 beta 3 12D5452a
iBoot-2261.5.54~3 8.2 beta 4 12D5461b
iBoot-2261.5.58~25 8.2 beta 5 12D5480a
iBoot-2261.5.64~15 8.2 12D508
iBoot-2261.20.16~6 8.3 beta 12F5027d
iBoot-2261.20.18~14 8.3 beta 2 12F5037c
iBoot-2261.20.19~16 8.3 beta 3 12F5047f
iBoot-2261.20.20~9 8.3 beta 4 12F61
iBoot-2261.20.20~14 8.3 12F69
iBoot-2261.30.33~16 8.4 beta 12H4074d
iBoot-2261.30.34~8 8.4 beta 2 12H4086d
iBoot-2261.30.35~21 8.4 beta 3 12H4098c
iBoot-2261.30.37~17 8.4 beta 4 12H4125a
iBoot-2261.30.37~34 8.4 12H143
iBoot-2261.30.37~39 8.4.1 beta 12H304
iBoot-2261.30.37~55 8.4.1 beta 2 12H318
iBoot-2261.30.37~58 8.4.1 12H321
iBoot-2796.0.0.1.10 9.0 ?
iBoot-2817.0.0.1.2~2 9.0 beta 13A4254v
iBoot-2817.1.41.1.1~1 9.0 beta 2 13A4280e
iBoot-2817.1.55~10 9.0 beta 3 13A4293g
iBoot-2817.1.73~9 9.0 beta 4 13A4305g
iBoot-2817.1.89~3 9.0 beta 5 13A4325c
iBoot-2817.1.93~1 9.0 GM 13A340
iBoot-2817.1.93~1 9.0 13A340, 13A342, 13A343 & 13A344
iBoot-2817.1.94~1 9.0.1 13A404
13A405
9.0.2 13A452
iBoot-2817.10.26~8 9.1 beta 13B5110e
iBoot-2817.10.29~16 9.1 beta 2 13B5119e
iBoot-2817.10.34~1 9.1 beta 3 13B5130b
iBoot-2817.10.34~7 9.1 beta 4 13B136
9.1 beta 5 13B137 & 13B139
9.1 13B143
iBoot-2817.10.35~1 9.1 13B144
iBoot-2817.20.21~5 9.2 beta 13C5055d
iBoot-2817.20.24~4 9.2 beta 2 13C5060d
iBoot-2817.20.26~3 9.2 beta 3 13C71
9.2 beta 4 13C75
9.2
9.2.1 beta 13D11
9.2.1 beta 2 13D14
9.2.1 13D15 & 13D20
iBoot-2817.40.91~21 9.3 beta 13E5181d
9.3 beta 1.1 13E5181f
iBoot-2817.40.97~26 9.3 beta 2 13E5191d
iBoot-2817.40.102~26 9.3 beta 3 13E5200d
iBoot-2817.40.104~56 9.3 beta 4 13E5214d
iBoot-2817.40.106~16 9.3 beta 5 13E5225a
9.3 beta 6 13E5231a
9.3 beta 7 13E5233a
13E5234a
iBoot-2817.40.106~2 9.3 13E233, 13E234, 13E236 & 13E237
iBoot-2817.50.1~16 9.3.2 beta 13F51a
iBoot-2817.50.2~2 9.3.2 beta 2 13F61
9.3.2 beta 3 13F65
iBoot-2817.50.3~1 9.3.2 beta 4 13F68
9.3.2 13F69 & 13F72
9.3.3 beta 13G12
iBoot-2817.60.1~1 9.3.3 beta 2 13G21
iBoot-2817.60.2~2 9.3.3 beta 3 13G29
9.3.3 beta 4 13G33
9.3.3 beta 5 13G34
9.3.3
9.3.4 13G35
9.3.5 13G36
iBoot-3319.0.0.1.9 10.0 ?
iBoot-3393~52 10.0 beta 14A5261v
iBoot-3406.1.46~11 10.0 beta 2 14A5297c
iBoot-3406.1.59~66 10.0 beta 3 14A5309d
iBoot-3406.1.68~82 10.0 beta 4 14A5322e
iBoot-3406.1.77~16 10.0 beta 5 14A5335b
10.0 beta 6 14A5341a
10.0 beta 7 14A5345a
10.0 beta 8 14A5346a
iBoot-3406.1.79~1 10.0.1 GM 14A403
10.0.1
10.0.2 14A456
10.0.3 14A551
iBoot-3406.20.16~118 10.1 beta 14B55c
iBoot-3406.20.16~161 10.1 beta 2 14B67
10.1 beta 3 14B71
10.1 beta 4 14B72
14B72b
10.1 beta 5 14B72c
10.1 14B72 & 14B72c
10.1.1 14B100 & 14B150
iBoot-3406.30.8~10 10.2 beta 14C5062e
iBoot-3406.30.8~373 10.2 beta 2 14C5069c
iBoot-3406.30.8~503 10.2 beta 3 14C5077b
iBoot-3406.30.8~497 10.2 beta 4 14C82
10.2 beta 5 14C89
10.2 beta 6 14C90
14C91
10.2 beta 7 14C92
10.2
10.2.1 beta 14D10
iBoot-3406.42.1~1 10.2.1 beta 2 14D15
iBoot-3406.42.5~1 10.2.1 beta 3 14D23
10.2.1 beta 4 14D27
10.2.1
iBoot-3406.50.215 10.3 ?
iBoot-3406.50.223~16 10.3 beta 14E5230e
iBoot-3406.50.229~9 10.3 beta 2 14E5239e
iBoot-3406.50.236~77 10.3 beta 3 14E5249d
iBoot-3406.50.243~9 10.3 beta 4 14E5260b
iBoot-3406.50.244~4 10.3 beta 5 14E5269a
10.3 beta 6 14E5273a
10.3 beta 7 14E5277a
iBoot-3406.50.244~1 10.3 14E277
10.3.1 14E304
iBoot-3406.60.7~9 10.3.2 beta 14F5065b
iBoot-3406.60.10~10 10.3.2 beta 2 14F5075a
iBoot-3406.60.10~25 10.3.2 beta 3 14F5080a
iBoot-3406.60.10~40 10.3.2 beta 4 14F5086a
10.3.2 beta 5 14F5089a
iBoot-3406.60.10~39 10.3.2 14F89, 14F90 & 14F91
iBoot-3406.60.10~38 10.3.2 14F8089
iBoot-3406.60.10~64 10.3.3 beta 14G5028a
10.3.3 beta 2 14G5037b
iBoot-3406.60.10~74 10.3.3 beta 3 14G5047a
10.3.3 beta 4 14G5053a
10.3.3 beta 5 14G5057a
iBoot-3406.60.10~70 10.3.3 beta 6 14G57 & 14G58
10.3.3 14G60
iBoot-3974~299 11.0 beta 15A5278f
iBoot-4051~60 11.0 beta 2 15A5304i & 15A5304h
iBoot-4055.0.0.1.5 11.0 15A23061c
iBoot-4076.1.9~24 11.0 beta 3 15A5318g
iBoot-4076.1.22~32 11.0 beta 4 15A5327g
iBoot-4076.1.39~22 11.0 beta 5 15A5341f
iBoot-4076.1.43~178 11.0 beta 6 15A5354b
iBoot-4076.1.44~40 11.0 beta 7 15A5362a
11.0 beta 8 15A5368a
11.0 beta 9 15A5370a
iBoot-4076.1.44~197 11.0 beta 10 15A5372a
iBoot-4076.1.44~40 11.0 GM 15A372
11.0
iBoot-4076.1.44~197 11.0.1 15A402 & 15A403
11.0.2 15A421
11.0.3 15A432
iBoot-4076.20.45~8 11.1 beta 15B5066f
iBoot-4076.20.47~5 11.1 beta 2 15B5078e
iBoot-4076.20.48~5 11.1 beta 3 15B5086a
iBoot-4076.20.48~1 11.1 beta 4 15B92
11.1 beta 5 15B93
11.1 15B93 & 15B101
11.1.1 15B150
11.1.2 15B202
iBoot-4076.30.40~29 11.2 beta 15C5092b
iBoot-4076.30.43~19 11.2 beta 2 15C5097d
iBoot-4076.30.43~80 11.2 beta 3 15C5107a
11.2 beta 4 15C5110b
11.2 beta 5 15C5111a
iBoot-4076.30.43~76 11.2 beta 6 15C114
11.2
11.2.1 15C153
11.2.2 15C202
iBoot-4076.30.43~137 11.2.5 beta 15D5037e
11.2.5 beta 2 15D5046b
11.2.5 beta 3 15D5049a
11.2.5 beta 4 15D5054a
11.2.5 beta 5 15D5057a
11.2.5 beta 6 15D5059a
iBoot-4076.30.43~140 11.2.5 beta 7 15D60
11.2.5
11.2.6 15D100
iBoot-4076.50.114~5 11.3 beta 15E5167f
iBoot-4076.50.120.100.1~2 11.3 beta 2 15E5178f
iBoot-4076.50.123~69 11.3 beta 3 15E5189f
iBoot-4076.50.126~20 11.3 beta 4 15E5201e
iBoot-4076.50.126~63 11.3 beta 5 15E5211a
iBoot-4076.50.126~80 11.3 beta 6 15E5216a
iBoot-4076.50.126~85 11.3 15E216 & 15E218
11.3.1 15E302
iBoot-4076.60.7~268 11.4 beta 15F5037c
iBoot-4076.60.7~410 11.4 beta 2 15F5049c
iBoot-4076.60.8.0.1~4 11.4 beta 3 15F5061d
iBoot-4076.60.8.0.2~1 11.4 beta 3 15F5061e
iBoot-4076.60.11~9 11.4 beta 4 15F5071a
11.4 beta 5 15F5077a
11.4 beta 6 15F5079a
iBoot-4076.60.11~7 11.4 15F79
iBoot-4076.70.9~78 11.4.1 beta 15G5054c
iBoot-4076.70.14~17 11.4.1 beta 2 15G5063b
iBoot-4076.70.15~35 11.4.1 beta 3 15G5072a
11.4.1 beta 4 15G5074a
11.4.1 beta 5 15G5077a
iBoot-4076.70.15~19 11.4.1 15G77
iBoot-4513.200.159.10.1~21 12.0 beta 16A5288q
iBoot-4513.200.209~14 12.0 beta 2 16A5308e
iBoot-4513.200.230.0.1~10 12.0 beta 3 16A5318d
iBoot-4513.200.250~13 12.0 beta 4 16A5327f
iBoot-4513.200.278~74 12.0 beta 5 16A5339e
iBoot-4513.200.287.0.2~15 12.0 beta 6 16A5345f
iBoot-4513.200.293.100.1 12.0 ?
iBoot-4513.200.294~3 12.0 beta 7 16A5354b
iBoot-4513.200.295~3 12.0 beta 8 16A5357b
iBoot-4513.200.295.100.1 12.0 factory 16A13580z & 16A13580x
iBoot-4513.200.297~3 12.0 beta 9 16A5362a
12.0 beta 10 16A5364a
12.0 beta 11 16A5365b
12.0 beta 12 16A5366a
iBoot-4513.200.297~1 12.0 GM 16A366
12.0
12.0.1 16A404 & 16A405
iBoot-4513.220.83~22 12.1 beta 16B5059d
iBoot-4513.220.91~16 12.1 beta 2 16B5068i
iBoot-4513.220.97~21 12.1 beta 3 16B5077c
iBoot-4513.220.99~8 12.1 beta 4 16B5084a
iBoot-4513.220.100~3 12.1 beta 5 16B5089b
iBoot-4513.220.100~1 12.1 16B92, 16B93
iBoot-4513.220.101~1 12.1 16B94
iBoot-4513.230.5~88 12.1.1 beta 16C5036c
iBoot-4513.230.7~9 12.1.1 beta 2 16C5043b
iBoot-4513.230.10~6 12.1.1 beta 3 16C5050a
iBoot-4513.230.10~5 12.1.1 16C50
iBoot-4513.230.10~43 12.1.2 beta 16D5024a
iBoot-4513.230.10~5 12.1.2 16C101 & 16C104
iBoot-4513.230.10~60 12.1.3 beta 2 16D5032a
12.1.3 beta 3 16D5037a
12.1.3 beta 4 16D5039a
iBoot-4513.230.10~63 12.1.3 16D39 & 16D40
12.1.4 16D57
iBoot-4513.250.271~158 12.2 beta 16E5181f
iBoot-4513.250.278~94 12.2 beta 2 16E5191d
iBoot-4513.250.284~8 12.2 beta 3 16E5201e
iBoot-4513.250.287~11 12.2 beta 4 16E5212f
iBoot-4513.250.288~22 12.2 beta 5 16E5223a
12.2 beta 6 16E5227a
iBoot-4513.250.288~5 12.2 16E227
iBoot-4513.260.19~115 12.3 ?
iBoot-4513.260.69.100.1~1 12.3 beta 16F5117h
iBoot-4513.260.78~8 12.3 beta 2 16F5129d
iBoot-4513.260.80~30 12.3 beta 3 16F5139e
iBoot-4513.260.81~11 12.3 beta 4 16F5148a
12.3 beta 5 16F5155a
12.3 beta 6 16F5156a
iBoot-4513.260.81~7 12.3 16F156
12.3.1 16F203
12.3.2 16F250
iBoot-4513.260.81~15 12.3.1 16F8202
iBoot-4513.270.8~24 12.4 beta 16G5027g
12.4 beta 2 16G5027i
iBoot-4513.270.11~19 12.4 beta 3 16G5038d
iBoot-4513.270.12~39 12.4 beta 4 16G5046d
iBoot-4513.270.14~22 12.4 beta 5 16G5056d
12.4 beta 6 16G5069a
12.4 beta 7 16G5077a
iBoot-4513.270.14~26 12.4 16G77
12.4.1 16G102
12.4.2 16G114
12.4.3 16G130
12.4.4 16G140
12.4.5 16G161
12.4.6 16G183
12.4.7 16G192
12.4.8 16G201
12.4.9 16H5
iBoot-4513.270.14~39 12.5 16H20
12.5.1 16H22
12.5.2 16H30
12.5.3 16H41
12.5.4 16H50
12.5.5 16H62
12.5.6 16H71
12.5.7 16H81
iBoot-5540.0.15.0.2~258 13.0 beta 17A5492t
iBoot-5540.0.49.0.1~183 13.0 beta 2 17A5508m
iBoot-5540.0.76~14 13.0 beta 3 17A5522f & 17A5522g
iBoot-5540.0.87.142.1~2 13.0 beta 4 17A5534f
iBoot-5540.0.117~24 13.0 beta 5 17A5547d
iBoot-5540.0.117.2~16 13.0 beta 6 17A5556d
iBoot-5540.0.117.3~6 13.0 beta 7 17A5565b
iBoot-5540.0.117.3~26 13.0 beta 8 17A5572a
iBoot-5540.0.117.3~18 13.0 GM 17A577
13.0
iBoot-5540.0.126~56 13.1 beta 17A5821e
iBoot-5540.0.129~21 13.1 beta 2 17A5831c
iBoot-5540.0.129~115 13.1 beta 3 17A5837a
iBoot-5540.0.129~199 13.1 beta 4 17A5844a & 17A5844b
iBoot-5540.0.129~161 13.1 17A844
13.1.1 17A854
13.1.2 17A860 & 17A861
iBoot-5540.0.129~250 13.1.3 17A878
iBoot-5540.40.50~31 13.2 beta 17B5059g
iBoot-5540.40.51~47 13.2 beta 2 17B5068e
iBoot-5540.40.51~190 13.2 beta 3 17B5077a
iBoot-5540.40.51~224 13.2 beta 4 17B5084a
iBoot-5540.40.51~223 13.2 17B84
13.2.2 17B102
13.2.3 17B111
13.3 17C54
iBoot-5540.60.6~89 13.3 beta 17C5032d
iBoot-5540.60.11~45 13.3 beta 2 17C5038a
iBoot-5540.60.11~127 13.3 beta 3 17C5046a
13.3 beta 4 17C5053a
iBoot-5540.60.11~30 13.3 17C54
iBoot-5540.80.1~87 13.3.1 beta 17D5026c
iBoot-5540.80.2~141 13.3.1 beta 2 17D5044a
13.3.1 beta 3 17D5050a
iBoot-5540.80.2~139 13.3.1 17D50
iBoot-5540.100.177.0.1~95 13.4 beta 17E5223h
iBoot-5540.100.190~100 13.4 beta 2 17E5233g
iBoot-5540.100.194~24 13.4 beta 3 17E5241d
iBoot-5540.102.2~27 13.4 beta 4 17E5249a
iBoot-5540.102.4~4 13.4 beta 5 17E5255a
iBoot-5540.102.4~2 13.4 beta 6 17E255
13.4
13.4.1 17E262
iBoot-5540.120.9~34 13.4.5 beta 17F5034c
iBoot-5540.120.14~45 13.4.5 beta 2 17F5044d
iBoot-5540.120.15.0.1~34 13.5 beta 3 17F5054h
iBoot-5540.120.17~56 13.5 beta 4 17F5065a
iBoot-5540.120.17~20 13.5 GM 17F75
13.5
13.5.1 17F80
iBoot-5540.140.5~29 13.5.5 beta 17G5035d
iBoot-5540.140.7~39 13.6 beta 2 17G5045c
iBoot-5540.140.12~15 13.6 beta 3 17G5059c
iBoot-5540.140.12~20 13.6 GM 17G68
13.6
13.6.1 17G80
iBoot-5540.140.12~44 13.7 beta 17H33
13.7 17H35
iBoot-6603.0.0.110.6~14 14.0 beta 18A5301v
iBoot-6631.0.0.0.1~157 14.0 beta 2 18A5319i
iBoot-6671.0.0.0.6~700 14.0 beta 3 18A5332f
iBoot-6723.0.7.0.2~42 14.0 beta 4 18A5342e
iBoot-6723.0.34~191 14.0 beta 5 18A5351d
iBoot-6723.0.43~14 14.0 beta 6 18A5357e
iBoot-6723.0.48~2 14.0 beta 7 18A5369b
14.0 beta 8 18A5373a
iBoot-6723.0.48~25 14.0 GM 18A373
14.0
14.0.1 18A393
iBoot-6723.11.41~52 14.1 GM 18A8395
14.1
iBoot-6723.40.106~178 14.2 beta 18B5052h & 18B5052i
iBoot-6723.40.120.0.2~173 14.2 beta 2 18B5061e
iBoot-6723.40.151~83 14.2 beta 3 18B5072f
iBoot-6723.42.3~2 14.2 beta 4 18B5083a
iBoot-6723.42.3~1 14.2 RC 18B91
14.2 18B92
iBoot-6723.42.4~2 14.2 18B111
iBoot-6723.42.4~6 14.2.1 18B121
iBoot-6723.60.60.0.2~164 14.3 beta 18C5044f
iBoot-6723.62.2~35 14.3 beta 2 18C5054c
14.3 beta 3 18C5061a
iBoot-6723.62.3~1 14.3 RC 18C65
14.3 RC 2 18C66
14.3
iBoot-6723.80.14~43 14.4 beta 18D5030e
iBoot-6723.80.17~44 14.4 beta 2 18D5043d
iBoot-6723.80.19~2 14.4 RC 18D52
14.4
14.4.1 18D61
14.4.2 18D70
iBoot-6723.100.321.112.1~1 14.5 beta 18E5140j & 18E5140k
iBoot-6723.100.340.122.1~4 14.5 beta 2 18E5154f
iBoot-6723.100.360~55 14.5 beta 3 18E5164h
iBoot-6723.102.4~2 14.5 beta 4 18E5178a
iBoot-6723.102.4~16 14.5 beta 5 18E5186a
iBoot-6723.102.4~28 14.5 beta 6 18E5194a
14.5 beta 7 18E5198a
14.5 beta 8 18E5199a
iBoot-6723.102.4~11 14.5 RC 18E199
14.5
iBoot-6723.102.4~38 14.5.1 18E212
iBoot-6723.120.33.0.1~156 14.6 beta 18F5046e & 18F5046f
iBoot-6723.120.35~202 14.6 beta 2 18F5055b
iBoot-6723.120.36~246 14.6 beta 3 18F5065a
iBoot-6723.120.36~400 14.6 RC 18F71
14.6 RC 2 18F72
14.6
iBoot-6723.120.36~465 14.7 beta 18G5023c
iBoot-6723.120.36~607 14.7 beta 2 18G5033e
iBoot-6723.120.36~810 14.7 beta 3 18G5042c
iBoot-6723.140.1~42 14.7 beta 4 18G5052d
iBoot-6723.140.2~65 14.7 beta 5 18G5063a
iBoot-6723.140.2~60 14.7 RC 18G68
14.7 18G69 & 18G70
14.7.1 18G82
iBoot-6723.140.2~82 14.8 18H17
14.8.1 18H107
iBoot-7429.0.72.112.2~1 15.0 beta 19A5261w
iBoot-7429.0.92.100.7 15.0 factory 19A72691n
iBoot-7429.0.133.0.1~13 15.0 beta 2 19A5281h & 19A5281j
iBoot-7429.0.133.100.4 15.0 factory 19A22860t
iBoot-7429.0.162.0.4~182 15.0 beta 3 19A5297e
iBoot-7429.0.207.142.1~1 15.0 beta 4 19A5307g
iBoot-7429.10.8.152.1~5 15.0 beta 5 19A5318f
iBoot-7429.12.4.162.1~3 15.0 beta 6 19A5325f
iBoot-7429.12.13~2 15.0 beta 7 19A5337a
iBoot-7429.12.14~4 15.0 beta 8 19A5340a
iBoot-7429.12.15~30 15.0 RC 19A344
iBoot-7429.12.15~35 15.0 19A346
iBoot-7429.12.15~52 15.0.1 19A348
iBoot-7429.12.15~59 15.0.2 19A404
iBoot-7429.40.68~16 15.1 beta 19B5042h
iBoot-7429.40.84.122.2~1 15.1 beta 2 19B5052f
iBoot-7429.42.1~1 15.1 beta 3 19B5060d
iBoot-7429.42.2~3 15.1 beta 4 19B5068a
iBoot-7429.42.2~1 15.1 RC 19B74
15.1 RC 2 19B75
15.1 19B74 & 19B75
15.1.1 19B81
iBoot-7429.60.27.0.1~77 15.2 beta 19C5026i
iBoot-7429.60.41~8 15.2 beta 2 19C5036e
iBoot-7429.60.47~13 15.2 beta 3 19C5044b
iBoot-7429.62.1~6 15.2 beta 4 19C5050b
iBoot-7429.62.1~1 15.2 RC 19C56
15.2 RC 2 19C57
15.2 19C56 & 19C57
iBoot-7429.62.1~8 15.2.1 19C63
iBoot-7429.80.17~40 15.3 beta 19D5026g
iBoot-7429.80.33~14 15.3 beta 2 19D5040e
iBoot-7429.82.1~2 15.3 RC 19D49
15.3 19D50
15.3.1 19D52
iBoot-7459.100.487~25 15.4 beta 19E5209h
iBoot-7459.100.494.122.1~2 15.4 beta 2 19E5219e
iBoot-7459.100.504.0.1~122 15.4 beta 3 19E5225g
iBoot-7459.102.3~26 15.4 beta 4 19E5235a
iBoot-7459.102.5~2 15.4 beta 5 19E5241a
iBoot-7459.102.5~1 15.4 RC 19E241
15.4
15.4.1 19E258
iBoot-7459.120.39.112.1~1 15.5 beta 19F5047e
iBoot-7459.120.45.0.4~107 15.5 beta 2 19F5057e
iBoot-7459.120.56.0.2~17 15.5 beta 3 19F5062g
iBoot-7459.120.62.0.3~31 15.5 beta 4 19F5070b
iBoot-7459.120.62.0.3~30 15.5 RC 19F77
15.5
iBoot-7459.140.8~31 15.6 beta 19G5027e
iBoot-7459.140.10~19 15.6 beta 2 19G5037d
iBoot-7459.140.12.0.1~66 15.6 beta 3 19G5046d
iBoot-7459.140.15~8 15.6 beta 4 19G5056c
iBoot-7459.140.15~39 15.6 beta 5 19G5063a
iBoot-7459.140.15~19 15.6 RC 19G69
15.6 RC 2 19G71
15.6
iBoot-7459.140.15~47 15.6.1 19G82
iBoot-7459.140.15~49 15.7 RC 19H12
15.7
15.7.1 RC 19H115
15.7.1 19H117
15.7.2 RC 19H218
15.7.2
iBoot-7459.140.15~53 15.7.3 RC 19H307
15.7.3
iBoot-7459.140.15~55 15.7.4 RC 19H321
15.7.4
15.7.5 19H332
iBoot-7459.140.15~56 15.7.6 RC 19H349
15.7.6
15.7.7 19H357
15.7.8 RC 19H364
15.7.8
15.7.9 19H365
iBoot-7459.140.15~66 15.8 RC 19H370
15.8
15.8.1 RC 19H380
15.8.1
15.8.2 RC 19H384
15.8.2
iBoot-8140.0.0.0.3 16.0 20A207a
iBoot-8419.0.42.112.1~32 16.0 beta 20A5283p
iBoot-8419.0.46.101.12 16.0 factory 20A92871d
20A92871f
iBoot-8419.0.79.0.2~458 16.0 beta 2 20A5303i
iBoot-8419.0.113.0.1~6 16.0 beta 3 20A5312g & 20A5312j
iBoot-8419.0.151.0.1~172 16.0 beta 4 20A5328h
iBoot-8419.2.3~21 16.0 beta 5 20A5339d
iBoot-8419.2.4~7 16.0 beta 6 20A5349b
16.0 beta 7 20A5356a
16.0 beta 8 20A5358a
iBoot-8419.2.4~5 16.0 RC 20A362
16.0
16.0.1 20A371
16.0.2 20A380
iBoot-8419.2.4~71 16.0.3 20A392
iBoot-8419.40.47.0.1~118 16.1 beta 20B5027f
iBoot-8419.40.90.132.1~1 16.1 beta 2 20B5045d
iBoot-8419.40.95.0.1~96 16.1 beta 3 20B5050f
iBoot-8419.40.102.0.2~182 16.1 beta 4 20B5056e
iBoot-8419.40.112~28 16.1 beta 5 20B5064c
iBoot-8419.40.112~65 16.1 beta 6 20B5072b
iBoot-8419.40.112~64 16.1 RC 20B79
16.1 20B82
16.1.1 20B101
16.1.2 20B110
iBoot-8419.60.31.112.1~2 16.2 beta 20C5032e
iBoot-8419.60.38.122.1~1 16.2 beta 2 20C5043e
iBoot-8419.60.44~52 16.2 beta 3 20C5049e
iBoot-8419.60.44~182 16.2 beta 4 20C5058d
iBoot-8419.60.44~314 16.2 RC 20C65
16.2
iBoot-8419.80.3~11 16.3 beta 20D5024e
iBoot-8419.80.4.122.1~1 16.3 beta 2 20D5035i
iBoot-8419.82.1~1 16.3 RC 20D47
16.3
16.3.1 20D67
iBoot-8422.100.610.502.1~2 16.4 beta 20E5212f
iBoot-8422.100.640.0.1~10 16.4 beta 2 20E5223e
iBoot-8422.100.645.0.1~34 16.4 beta 3 20E5229e
iBoot-8422.100.650~48 16.4 beta 4 20E5239b
iBoot-8422.100.650~104 16.4 RC 20E246
16.4 20E246 and 20E247
16.4.1 20E252
iBoot-8422.120.33~23 16.5 beta 20F5028e
iBoot-8422.120.55~11 16.5 beta 2 20F5039e
iBoot-8422.120.65~46 16.5 beta 3 20F5050f
iBoot-8422.120.66~23 16.5 beta 4 20F5059a
iBoot-8422.120.66~7 16.5 RC 20F65
16.5 RC 2 20F66
16.5 20F66
iBoot-8422.122.1~2 16.5.1 20F75
iBoot-8422.120.33~23 16.6 beta 20G5026e
iBoot-8422.140.32~75 16.6 beta 2 20G5037d
iBoot-8422.140.46.0.1~13 16.6 beta 3 20G5047d
iBoot-8422.140.50.0.2~15 16.6 beta 4 20G5058d
iBoot-8422.142.1~2 16.6 beta 5 20G5070a
iBoot-8422.142.2~1 16.6 RC 20G75
16.6
16.6.1 20G81
iBoot-8422.142.2~4 16.7 RC 20H18
16.7 20H19
16.7.1 20H30
iBoot-8422.142.2.700.1~1 16.7.2 RC 20H115
16.7.2
iBoot-8422.142.2.700.1~3 16.7.3 RC 20H232
16.7.3
16.7.4 20H240
16.7.5 RC 20H307
16.7.5
iBoot-8422.142.2.700.1~11 16.7.6 RC 20H320
16.7.6
16.7.7 20H330
iBoot-10151.0.82.502.1 17.0 beta 21A5248v
iBoot-10151.0.156.502.1~4 17.0 beta 2 21A5268h
iBoot-10151.0.156.0.3~652 17.0 beta 3 21A5277h & 21A5277j
iBoot-10151.0.255.0.4~45 17.0 beta 4 21A5291h & 21A5291j
iBoot-10151.0.305.0.1~68 17.0 beta 5 21A5303d
iBoot-10151.2.7~2 17.0 beta 6 21A5312c
iBoot-10151.2.12~2 17.0 beta 7 21A5319a
iBoot-10151.2.12~27 17.0 beta 8 21A5326a
iBoot-10151.2.12~25 17.0 RC 21A329
17.0 21A329 & 21A331
iBoot-10151.2.12~108 17.0.1 21A340
17.0.2 21A350 & 21A351
17.0.3 21A360
iBoot-10151.40.132.502.1~1 17.1 beta 21B5045h
iBoot-10151.40.171.502.1~1 17.1 beta 2 21B5056e
iBoot-10151.42.2~51 17.1 beta 3 21B5066a
iBoot-10151.42.2~50 17.1 RC 21B74
17.1 RC 2 21B77
17.1 21B74 & 21B80
17.1.1 21B91
17.1.2 21B101
iBoot-10151.60.43~62 17.2 beta 21C5029g
iBoot-10151.60.47.0.1 17.2 ?
iBoot-10151.60.55~30 17.2 beta 2 21C5040g
iBoot-10151.60.56~41 17.2 beta 3 21C5046c
iBoot-10151.62.1~11 17.2 beta 4 21C5054b
iBoot-10151.62.1~7 17.2 RC 21C62
17.2
17.2.1 21C66
iBoot-10151.80.6~239 17.3 beta 21D5026f
iBoot-10151.80.20~15 17.3 beta 2 21D5036c
iBoot-10151.80.20~85 17.3 beta 3 21D5044a
iBoot-10151.80.20~60 17.3 RC 21D50
17.3
17.3.1 21D61
iBoot-10151.100.738.0.1~307 17.4 beta 21E5184i
21E5184k
iBoot-10151.100.753~115 17.4 beta 2 21E5195e
iBoot-10151.100.756~162 17.4 beta 3 21E5200d
iBoot-10151.102.2~64 17.4 beta 4 21E5209b
iBoot-10151.102.2~86 17.4 RC 21E217
17.4 21E219
iBoot-10151.102.2~205 17.4.1 21E236 & 21E237
iBoot-10151.120.125.0.2~27 17.5 beta 21F5048f
iBoot-10151.120.136~13 17.5 beta 2 21F5058e

iOS (Apple TV (2nd and 3rd generation))

Version list for iOS (Apple TV Software)
iBoot Version Software Version Internal Version Build Number
iBoot-931.44.21~1 4.0 4.1 8M89
iBoot-931.71.16~9 4.1 4.2 8C150
4.1.1 4.2.1 8C154
iBoot-1072.33~1 4.2 beta 4.3 beta 8F5148b
iBoot-1072.38~2 4.2 beta 2 4.3 beta 2 8F5153d
iBoot-1072.49~2 4.2 beta 3 4.3 beta 3 8F5166b
iBoot-1072.59~2 4.2 4.3 8F191m
4.2.1 4.3 8F202
4.2.2 4.3 8F305
4.3 8F455
iBoot-1219.35.80~1 4.4 beta 5.0 beta 9A5220p
iBoot-1219.40.25~4 4.4 beta 2 5.0 beta 2 9A5248d
iBoot-1219.41.11~1 4.4 beta 3 5.0 beta 3 9A5259f
iBoot-1219.43.9~3 4.4 beta 5 5.0 beta 5 9A5288d
iBoot-1219.43.18~3 4.4 beta 6 5.0 beta 6 9A5302b
iBoot-1219.43.27~1 4.4 beta 7 5.0 beta 7 9A5313e
iBoot-1219.43.32~21 4.4 5.0 9A334v
iBoot-1219.43.32~22 4.4.1 5.0 9A335a
4.4.2 5.0 9A336a
iBoot-1219.43.32~29 4.4.3 5.0.1 9A405l
4.4.4 5.0.1 9A406a
iBoot-1219.62.1~2 5.0 beta 2 5.1 beta 2 9B5127c
iBoot-1219.62.8~5 5.0 beta 3 5.1 beta 3 9B5141a
iBoot-1219.62.15~2 5.0 5.1 9B179b
iBoot-1537.1.60~15 5.1 beta 6.0 beta 10A5316k
iBoot-1537.2.11~5 5.1 beta 2 6.0 beta 2 10A5338d
iBoot-1537.2.81~1 5.1 beta 3 6.0 beta 3 10A5355d
iBoot-1537.2.41~2 5.1 beta 4 6.0 beta 4 10A5376e
iBoot-1537.4.19~1 5.1 6.0 10A406e
iBoot-1537.4.21~3 5.1.1 6.0.1 10A831
iBoot-1537.9.40~3 5.2 beta 6.1 beta 10B5095f
iBoot-1537.9.46~8 5.2 beta 2 6.1 beta 2 10B5105c
5.2 beta 3 6.1 beta 3 10B5117d
5.2 beta 4 6.1 beta 4 10B5126d
iBoot-1537.9.55~4 5.2 6.1 10B144b
iBoot-1537.9.55~11 5.2.1 6.1.3 10B329a
iBoot-1537.9.55~11 5.3 6.1.4 10B809
iBoot-1940.1.8~44 5.4 beta 7.0 beta 11A4372q
iBoot-1940.1.35~9 5.4 beta 2 7.0 beta 2 11A4400f
iBoot-1940.1.66~9 6.0 beta 3 7.0 beta 4 11A4435d
iBoot-1940.1.75~3 6.0 beta 4 7.0 beta 5 11A4449a
iBoot-1940.1.75~93 6.0 7.0.1 11A470e
6.0 7.0.2 11A502
iBoot-1940.3.5~1 6.0.1 7.0.3 11B511d
6.0.2 7.0.4 11B554a
iBoot-1940.10.51~3 6.1 beta 7.1 beta 11D5099e
iBoot-1940.10.57~8 6.1 beta 2 7.1 beta 2 11D5115d
iBoot-1940.10.58~11 6.1 beta 3 7.1 beta 3 11D5127c
iBoot-1940.10.58~32 6.1 beta 4 7.1 beta 4 11D5134c
iBoot-1940.10.58~70 6.1 beta 5 7.1 beta 5 11D5145e
iBoot-1940.10.58~115 6.1 7.1 11D167
iBoot-1940.10.58~122 6.1.1 7.1.1 11D201c
iBoot-1940.10.58~132 6.2 7.1.2 11D257c
6.2.1 7.1.2 12A365b
iBoot-2261.1.31~21 7.0 beta 8.0 beta 12A4297e
iBoot-2261.1.46~31 7.0 beta 2 8.0 beta 3 12A4318c
iBoot-2261.1.57~43 7.0 beta 3 8.0 beta 4 12A4331d
iBoot-2261.1.64~28 7.0 beta 4 8.0 beta 5 12A4345d
iBoot-2261.1.67~8 7.0 GM 8.0 GM 12A365b
7.0 8.0
iBoot-2261.3.31~3 7.0.1 beta 8.1 beta 12B401
iBoot-2261.3.31~9 7.0.1 beta 2 8.1 beta 2 12B407
iBoot-2261.3.32~2 7.0.1 8.1 12B410a
iBoot-2261.3.33~13 7.0.2 beta 8.1.1 beta 12B432
iBoot-2261.3.33~14 7.0.2 8.1.1 12B435
iBoot-2261.3.33~39 7.0.3 8.1.3 12B446
iBoot-2261.5.58~25 7.1 beta 8.2 beta 5 12D5480a
iBoot-2261.5.64~15 7.1 8.2 12D508
iBoot-2261.20.18~14 7.1 beta 2 8.3 beta 2 12F5037c
iBoot-2261.20.20~9 7.1 beta 3 8.3 beta 4 12F61
iBoot-2261.20.20~14 7.2 8.3 12F69
iBoot-2261.30.37~79 7.2.1 8.4.1 12H523
iBoot-2261.30.37~87 7.2.2 8.4.2 12H606
iBoot-2261.30.37~111 7.3 beta 8.4.2 12H825
iBoot-2261.30.37~112 7.3 beta 2 8.4.2 12H833
7.3 beta 3 8.4.2 12H836
iBoot-2261.30.37~114 7.3 beta 4 8.4.2 12H841
iBoot-2261.30.37~115 7.3 8.4.2 12H847
iBoot-2261.30.37~118 7.3.1 8.4.2 12H864
iBoot-2261.30.37~122 7.4 8.4.3 12H876
iBoot-2261.30.37~123 7.5 8.4.4 12H885
iBoot-2261.30.37~126 7.6 8.4.4 12H903
7.6.1 8.4.4 12H911
iBoot-2261.30.37~128 7.6.2 8.4.4 12H914
iBoot-2261.30.37~129 7.7 8.4.4 12H923
7.8 8.4.4 12H937
7.9 8.4.4 12H1006

tvOS

Version list for tvOS
iBoot Version Software Version Build Number
iBoot-2817.10.22~26 9.0 beta 13T5347l
iBoot-2817.10.29~9 9.0 beta 2 13T5365h
iBoot-2817.10.34~5 9.0 beta 3 13T5379f
iBoot-2817.12.1~1 9.0 GM 13T396
9.0
9.0.1 13T402
iBoot-2817.20.24~5 9.1 beta 13U5061d
iBoot-2817.20.26~2 9.1 beta 2 13U5069b
iBoot-2817.20.26~7 9.1 beta 3 13U5077a
iBoot-2817.20.26~1 9.1 13U85
iBoot-2817.20.26~8 9.1.1 beta 13U713
9.1.1 13U717
iBoot-2817.40.91~19 9.2 beta 13Y5179e
iBoot-2817.40.97~10 9.2 beta 2 13Y5189e
iBoot-2817.40.102~14 9.2 beta 3 13Y5198c
iBoot-2817.40.104~50 9.2 beta 4 13Y5210d
iBoot-2817.40.106~15 9.2 beta 5 13Y5220c
iBoot-2817.40.106~15 9.2 beta 6 13Y5232a
iBoot-2817.40.106~18 9.2 13Y234
iBoot-2817.50.1~20 9.2.1 beta 13Y5752a
iBoot-2817.50.2~1 9.2.1 beta 2 13Y763b & 13Y763c
9.2.1 beta 3 13Y768
9.2.1 beta 4 13Y772
9.2.1
iBoot-2817.50.2~11 9.2.2 beta 13Y807
iBoot-2817.60.1~2 9.2.2 beta 2 13Y816
iBoot-2817.60.2~1 9.2.2 beta 3 13Y823
9.2.2 beta 4 13Y824
9.2.2 beta 5 13Y825
9.2.2
iBoot-3393~157 10.0 beta 14T5253s
iBoot-3406.1.46~9 10.0 beta 2 14T5284d
iBoot-3406.1.59~57 10.0 beta 3 14T5296d
iBoot-3406.1.68~85 10.0 beta 4 14T5308d
iBoot-3406.1.77~19 10.0 beta 5 14T5321a
10.0 beta 6 14T5327a
10.0 beta 7 14T5329a
iBoot-3406.1.77~13 10.0 GM 14T330
10.0
iBoot-3406.20.16~117 10.0.1 beta 14U54
10.0.1 beta 2 14U66
10.0.1 beta 3 14U69
10.0.1 beta 4 14U71
10.0.1 14U71 & 14U100
iBoot-3406.30.8~11 10.1 beta 14U5565b
iBoot-3406.30.8~374 10.1 beta 2 14U5574b
iBoot-3406.30.8~501 10.1 beta 3 14U5582b
iBoot-3406.30.8~493 10.1 beta 4 14U588
10.1 beta 5 14U593
10.1
10.1.1 beta 14U707
10.1.1 beta 2 14U711
10.1.1 14U712a
iBoot-3406.50.223~18 10.2 beta 14W5222d
iBoot-3406.50.229~12 10.2 beta 2 14W5231d
iBoot-3406.50.236~71 10.2 beta 3 14W5241c
iBoot-3406.53.1~1 10.2 beta 4 14W5252c
iBoot-3406.53.2~2 10.2 beta 5 14W5260a
10.2 beta 6 14W5264a
iBoot-3406.53.2~1 10.2 14W265
iBoot-3406.60.7~17 10.2.1 beta 14W5563b
iBoot-3406.60.10~11 10.2.1 beta 2 14W5573a
iBoot-3406.60.10~29 10.2.1 beta 3 14W5578b
iBoot-3406.60.10~42 10.2.1 beta 4 14W5583a
iBoot-3406.60.10~35 10.2.1 beta 5 14W585
10.2.1 14W585a
iBoot-3406.60.10~55 10.2.2 beta 14W5726a
10.2.2 beta 2 14W5735a
10.2.2 beta 3 14W5745a
10.2.2 beta 4 14W5751b
iBoot-3406.60.10~76 10.2.2 beta 5 14W754
10.2.2 14W756
iBoot-3974~291 11.0 beta 15J5284e & 15J5284g
iBoot-4051~54 11.0 beta 2 15J5310e & 15J5310h
iBoot-4076.1.9~34 11.0 beta 3 15J5324f
iBoot-4076.1.22~28 11.0 beta 4 15J5333f
iBoot-4076.1.39.3.1~1 11.0 beta 5 15J5347f
iBoot-4076.3.1~11 11.0 beta 6 15J5360b
iBoot-4076.3.2~2 11.0 beta 7 15J5369a
11.0 beta 8 15J5374a
11.0 beta 9 15J5378a
iBoot-4076.3.3~1 11.0 beta 10 15J5380a
iBoot-4076.3.3~2 11.0 GM 15J381
11.0
iBoot-4076.20.45~10 11.1 beta 15J5559d
iBoot-4076.20.47~3 11.1 beta 2 15J5571d
iBoot-4076.20.48~4 11.1 beta 3 15J5580a
11.1 beta 4 15J5582a
iBoot-4076.20.48~2 11.1 15J582
iBoot-4076.30.40~22 11.2 beta 15K5085b
iBoot-4076.30.43~14 11.2 beta 2 15K5090c
iBoot-4076.30.43~81 11.2 beta 3 15K5099a
11.2 beta 4 15K102a
11.2 beta 5 15K5105a
iBoot-4076.30.43~75 11.2 15K106
11.2.1 15K152
iBoot-4076.30.43~138 11.2.5 beta 15K5531d
11.2.5 beta 2 15K5539b
11.2.5 beta 3 15K5544a
11.2.5 beta 4 15K5544b
11.2.5 beta 5 15K5549a
11.2.5 beta 6 15K5552a
iBoot-4076.30.43~143 11.2.5 15K552
11.2.6 15K600
iBoot-4076.50.114~7 11.3 beta 15L5164e
iBoot-4076.50.119~180 11.3 beta 2 15L5175d
iBoot-4076.50.123~78 11.3 beta 3 15L5186e
iBoot-4076.50.126~19 11.3 beta 4 15L5198d
iBoot-4076.50.126~62 11.3 beta 5 15L5208a
11.3 beta 6 15L5211b
11.3 15L211
iBoot-4076.60.7~269 11.4 beta 15L5536c
iBoot-4076.60.7~398 11.4 beta 2 15L5546a
iBoot-4076.60.8.0.1~7 11.4 beta 3 15L5560b
iBoot-4076.60.11~12 11.4 beta 4 15L5570a
11.4 beta 5 15L5576a
iBoot-4076.60.11~5 11.4 15L577
iBoot-4076.70.9~75 11.4.1 beta 15M5054b
iBoot-4076.70.14~16 11.4.1 beta 2 15M5063a
iBoot-4076.70.15~37 11.4.1 beta 3 15M5071b
11.4.1 beta 4 15M5072a
iBoot-4076.70.15~16 11.4.1 15M77
iBoot-4513.200.159.10.1~10 12.0 beta 16J5283n
iBoot-4513.200.209~13 12.0 beta 2 16J5303e
iBoot-4513.200.230.0.1~8 12.0 beta 3 16J5313d
iBoot-4513.200.245.0.2~86 12.0 beta 4 16J5322d
iBoot-4513.200.278~10 12.0 beta 5 16J5334e
iBoot-4513.200.287.0.2~16 12.0 beta 6 16J5340e
12.0 beta 7 16J5349a
iBoot-4513.200.293~39 12.0 beta 8 16J5355a
12.0 beta 9 16J5360a
12.0 beta 10 16J5364a
iBoot-4513.200.293~4 12.0 GM 16J364
12.0
12.0.1 16J380
iBoot-4513.220.83~21 12.1 beta 16J5575c
iBoot-4513.220.91~17 12.1 beta 2 16J5584c
iBoot-4513.220.97~19 12.1 beta 3 16J5593c
iBoot-4513.220.97~67 12.1 beta 4 16J5600a
12.1 beta 5 16J5602a
iBoot-4513.220.97~55 12.1 16J602
iBoot-4513.230.5~86 12.1.1 beta 16K5035b
iBoot-4513.230.5~128 12.1.1 beta 2 16K5041a
12.1.1 beta 3 16K5044a
12.1.1 beta 4 16K5045a
iBoot-4513.230.5~127 12.1.1 16K45
iBoot-4513.230.10~42 12.1.2 beta 16K5524a
iBoot-4513.230.10~59 12.1.2 beta 2 16K5532a
12.1.2 beta 3 16K5534a
iBoot-4513.230.10~62 12.1.2 16K534
iBoot-4513.250.271~115 12.2 beta 16L5181f
iBoot-4513.250.278~86 12.2 beta 2 16L5191d
iBoot-4513.250.284~10 12.2 beta 3 16L5201d
iBoot-4513.250.287~9 12.2 beta 4 16L5212e
iBoot-4513.250.287~102 12.2 beta 5 16L5221a
12.2 beta 6 16L5226a
iBoot-4513.250.287~169 12.2 16L226
12.2.1 16L250
iBoot-4513.260.69~69 12.3 beta 16M5117f
iBoot-4513.260.78~7 12.3 beta 2 16M5129d
iBoot-4513.260.80~32 12.3 beta 3 16M5139a
12.3 beta 4 16M5146a
12.3 beta 5 16M5151a
iBoot-4513.260.80~58 12.3 16M153
iBoot-4513.270.8~23 12.4 beta 16M5526d
iBoot-4513.270.10~27 12.4 beta 2 16M5537c
iBoot-4513.270.12~37 12.4 beta 3 16M5545c
iBoot-4513.270.14~24 12.4 16M568
12.4.1 16M600
iBoot-5540.0.15.113.2~1 13.0 beta 17J5485s
iBoot-5540.0.45~289 13.0 beta 2 17J5501l
iBoot-5540.0.76~20 13.0 beta 3 17J5515e
iBoot-5540.0.87~27 13.0 beta 4 17J5526e
iBoot-5540.0.117~19 13.0 beta 5 17J5540d
iBoot-5540.0.121~9 13.0 beta 6 17J5549c
iBoot-5540.0.125~39 13.0 beta 7 17J5557a
iBoot-5540.0.126~55 13.0 beta 8 17J5564c
iBoot-5540.0.129~5 13.0 beta 9 17J5573a
iBoot-5540.0.129~92 13.0 beta 10 17J5579a
13.0 beta 11 17J5584a
iBoot-5540.0.129~1 13.0 17J586
iBoot-5540.40.50~29 13.2 beta 17K5059d
iBoot-5540.40.51~46 13.2 beta 2 17K5068b
iBoot-5540.40.51~172 13.2 beta 3 17K5078a
13.2 beta 4 17K5082a
iBoot-5540.40.51~135 13.2 17K82
iBoot-5540.60.6~88 13.3 beta 17K5433c
iBoot-5540.60.11~38 13.3 beta 2 17K5440a
iBoot-5540.60.11~126 13.3 beta 3 17K5445a
13.3 beta 4 17C5053a
iBoot-5540.60.11~25 13.3 17K449
iBoot-5540.80.1~80 13.3.1 beta 17K5775c
iBoot-5540.80.2~140 13.3.1 beta 2 17K5792a
13.3.1 beta 3 17K5795a
iBoot-5540.80.2~138 13.3.1 17K795
iBoot-5540.100.177.0.1~94 13.4 beta 17L5225g
iBoot-5540.100.190~15 13.4 beta 2 17L5235e
iBoot-5540.100.194~44 13.4 beta 3 17L5245b
13.4 beta 4 17L5251a
13.4 beta 5 17L5255a
iBoot-5540.100.194~112 13.4 beta 6 17L256
13.4
iBoot-5540.120.9~16 13.4.5 beta 17L5533c
iBoot-5540.120.14~21 13.4.5 beta 2 17L5543d
iBoot-5540.120.15.0.1~32 13.4.5 beta 3 17L5553c
iBoot-5540.120.17~55 13.4.5 beta 4 17L5560a
iBoot-5540.120.17~6 13.4.5 GM 17L562
13.4.5
13.4.6 17L570
iBoot-5540.140.5~31 13.4.8 beta 17M5535f
iBoot-5540.140.7~32 13.4.8 beta 2 17M5545a
iBoot-5540.140.12~13 13.4.8 beta 3 17M5558b
iBoot-5540.140.12~19 13.4.8 GM 17M61
13.4.8
iBoot-6603.0.0.110.6~12 14.0 beta 18J5313t
iBoot-6631.0.0.0.1~30 14.0 beta 2 18J5331g
iBoot-6690.0.0.0.4~207 14.0 beta 3 18J5344d
iBoot-6723.0.7.143.1~1 14.0 beta 4 18J5354d
iBoot-6723.0.34~190 14.0 beta 5 18J5364d
iBoot-6723.0.43~15 14.0 beta 6 18J5370e
iBoot-6723.0.43~60 14.0 beta 7 18J5379a
14.0 beta 8 18J5385a
iBoot-6723.0.43~43 14.0 GM 18J386
14.0
14.0.1 18J400
14.0.2 18J411
iBoot-6723.40.106~177 14.2 beta 18K5027e
iBoot-6723.40.120.0.2~152 14.2 beta 2 18K5036d
iBoot-6723.40.151~84 14.2 beta 3 18K5047f
iBoot-6723.43.1~24 14.2 beta 4 18K5057a
iBoot-6723.43.1~10 14.2 RC 18K57
14.2
iBoot-6723.60.60.0.2~137 14.3 beta 18K5545e
iBoot-6723.60.62~85 14.3 beta 2 18K5556a
14.3 beta 3 18K5559a
iBoot-6723.60.62~95 14.3 RC 18K561
14.3
iBoot-6723.80.14~45 14.4 beta 18K5780c
iBoot-6723.80.17~27 14.4 beta 2 18K5793d
iBoot-6723.80.19~1 14.4 RC 18K802
14.4
iBoot-6723.100.321~58 14.5 beta 18L5149j
iBoot-6723.100.340~213 14.5 beta 2 18L5163d
iBoot-6723.100.360~61 14.5 beta 3 18L5173f
iBoot-6723.103.1~2 14.5 beta 4 18L5186a
14.5 beta 5 18L5193a
iBoot-6723.103.1~12 14.5 beta 6 18L5200a
14.5 beta 7 18L5203a
iBoot-6723.103.1~1 14.5 RC 18L204
14.5
iBoot-6723.120.33.0.1~153 14.6 beta 18L5546f
iBoot-6723.120.35~169 14.6 beta 2 18L5555c
iBoot-6723.120.36~225 14.6 beta 3 18L5565a
iBoot-6723.120.36~404 14.6 RC 18L569
14.6
iBoot-6723.120.36~423 14.7 beta 18M5523d
iBoot-6723.120.36~540 14.7 beta 2 18M5533c
iBoot-6723.120.36~784 14.7 beta 3 18M5542c
iBoot-6723.140.1~41 14.7 beta 4 18M5552d
iBoot-6723.140.2~45 14.7 beta 5 18M5559a
iBoot-6723.140.2~9 14.7 RC 18M60
14.7
iBoot-7429.0.72.0.3~429 15.0 beta 19J5268r
iBoot-7429.0.133.0.1~8 15.0 beta 2 19J5288e
iBoot-7429.0.181.0.2~9 15.0 beta 3 19J5304d
iBoot-7429.0.207.0.3~16 15.0 beta 4 19J5314e
iBoot-7429.10.8.0.6~17 15.0 beta 5 19J5325f
iBoot-7429.10.23.0.2~83 15.0 beta 6 19J5332e
iBoot-7429.10.23.0.2~114 15.0 beta 7 19J5340a
15.0 beta 8 19J5345a
15.0 beta 9 19J5346a
iBoot-7429.10.23.0.2~113 15.0 RC 19J346
15.0
iBoot-7429.40.68~15 15.1 beta 19J5542e
iBoot-7429.40.84.0.1~7 15.1 beta 2 19J5552f
iBoot-7429.40.92.0.5~7 15.1 beta 3 19J5560d
iBoot-7429.40.94~8 15.1 beta 4 19J5567a
iBoot-7429.40.94~3 15.1 RC 19J572
15.1
15.1.1 19J581
iBoot-7429.60.27.0.1~76 15.2 beta 19K5025g
iBoot-7429.60.41~7 15.2 beta 2 19K5035d
iBoot-7429.60.47~5 15.2 beta 3 19K5043b
15.2 beta 4 19K5050a
iBoot-7429.60.47~2 15.2 RC 19K53
15.2
iBoot-7429.80.17~43 15.3 beta 19K5527e
iBoot-7429.80.33~11 15.3 beta 2 19K5541d
iBoot-7429.80.33~49 15.3 RC 19K545
15.3 19K547
iBoot-7459.100.487~22 15.4 beta 19L5409j
iBoot-7459.100.494.0.2~66 15.4 beta 2 19L5419e
iBoot-7459.100.504.0.1~15 15.4 beta 3 19L5425e
iBoot-7459.103.1~2 15.4 beta 4 19L5436a
15.4 beta 5 19L5440a
iBoot-7459.103.1~1 15.4 RC 19L440
15.4
15.4.1 19L452
iBoot-7459.120.39.0.2~28 15.5 beta 19L5547e
iBoot-7459.120.45.0.4~103 15.5 beta 2 19L5557d
iBoot-7459.120.56.0.2~18 15.5 beta 3 19L5562e
iBoot-7459.120.62.0.3~16 15.5 beta 4 19L5569a
iBoot-7459.120.62.0.3~1 15.5 RC 19L570
15.5
15.5.1 19L580
iBoot-7459.140.8~33 15.6 beta 19M5027c
iBoot-7459.140.10~17 15.6 beta 2 19M5037c
iBoot-7459.140.12.0.1~15 15.6 beta 3 19M5046c
iBoot-7459.140.15~7 15.6 beta 4 19M5056c
iBoot-7459.140.15~38 15.6 beta 5 19M5062a
iBoot-7459.140.15~18 15.6 RC 19M63
15.6 19M65
iBoot-8419.0.42.113.2~2 16.0 beta 20J5299n
iBoot-8419.0.79.0.2~451 16.0 beta 2 20J5319h
iBoot-8419.0.113.0.1~9 16.0 beta 3 20J5328g
iBoot-8419.0.151.0.1~47 16.0 beta 4 20J5344f
iBoot-8419.0.151.0.2~369 16.0 beta 5 20J5355f
iBoot-8419.3.1~12 16.0 beta 6 20J5366a
16.0 beta 7 20J5371a
iBoot-8419.3.1~6 16.0 RC 20J373
16.0
iBoot-????.??.?~?? 16.0 20J8378
iBoot-8419.40.90.0.2~66 16.1 beta 20K5041d
iBoot-8419.40.95.0.1~93 16.1 beta 2 20K5046d
iBoot-8419.40.102.0.2~66 16.1 beta 3 20K5052c
iBoot-8419.40.112~37 16.1 beta 4 20K5062a
16.1 beta 5 20K5068a
iBoot-8419.40.112~49 16.1 RC 20K71
16.1
16.1.1 20K80
iBoot-8419.60.31~13 16.2 beta 20K5331f
iBoot-8419.60.38.0.1~66 16.2 beta 2 20K5342d
iBoot-8419.60.44~59 16.2 beta 3 20K5348d
iBoot-8419.60.44~165 16.2 beta 4 20K5357b
iBoot-8419.60.44~108 16.2 RC 20K362
16.2
iBoot-8419.80.3~6 16.3 beta 20K5626c
iBoot-8419.80.4.0.1~16 16.3 beta 2 20K5637g
iBoot-8419.80.7~6 16.3 RC 20K650
16.3
16.3.1 20K661
16.3.2 20K672
16.3.3 20K680
iBoot-8422.100.610.503.1~1 16.4 beta 20L5463g
iBoot-8422.100.640.0.1~32 16.4 beta 2 20L5474e
iBoot-8422.100.645.0.1~29 16.4 beta 3 20L5480g
iBoot-8422.100.650~40 16.4 beta 4 20L5490a
iBoot-8422.100.650~27 16.4 RC 20L497
16.4
16.4.1 20L498
iBoot-8422.120.33~21 16.5 beta 20L5527d
iBoot-8422.120.55~7 16.5 beta 2 20L5538d
iBoot-8422.120.65~47 16.5 beta 3 20L5549e
iBoot-8422.120.65.0.1~25 16.5 beta 4 20L5559a
iBoot-8422.120.65.0.1~9 16.5 RC 20L562
16.5 20L563
iBoot-8422.140.18.0.2~88 16.6 beta 20M5527e
iBoot-8422.140.32~78 16.6 beta 2 20M5538d
iBoot-8422.140.46.0.1~10 16.6 beta 3 20M5548b
iBoot-8422.140.50.0.2~11 16.6 beta 4 20M5559c
iBoot-8422.140.59~48 16.6 beta 5 20M5571a
iBoot-8422.140.59~12 16.6 RC 20M73
16.6
iBoot-10151.0.82.0.1~508 17.0 beta 21J5273q
iBoot-10151.0.156.0.2~59 17.0 beta 2 21J5293g
iBoot-10151.0.211~14 17.0 beta 3 21J5303f & 21J5303h
iBoot-10151.0.255.0.4~44 17.0 beta 4 21J5318f
iBoot-10151.0.305.0.1~21 17.0 beta 5 21J5330e
17.0 beta 6 21J5339b
17.0 beta 7 21J5347a
iBoot-10151.0.305.0.1~235 17.0 beta 8 21J5353a
17.0 beta 9 21J5354a
iBoot-10151.0.305.0.1~151 17.0 RC 21J354
17.0
iBoot-10151.40.132~115 17.1 beta 21K5043e
iBoot-10151.40.171.0.4~23 17.1 beta 2 21K5054e
iBoot-10151.40.175~49 17.1 beta 3 21K5064b
iBoot-10151.40.175~44 17.1 RC 21K69
17.1
iBoot-10151.60.43~25 17.2 beta 21K5330g
iBoot-10151.60.55~28 17.2 beta 2 21K5341f
iBoot-10151.60.56~26 17.2 beta 3 21K5348f
iBoot-10151.60.59~39 17.2 beta 4 21K5356c
iBoot-10151.60.59~32 17.2 RC 21K364
17.2 RC 2 21K365
17.2
iBoot-10151.80.6~238 17.3 beta 21K5625e
iBoot-10151.80.20~7 17.3 beta 2 21K5635c
iBoot-10151.80.20~86 17.3 beta 3 21K5643b
iBoot-10151.80.20~68 17.3 RC 21K646
17.3
iBoot-10151.100.738.0.1~16 17.4 beta 21L5195h
iBoot-10151.100.753~103 17.4 beta 2 21L5206f
iBoot-10151.100.756~167 17.4 beta 3 21L5212d
iBoot-10151.103.1~26 17.4 beta 4 21L5222a
17.4 beta 5 21L5225a
iBoot-10151.103.1~25 17.4 RC 21L227
17.4
iBoot-10151.120.125.0.2~25 17.5 beta 21L5543d
iBoot-10151.120.136~15 17.5 beta 2 21L5553e

visionOS

Version list for visionOS
iBoot Version Software Version Build Number
iBoot-10151.0.82.507.1~1 1.0 beta 21N5165g
iBoot-10151.0.255.0.4~40 1.0 beta 2 21N5207g
iBoot-10151.40.73.0.2~4 1.0 beta 3 21N5233f
iBoot-10151.40.155.0.4~10 1.0 beta 4 21N5259k
1.0 beta 5 21N5260b
iBoot-10151.42.2~267 1.0 beta 6 21N5300a
iBoot-10151.42.2~266 1.0 beta 7 21N307
1.0
1.0.1 21N311
1.0.2 21N323
1.0.3 21N333
iBoot-10151.100.753~52 1.1 beta 21O5181e
iBoot-10151.100.756~168 1.1 beta 2 21O5188c
iBoot-10151.107.1~43 1.1 beta 3 21O5197a
1.1 beta 4 21O5203a
iBoot-10151.107.1~42 1.1 RC 21O209
1.1 21O211
1.1.1 21O224
iBoot-10151.107.2~2 1.1.2 21O231
iBoot-10151.120.125.0.2~26 1.2 beta 21O5555e & 21O5555f
iBoot-10151.120.136~21 1.2 beta 2 21O5565d

watchOS

Version list for watchOS
iBoot Version Software Version Build Number
iBoot-2261.1.11.1.7 1.0 factory 12S12720v
iBoot-2261.5.64~10 1.0 Pre-release 12S491
iBoot-2261.5.64~16 12S495
12S500
12S502
12S503
12S504
12S506
1.0 12S507
iBoot-2261.5.64~49 1.0.1 12S632
iBoot-2817.0.0.2.1~1 2.0 beta 2 13S5255c
iBoot-2817.2.2~2 2.0 13S344
2.0.1 13S428
iBoot-2817.20.25~4 2.1 13S661
iBoot-2817.40.91~18 2.2 beta 13V5098e
iBoot-2817.40.97~24 2.2 beta 2 13V5108c
iBoot-2817.40.102~24 2.2 beta 3 13V5117c
iBoot-2817.40.104~51 2.2 beta 4 13V5129c
iBoot-2817.40.106~17 2.2 beta 5 13V5141a
2.2 beta 6 13V5143a
iBoot-2817.40.106~4 2.2 13V144
iBoot-2817.40.106~32 2.2.1 beta 13V413
2.2.1 beta 2 13V420
2.2.1
2.2.2 beta 13V601
2.2.2 13V604
iBoot-3393~42 3.0 beta 14S5247t
iBoot-3406.1.46~10 3.0 beta 2 14S5278d
iBoot-3406.1.59~63 3.0 beta 3 14S5290d
iBoot-3406.1.68~84 3.0 beta 4 14S5302d
iBoot-3406.1.77~18 3.0 beta 5 14S5315a
iBoot-3406.4.1~2 3.0 beta 6 14S5321a
iBoot-3406.4.3~2 3.0 GM 14S326
3.0
iBoot-3406.20.16~116 3.1 beta 14S452
3.1 beta 2 14S464
3.1 beta 3 14S471
3.1
iBoot-3406.30.8~13 3.1.1 beta 14S5862d
iBoot-3406.30.8~375 3.1.1 beta 2 14S5869b
iBoot-3406.30.8~504 3.1.1 beta 3 14S5875b
iBoot-3406.30.8~502 3.1.1 beta 4 14S879
3.1.1 beta 5 14S883
3.1.1 14S883
3.1.3 beta 14S958
3.1.3 beta 2 14S959
3.1.3 14S960
iBoot-3406.50.223~19 3.2 beta 14V5205d
iBoot-3406.50.229~10 3.2 beta 2 14V5214d
iBoot-3406.50.236~76 3.2 beta 3 14V5224d
iBoot-3406.54.1~2 3.2 beta 4 14V5235b
iBoot-3406.54.2~2 3.2 beta 5 14V5243a
3.2 beta 6 14V5245a
iBoot-3406.54.2~1 3.2 14V249
iBoot-3406.60.7~16 3.2.2 beta 14V5465b
iBoot-3406.60.10~8 3.2.2 beta 2 14V5475a
iBoot-3406.60.10~27 3.2.2 beta 3 14V5480a
iBoot-3406.60.10~44 3.2.2 beta 4 14V5485a
iBoot-3406.60.10~43 3.2.2 14V485
iBoot-3406.60.10~49 3.2.3 beta 14V5726a
3.2.3 beta 2 14V5734a
iBoot-3406.60.10~49 3.2.3 beta 3 14V5744a
3.2.3 beta 4 14V5751a
iBoot-3406.60.10~77 3.2.3 14V753
iBoot-3729.0.0.1.1 4.0 ?
iBoot-3974~307 4.0 beta 15R5281f
iBoot-4025.0.0.100.1 4.0 factory 15R12971j
iBoot-4051~240 4.0 beta 2 15R5307f
iBoot-4076.1.9~31 4.0 beta 3 15R5321h
iBoot-4076.1.22~43 4.0 beta 4 15R5331g
iBoot-4076.1.39~24 4.0 beta 5 15R5345g
iBoot-4076.1.43~190 4.0 beta 6 15R5357b
4.0 beta 7 15R5365a
4.0 beta 8 15R5371a
iBoot-4076.1.43~186 4.0 GM 15R372
4.0
4.0.1 15R654
iBoot-4076.20.45~11 4.1 beta 15R5823c
iBoot-4076.20.47~6 4.1 beta 2 15R5835d
iBoot-4076.20.48~6 4.1 beta 3 15R5843a
iBoot-4076.20.48~3 4.1 beta 4 15R846
4.1
iBoot-4076.30.40~25 4.2 beta 15S5085b
iBoot-4076.30.43~16 4.2 beta 2 15S5090c
4.2 beta 3 15S5100a
4.2 beta 4 15S5102b
iBoot-4076.30.43~2 4.2 15S102
iBoot-4076.30.43~135 4.2.2 beta 15S5530d
4.2.2 beta 2 15S5534a
4.2.2 beta 3 15S5536a
4.2.2 beta 4 15S5540a
iBoot-4076.30.43~134 4.2.2 beta 5 15S542
4.2.2
4.2.3 15S600b
iBoot-4076.50.114~52 4.3 beta 15T5165e
iBoot-4076.50.119~179 4.3 beta 2 15T5176c
iBoot-4076.50.123~76 4.3 beta 3 15T5187e
iBoot-4076.50.126~21 4.3 beta 4 15T5199f
iBoot-4076.50.126~65 4.3 beta 5 15T5209a
4.3 beta 6 15T5212a
iBoot-4076.50.126~86 4.3 15T212
iBoot-4076.60.7~267 4.3.1 beta 15T5535b
iBoot-4076.60.7~399 4.3.1 beta 2 15T5545b
iBoot-4076.60.8.0.1~5 4.3.1 beta 3 15T5555c
iBoot-4076.60.11~11 4.3.1 beta 4 15T5565a
4.3.1 beta 5 15T5567a
iBoot-4076.60.11~6 4.3.1 15T567
iBoot-4076.70.9~76 4.3.2 beta 15U5053b
iBoot-4076.70.14~15 4.3.2 beta 2 15U5062a
iBoot-4076.70.15~36 4.3.2 beta 3 15U5069a
iBoot-4076.70.15~18 4.3.2 15U70
iBoot-4513.200.159.10.1~17 5.0 beta 16R5283q & 16R5283r
iBoot-4513.200.209.24.1~1 5.0 beta 2 16R5303d
iBoot-4513.200.230.0.1~17 5.0 beta 3 16R5313d
iBoot-4513.200.250~12 5.0 beta 4 16R5322d
iBoot-4513.200.278~15 5.0 beta 5 16R5334f
iBoot-4513.200.287.0.2~12 5.0 beta 6 16R5340g
iBoot-4513.204.2~3 5.0 beta 7 16R5349a
iBoot-4513.204.6~3 5.0 beta 8 16R5357a
5.0 beta 9 16R5360a
5.0 beta 10 16R5363a
iBoot-4513.204.6~1 5.0 GM 16R364
5.0
iBoot-4513.204.6~24 5.0.1 16R381 & 16R382
iBoot-4513.220.83~11 5.1 beta 16R5559d
iBoot-4513.220.91~15 5.1 beta 2 16R5568d
iBoot-4513.220.97~17 5.1 beta 3 16R5577c
iBoot-4513.224.2~2 5.1 beta 4 16R5584a
5.1 beta 5 16R5589c
iBoot-4513.224.2~1 5.1 16R591
5.1.1 16R600
iBoot-4513.230.5~130 5.1.2 beta 16S5042a
iBoot-4513.230.5~146 5.1.2 beta 2 16S5046a
iBoot-4513.230.5~145 5.1.2 16S46
iBoot-4513.230.5~151 5.1.3 beta 16S5523a
iBoot-4513.244.1~2 5.1.3 beta 2 16S5531a
iBoot-4513.244.3~3 5.1.3 beta 3 16S5535a
iBoot-4513.244.3~2 5.1.3 16S535
iBoot-4513.250.271~201 5.2 beta 16T5181f
iBoot-4513.250.279~35 5.2 beta 2 16T5191d
iBoot-4513.250.284~77 5.2 beta 3 16T5201c
iBoot-4513.250.287~7 5.2 beta 4 16T5212e
iBoot-4513.250.287~138 5.2 beta 5 16T5222a
5.2 beta 6 16T5225a
iBoot-4513.250.287~137 5.2 16T225
iBoot-4513.250.287~171 5.2.1 beta 16U5079d
iBoot-4513.250.287~204 5.2.1 beta 2 16U5091b
iBoot-4513.250.287~231 5.2.1 beta 3 16U5101c
iBoot-4513.250.287~267 5.2.1 beta 4 16U5110a
5.2.1 beta 5 16U5113a
iBoot-4513.250.287~238 5.2.1 16U113
iBoot-4513.250.287~271 5.3 beta 16U5526f
iBoot-4513.250.287~278 5.3 beta 2 16U5537b
iBoot-4513.250.287~285 5.3 beta 3 16U5545c
iBoot-4513.250.287~288 5.3 16U569
5.3.1 16U600
5.3.2 16U611
5.3.3 16U620
5.3.4 16U627
5.3.5 16U652
5.3.6 16U662
5.3.7 16U674
5.3.8 16U680
5.3.9 16U693
iBoot-4871.0.0.100.11 6.0 17R513130m
iBoot-5296.0.0.100.1 6.0 ?
iBoot-5540.0.15.0.2~255 6.0 beta 17R5491t
iBoot-5540.0.49.0.1~180 6.0 beta 2 17R5507l
iBoot-5540.0.76~16 6.0 beta 3 17R5521e
iBoot-5540.0.87~24 6.0 beta 4 17R5532f
iBoot-5540.0.117~20 6.0 beta 5 17R5546f
iBoot-5540.0.117.2~23 6.0 beta 6 17R5556d
iBoot-5540.0.117.2~74 6.0 beta 7 17R5566a
6.0 beta 8 17R5571a
6.0 beta 9 17R5575a
iBoot-5540.0.117.2~117 6.0 GM 17R575
6.0
6.0.1 17R604 & 17R605
iBoot-5540.40.47~35 6.1 beta 17S5054e
iBoot-5540.40.50~30 6.1 beta 2 17S5059e
iBoot-5540.40.51~57 6.1 beta 3 17S5068e
iBoot-5540.40.51~169 6.1 beta 4 17S5076a
iBoot-5540.44.1~2 6.1 beta 5 17S5083a
iBoot-5540.60.6~?? 6.1 17S84
iBoot-5540.60.6~87 6.1.1 beta 17S5433b
iBoot-????.??.?~?? 6.1.1 beta 2 17S5439a
iBoot-????.??.?~?? 6.1.1 beta 3 17S5446a
iBoot-????.??.?~?? 6.1.1 beta 4 17S5449b
iBoot-????.??.?~?? 6.1.1 17S449
iBoot-????.??.?~?? 6.1.2 beta 17S5775c
iBoot-????.??.?~?? 6.1.2 beta 2 17S5792a
iBoot-????.??.?~?? 6.1.2 beta 3 17S5796a
iBoot-????.??.?~?? 6.1.2 17S796
iBoot-5540.60.11~?? 6.1.3 17S811
iBoot-????.??.?~?? 6.2 beta 17T5224g
iBoot-????.??.?~?? 6.2 beta 2 17T5234f
iBoot-????.??.?~?? 6.2 beta 3 17T5244c
iBoot-????.??.?~?? 6.2 beta 4 17T5244c
iBoot-????.??.?~?? 6.2 beta 5 17T5254a
iBoot-5540.100.194~?? 6.2 beta 6 17T529
6.2
6.2.1 17T530
6.2.5 beta 17T5580e
6.2.5 beta 2 17T5590d
iBoot-5540.100.194~355 6.2.5 beta 3 17T5600c
iBoot-5540.100.194~428 6.2.5 beta 4 17T5607a
iBoot-5540.100.194~396 6.2.5 beta 5 17T608
6.2.5
6.2.6 17T620
iBoot-5540.100.194~452 6.2.8 beta 17U5535e
6.2.8 beta 2 17U5545c
iBoot-5540.144.2~3 6.2.8 beta 3 17U5559d
iBoot-5540.144.2~4 6.2.8 GM 17U63
6.2.8
6.2.9 17U203
iBoot-5540.144.2~5 6.3 17U208
6.3 17U216
iBoot-6603.0.0.110.6~17 7.0 beta 18R5310a
iBoot-6631.0.0.0.1~32 7.0 beta 2 18R5327h
iBoot-6690.0.0.0.4~155 7.0 beta 3 18R5340d
iBoot-6723.0.7.0.2~54 7.0 beta 4 18R5350e
iBoot-6723.0.34~192 7.0 beta 5 18R5361d
iBoot-6723.0.43~13 7.0 beta 6 18R5368d
iBoot-6723.2.2~3 7.0 beta 7 18R5378a
iBoot-6723.2.3~18 7.0 beta 8 18R5382a
iBoot-6723.2.3~1 7.0 GM 18R382
7.0
7.0.1 18R395
7.0.2 18R402
7.0.3 18R410
iBoot-6723.40.106~176 7.1 beta 18R5552f
iBoot-6723.40.120.0.2~181 7.1 beta 2 18R5561e
iBoot-6723.40.151~14 7.1 beta 3 18R5572f & 18R5572g
iBoot-6723.44.2~30 7.1 beta 4 18R5585a & 18R5586a
iBoot-6723.44.2~10 7.1 RC 18R589
7.1 18R590
iBoot-6723.60.60.0.2~134 7.2 beta 18S5545f
iBoot-6723.60.62~84 7.2 beta 2 18S5555c
7.2 beta 3 18S5561a
iBoot-6723.60.62~97 7.2 RC 18S563
7.2
iBoot-6723.80.14~42 7.3 beta 18S5780d
iBoot-6723.80.17~42 7.3 beta 2 18S5793d
iBoot-6723.80.19~3 7.3 RC 18S801
7.3
iBoot-6723.80.19~80 7.3.1 18S811
7.3.2 18S821
7.3.3 18S830
iBoot-6723.100.321~57 7.4 beta 18T5144k
iBoot-6723.100.340~223 7.4 beta 2 18T5159f
iBoot-6723.100.360~117 7.4 beta 3 18T5169f
iBoot-6723.104.1~2 7.4 beta 4 18T5183b
7.4 beta 5 18T5190a
iBoot-6723.104.1~17 7.4 beta 6 18T5193a
7.4 beta 7 18T5194a
iBoot-6723.104.1~1 7.4 RC 18T195
7.4
7.4.1 18T201
iBoot-6723.120.33.0.1~155 7.5 beta 18T5546f
iBoot-6723.120.35~196 7.5 beta 2 18T5555c
iBoot-6723.120.36~226 7.5 beta 3 18T5564a
iBoot-6723.120.36~405 7.5 RC 18T567
7.5
iBoot-6723.120.36~431 7.6 beta 18U5523d
iBoot-6723.120.36~606 7.6 beta 2 18U5533b
iBoot-6723.120.36~811 7.6 beta 3 18U5542b
iBoot-6723.140.1~43 7.6 beta 4 18U5552d
iBoot-6723.140.2~48 7.6 beta 5 18U5561a
iBoot-6723.140.2~8 7.6 RC 18U63
7.6
iBoot-6723.140.2~79 7.6.1 18U70
7.6.2 18U80
iBoot-7429.0.72.114.4~2 8.0 beta 19R5266q
iBoot-7429.0.133.0.1~52 8.0 beta 2 19R5286f
iBoot-7429.0.181.134.1~2 8.0 beta 3 19R5302f
iBoot-7429.0.207.144.1~2 8.0 beta 4 19R5312e
iBoot-7429.10.8.0.6~74 8.0 beta 5 19R5323g
iBoot-7429.10.23.0.2~85 8.0 beta 6 19R5330d
iBoot-7429.10.23.0.2~126 8.0 beta 7 19R5340a
8.0 beta 8 19R5342a
iBoot-7429.10.23.0.2~98 8.0 RC 19R346
8.0
8.0.1 19R354
iBoot-7429.40.68~13 8.1 beta 19R5541f
iBoot-7429.40.84.0.1~12 8.1 beta 2 19R5551d
iBoot-7429.40.92.0.5~8 8.1 beta 3 19R5559e
iBoot-7429.40.94~7 8.1 beta 4 19R5566a
iBoot-7429.40.94~6 8.1 RC 19R570
8.1
8.1.1 19R580
iBoot-7429.60.27.0.1~75 8.3 beta 19S5026e
iBoot-7429.60.41~14 8.3 beta 2 19S5036d
iBoot-7429.60.47~11 8.3 beta 3 19S5044c
iBoot-7429.60.47~28 8.3 beta 4 19S5050c
iBoot-7429.60.47~27 8.3 RC 19S55
8.3
iBoot-7429.80.17~42 8.4 beta 19S5525f
iBoot-7429.80.33~36 8.4 beta 2 19S5539e
iBoot-7429.80.33~39 8.4 RC 19S546
8.4
8.4.1 19S550
8.4.2 19S553
iBoot-7459.100.487~26 8.5 beta 19T5212h
iBoot-7459.100.494.0.2~67 8.5 beta 2 19T5223e
iBoot-7459.100.504.0.1~25 8.5 beta 3 19T5228d
iBoot-7459.100.509~17 8.5 beta 4 19T5238a
8.5 beta 5 19T5241a
iBoot-7459.100.509~16 8.5 RC 19T242
8.5
8.5.1 19T252
iBoot-7459.120.39.0.2~29 8.6 beta 19T5547f
iBoot-7459.120.45.0.4~106 8.6 beta 2 19T5557d
iBoot-7459.120.56.0.2~42 8.6 beta 3 19T5562f
iBoot-7459.120.62.0.3~26 8.6 beta 4 19T5570a
iBoot-7459.120.62.0.3~14 8.6 RC 19T572
8.6
iBoot-7459.140.8~29 8.7 beta 19U5027c
iBoot-7459.140.10~28 8.7 beta 2 19U5037d
iBoot-7459.140.12.0.1~17 8.7 beta 3 19U5046b
iBoot-7459.140.15~6 8.7 beta 4 19U5056c
iBoot-7459.140.15~40 8.7 beta 5 19U5063a
iBoot-7459.140.15~21 8.7 RC 19U66
8.7
8.7.1 19U67
iBoot-7459.140.15~57 8.8.1 19U512
iBoot-8419.0.42.114.2~2 9.0 beta 20R5287q
iBoot-8419.0.79.0.2~452 9.0 beta 2 20R5307h
iBoot-8419.0.113.0.1~3 9.0 beta 3 20R5316f
iBoot-8419.0.151.0.1~45 9.0 beta 4 20R5332g
iBoot-8419.0.176.0.4~142 9.0 beta 5 20R5343e
iBoot-8419.4.1~16 9.0 beta 6 20R5353a
9.0 beta 7 20R5359a
iBoot-8419.4.1~13 9.0 RC 20R361
9.0 20R361, 20R364 and 20R8363
iBoot-8419.4.1~23 9.0.1 20R8380
iBoot-8419.4.1~13 9.0.2 20R383
iBoot-8419.4.1~23 20R8391
iBoot-8419.40.90.0.2~67 9.1 beta 20S5044e
iBoot-8419.40.95.0.1~92 9.1 beta 2 20S5049d
iBoot-8419.40.102.0.2~67 9.1 beta 3 20S5055e
iBoot-8419.40.112~43 9.1 beta 4 20S5063c
9.1 beta 5 20S5072a
iBoot-8419.40.112~52 9.1 RC 20S75
9.1
iBoot-8419.60.31~15 9.2 beta 20S5331e
iBoot-8419.60.38.0.1~67 9.2 beta 2 20S5342d
iBoot-8419.60.44~54 9.2 beta 3 20S5348d
iBoot-8419.60.44~167 9.2 beta 4 20S5357b
iBoot-8419.60.44~106 9.2 RC 20S361
9.2
iBoot-8419.80.3~7 9.3 beta 20S5626e
iBoot-8419.80.4.0.1~42 9.3 beta 2 20S5637h
iBoot-8419.80.7~5 9.3 RC 20S648
9.3
9.3.1 20S664
iBoot-8422.100.610.0.1~77 9.4 beta 20T5222g
iBoot-8422.100.640.0.1~31 9.4 beta 2 20T5233d
iBoot-8422.100.645.0.1~38 9.4 beta 3 20T5239f
iBoot-8422.100.650~45 9.4 beta 4 20T5249a
iBoot-8422.100.650~30 9.4 RC 20T253
9.4
iBoot-8422.120.33~17 9.5 beta 20T5527c
iBoot-8422.120.55~12 9.5 beta 2 20T5538d
iBoot-8422.120.65~49 9.5 beta 3 20T5549e
iBoot-8422.120.65.0.1~26 9.5 beta 4 20T5560a
iBoot-8422.120.65.0.1~7 9.5 RC 20T562
9.5
9.5.1 20T570
iBoot-8422.120.65.0.1~31 9.5.2 20T571
iBoot-8422.140.18.0.2~90 9.6 beta 20U5527c
iBoot-8422.140.32~102 9.6 beta 2 20U5538d
iBoot-8422.140.46.0.1~11 9.6 beta 3 20U5548c
iBoot-8422.140.50.0.2~12 9.6 beta 4 20U5559c
iBoot-8422.140.59~49 9.6 beta 5 20U5570a
iBoot-8422.140.59~11 9.6 RC 20U73
9.6
9.6.1 20U80
9.6.2 20U90
9.6.3 20U502
iBoot-10151.0.82.0.1~708 10.0 beta 21R5275t
iBoot-10151.0.156.504.2~2 10.0 beta 2 21R5295g
iBoot-10151.0.211~15 10.0 beta 3 21R5305e
iBoot-10151.0.255.0.4~47 10.0 beta 4 21R5320i
iBoot-10151.0.305.0.1~141 10.0 beta 5 21R5332f
iBoot-10151.4.2~3 10.0 beta 6 21R5341c
iBoot-10151.4.5~3 10.0 beta 7 21R5349b
iBoot-10151.4.5~21 10.0 beta 8 21R5355a
iBoot-10151.4.5~19 10.0 RC 21R356
10.0 21R355 & 21R356
10.0.1 21R360
10.0.2 21R371
iBoot-10151.40.132~124 10.1 beta 21S5042f
iBoot-10151.40.171.0.4~139 10.1 beta 2 21S5053f
iBoot-10151.40.175~50 10.1 beta 3 21S5063a
iBoot-10151.40.175~48 10.1 RC 21S67
10.1
10.1.1 21S71
iBoot-10151.60.43~28 10.2 beta 21S5331f
iBoot-10151.60.55~36 10.2 beta 2 21S5342e
iBoot-10151.60.56~25 10.2 beta 3 21S5349e
iBoot-10151.60.59~38 10.2 beta 4 21S5358a
iBoot-10151.60.59~33 10.2 RC 21S364
10.2
iBoot-10151.80.6~237 10.3 beta 21S5625c
iBoot-10151.80.20~8 10.3 beta 2 21S5635d
iBoot-10151.80.20~84 10.3 beta 3 21S5642a
iBoot-10151.80.20~69 10.3 RC 21S644
10.3
10.3.1 21S651
iBoot-10151.100.738.0.1~308 10.4 beta 21T5185g
iBoot-10151.100.753~113 10.4 beta 2 21T5196d
iBoot-10151.100.756~172 10.4 beta 3 21T5202e
iBoot-10151.104.2~26 10.4 beta 4 21T5213a
iBoot-10151.104.2~25 10.4 RC 21T216
10.4
iBoot-10151.120.125.0.2~21 10.5 beta 21T5545f
iBoot-10151.120.136~8 10.5 beta 2 21T5555d

Exploits

Over the years, only a handful iBoot exploits have been released to the public - these include:

Additionally, there is this description of a vulnerability in iBoot, written by p0sixninja. It was originally linked in this tweet. So far, no one has written a public exploit for this vulnerability.

On 1 February 2014, iH8sn0w announced that he had found a very powerful iBoot exploit that would allow any iDevice with an A5 or A5X chip to be jailbroken, regardless of the iOS version. He used it mainly to grab AES decryption keys. However, according to this tweet from winocm, the exploit will never go public. He mentioned here that it would work on A6 and A7 chips too, but would require some minor modifications. Unfortunately, there hasn't been any progress made available to the public since then.

Commands used as an exploit vector

  • diags: Until 2.0 beta 6, the diags command would jump to code at the address provided to it. For example, if you sent diags 0x9000000, it would directly jump to the code at 0x9000000. There is now a check that only allows engineering devices to utilize this backdoor.
  • arm7_go: For firmware 2.1.1, the iPod touch (2nd generation) iBoot contains the ARM7 Go command, which could be used to run a payload on the ARM7 in the device.

OpeniBoot

OpeniBoot is an open-source re-implementation of iBoot designed so that custom kernels can be run on the iPhone/iPod/iPad. The source is available at https://github.com/iDroid-Project/OpeniBoot. It is VERY useful if you are ever reversing iBoot and do not feel like finding out what certain hardware registers are yourself. OpeniBoot currently supports all S5L8900, S5L8720, S5L8920 and S5L8930 devices.

Remappings

// N88 (3GS)
0x4FF00000 => 0x0
0x40000000 => 0xC0000000

See also