Skip to content

Commit eeb43a6

Browse files
authored
Merge pull request #78 from mtelvers/dec-lcu
dec-lcu
2 parents a57c4da + c40b253 commit eeb43a6

File tree

2 files changed

+11
-2
lines changed

2 files changed

+11
-2
lines changed

src-opam/dockerfile_distro.ml

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,14 +27,22 @@ type win10_release = [
2727

2828
type win10_lcu = [
2929
| `LCU
30-
| `LCU20211109 | `LCU20211012 | `LCU20210914 | `LCU20210810 | `LCU20210713 | `LCU20210608
30+
| `LCU20211214 | `LCU20211109 | `LCU20211012 | `LCU20210914 | `LCU20210810 | `LCU20210713 | `LCU20210608
3131
] [@@deriving sexp]
3232

33-
let win10_current_lcu = `LCU20211109
33+
let win10_current_lcu = `LCU20211214
3434

3535
type win10_revision = win10_release * win10_lcu option [@@deriving sexp]
3636

3737
let win10_lcus : ('a * int * win10_release list) list = [
38+
39+
`LCU20211214, 5008223, [`Ltsc2022];
40+
`LCU20211214, 5008212, [`V2004; `V20H2; `V21H1];
41+
`LCU20211214, 5008206, [`V1909];
42+
`LCU20211214, 5008218, [`V1809; `Ltsc2019];
43+
`LCU20211214, 5008207, [`V1607; `Ltsc2016];
44+
`LCU20211214, 5008230, [`V1507; `Ltsc2015];
45+
3846
`LCU20211109, 5007205, [`Ltsc2022];
3947
`LCU20211109, 5007186, [`V2004; `V20H2; `V21H1];
4048
`LCU20211109, 5007189, [`V1909];

src-opam/dockerfile_distro.mli

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ type win10_release = [
3232

3333
type win10_lcu = [
3434
| `LCU
35+
| `LCU20211214
3536
| `LCU20211109
3637
| `LCU20211012
3738
| `LCU20210914

0 commit comments

Comments
 (0)