diff options
| author | Daniel Roethlisberger <[email protected]> | 2018-03-11 23:09:13 +0100 |
|---|---|---|
| committer | Daniel Roethlisberger <[email protected]> | 2018-03-11 23:09:13 +0100 |
| commit | 3e407d4d6e4abf0daa215a653549c70fff4e9d40 (patch) | |
| tree | 7e9b1f8fb495fff9e8882cb2f66b71365421a06a | |
| parent | 508a89b58a0f9bdd586adb55357fd00ff60ca104 (diff) | |
Add names of OS X releases
| -rw-r--r-- | xnu/GNUmakefile | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/xnu/GNUmakefile b/xnu/GNUmakefile index b9651b7..dce8a7a 100644 --- a/xnu/GNUmakefile +++ b/xnu/GNUmakefile @@ -8,6 +8,8 @@ WGET?= wget # corresponding source code has not been published by Apple yet. # If there were no API or ABI changes to the pf ioctl interface, # falling back to the latest published version should work fine. + +# Mac OS X Snow Leopard XNU_RELS+= 1456.1.26 # 10.6 XNU_RELS+= 1456.1.26 # 10.6.1 XNU_RELS+= 1486.2.11 # 10.6.2 @@ -17,30 +19,40 @@ XNU_RELS+= 1504.9.17 # 10.6.5 XNU_RELS+= 1504.9.26 # 10.6.6 XNU_RELS+= 1504.9.37 # 10.6.7 XNU_RELS+= 1504.15.3 # 10.6.8 + +# Mac OS X Lion XNU_RELS+= 1699.22.73 # 10.7 XNU_RELS+= 1699.22.81 # 10.7.1 XNU_RELS+= 1699.24.8 # 10.7.2 XNU_RELS+= 1699.24.23 # 10.7.3 XNU_RELS+= 1699.26.8 # 10.7.4 XNU_RELS+= 1699.32.7 # 10.7.5 + +# OS X Mountain Lion XNU_RELS+= 2050.7.9 # 10.8 XNU_RELS+= 2050.9.2 # 10.8.1 XNU_RELS+= 2050.18.24 # 10.8.2 XNU_RELS+= 2050.22.13 # 10.8.3 XNU_RELS+= 2050.24.15 # 10.8.4 XNU_RELS+= 2050.48.11 # 10.8.5 + +# OS X Mavericks XNU_RELS+= 2422.1.72 # 10.9 XNU_RELS+= 2422.1.72 # 10.9.1 XNU_RELS+= 2422.90.20 # 10.9.2 XNU_RELS+= 2422.100.13 # 10.9.3 XNU_RELS+= 2422.110.17 # 10.9.4 XNU_RELS+= 2422.115.4 # 10.9.5 + +# OS X Yosemite XNU_RELS+= 2782.1.97 # 10.10 XNU_RELS+= 2782.1.97 # 10.10.1 XNU_RELS+= 2782.10.72 # 10.10.2 XNU_RELS+= 2782.20.48 # 10.10.3 XNU_RELS+= 2782.30.5 # 10.10.4 XNU_RELS+= 2782.40.9 # 10.10.5 + +# OS X El Capitan XNU_RELS+= 3247.1.106 # 10.11 XNU_RELS+= 3247.10.11 # 10.11.1 XNU_RELS+= 3248.20.55 # 10.11.2 @@ -48,6 +60,8 @@ XNU_RELS+= 3248.30.4 # 10.11.3 XNU_RELS+= 3248.40.184 # 10.11.4 XNU_RELS+= 3248.50.21 # 10.11.5 XNU_RELS+= 3248.60.10 # 10.11.6 + +# macOS Sierra XNU_RELS+= 3789.1.32 # 10.12 XNU_RELS+= 3789.21.4 # 10.12.1 XNU_RELS+= 3789.31.2 # 10.12.2 @@ -55,6 +69,8 @@ XNU_RELS+= 3789.41.3 # 10.12.3 XNU_RELS+= 3789.51.2 # 10.12.4 XNU_RELS+= 3789.60.24 # 10.12.5 XNU_RELS+= 3789.70.16 # 10.12.6 + +# macOS High Sierra XNU_RELS+= 4570.1.46 # 10.13 # defaults |
