mirror of
https://github.com/AsahiLinux/m1n1
synced 2024-11-10 09:44:13 +00:00
firmware: Add 13.3
This has the same iBoot version as 13.3.1, so firmwares probably did not change. Signed-off-by: Asahi Lina <lina@asahilina.net>
This commit is contained in:
parent
1ae27426b3
commit
8f6e13b170
4 changed files with 4 additions and 2 deletions
|
@ -795,7 +795,7 @@ class Ver(Subconstruct):
|
|||
"G": os.environ.get("AGX_GPU", "G13")}
|
||||
|
||||
MATRIX = {
|
||||
"V": ["V12_1", "V12_3", "V12_4", "V13_0B4", "V13_0B5", "V13_0B6", "V13_2"],
|
||||
"V": ["V12_1", "V12_3", "V12_4", "V13_0B4", "V13_0B5", "V13_0B6", "V13_2", "V13_3"],
|
||||
"G": ["G13", "G14"],
|
||||
}
|
||||
|
||||
|
|
|
@ -33,6 +33,7 @@ VERSION_MAP = {
|
|||
"iBoot-8419.41.10": "V13_0",
|
||||
"iBoot-8419.60.44": "V13_1",
|
||||
"iBoot-8419.80.7": "V13_2",
|
||||
"iBoot-8422.100.650": "V13_3",
|
||||
}
|
||||
|
||||
class ProxyUtils(Reloadable):
|
||||
|
|
|
@ -26,7 +26,7 @@ const struct fw_version_info fw_versions[NUM_FW_VERSIONS] = {
|
|||
[V13_0] = {V13_0, "13.0", {13, 0, 0}, 3, "iBoot-8419.41.10"},
|
||||
[V13_1] = {V13_1, "13.1", {13, 1, 0}, 3, "iBoot-8419.60.44"},
|
||||
[V13_2] = {V13_2, "13.2", {13, 2, 0}, 3, "iBoot-8419.80.7"},
|
||||
|
||||
[V13_3] = {V13_3, "13.3", {13, 3, 0}, 3, "iBoot-8422.100.650"},
|
||||
};
|
||||
|
||||
int firmware_set_fdt(void *fdt, int node, const char *prop, const struct fw_version_info *ver)
|
||||
|
|
|
@ -18,6 +18,7 @@ enum fw_version {
|
|||
V13_0,
|
||||
V13_1,
|
||||
V13_2,
|
||||
V13_3,
|
||||
NUM_FW_VERSIONS,
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue