firmware: Add 13.6.2 and 14.1.1 firmware versions

Signed-off-by: Janne Grunau <j@jannau.net>
This commit is contained in:
Janne Grunau 2023-11-15 00:02:11 +01:00 committed by Hector Martin
parent a925356096
commit 630c62785a
2 changed files with 4 additions and 0 deletions

View file

@ -36,6 +36,8 @@ const struct fw_version_info fw_versions[NUM_FW_VERSIONS] = {
[V13_3] = {V13_3, "13.3", {13, 3, 0}, 3, "iBoot-8422.100.650"},
[V13_5B4] = {V13_5B4, "13.5 beta4", {13, 4, 99, 4}, 4, "iBoot-8422.140.50.0.2"},
[V13_5] = {V13_5, "13.5", {13, 5, 0}, 3, "iBoot-8422.141.2"},
[V13_6_2] = {V13_6_2, "13.6.2", {13, 6, 2}, 3, "iBoot-8422.141.2.700.1"},
[V14_1_1] = {V14_1_1, "14.1.1", {14, 1, 1}, 3, "iBoot-10151.41.12"},
// clang-format on
};

View file

@ -21,6 +21,8 @@ enum fw_version {
V13_3,
V13_5B4,
V13_5,
V13_6_2,
V14_1_1,
NUM_FW_VERSIONS,
};