Skip to content

Commit dfecc20

Browse files
committed
firmware: Add 13.5b4 and 13.5 versions
Signed-off-by: Asahi Lina <[email protected]>
1 parent 538693a commit dfecc20

3 files changed

Lines changed: 7 additions & 0 deletions

File tree

src/firmware.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,8 @@ const struct fw_version_info fw_versions[NUM_FW_VERSIONS] = {
2727
[V13_1] = {V13_1, "13.1", {13, 1, 0}, 3, "iBoot-8419.60.44"},
2828
[V13_2] = {V13_2, "13.2", {13, 2, 0}, 3, "iBoot-8419.80.7"},
2929
[V13_3] = {V13_3, "13.3", {13, 3, 0}, 3, "iBoot-8422.100.650"},
30+
[V13_5B4] = {V13_5B4, "13.5 beta4", {13, 4, 99, 4}, 4, "iBoot-8422.140.50.0.2"},
31+
[V13_5] = {V13_5, "13.5", {13, 5, 0}, 3, "iBoot-8422.141.2"},
3032
};
3133

3234
int firmware_set_fdt(void *fdt, int node, const char *prop, const struct fw_version_info *ver)

src/firmware.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,8 @@ enum fw_version {
1919
V13_1,
2020
V13_2,
2121
V13_3,
22+
V13_5B4,
23+
V13_5,
2224
NUM_FW_VERSIONS,
2325
};
2426

src/kboot.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1275,6 +1275,9 @@ static int dt_set_dcp_firmware(const char *alias)
12751275
case V12_4:
12761276
compat = &fw_versions[V12_3];
12771277
break;
1278+
case V13_5B4:
1279+
compat = &fw_versions[V13_3];
1280+
break;
12781281
default:
12791282
compat = &os_firmware;
12801283
break;

0 commit comments

Comments
 (0)