Skip to content

Commit

Permalink
devices: add group with devices with only 6M flash
Browse files Browse the repository at this point in the history
Currently, 6M flash is not sufficient to build the default firmware on some
communities. This allows filtering for those devices.
  • Loading branch information
grische committed Nov 28, 2023
1 parent 54bc523 commit 01074d5
Showing 1 changed file with 14 additions and 4 deletions.
18 changes: 14 additions & 4 deletions devices.js
Original file line number Diff line number Diff line change
Expand Up @@ -82,8 +82,7 @@ var devices_recommended = {
"DAP-2660": "d-link-dap-2660",
"DAP-X1860": "d-link-dap-x1860",
"DGS-1210-10P": "d-link_dgs-1210-10p",
"DIR-505": {"d-link-dir-505-rev": "", "d-link-dir-505": ""},
"DIR-825": {"d-link-dir-825-rev": "", "d-link-dir825b1": "b1"},
"DIR-505": { "d-link-dir-505-rev": "", "d-link-dir-505": "" },
"DIR-860L": "d-link-dir-860l",
},

Expand Down Expand Up @@ -318,8 +317,6 @@ var devices_recommended = {
"CPE710": "tp-link-cpe710",
"EAP225-Outdoor": "tp-link-eap225-outdoor",
"EAP615-Wall": "tp-link-eap615-wall",
"RE200": "tp-link-re200",
"RE305": "tp-link-re305",
"RE500": "tp-link-re500",
"RE650": "tp-link-re650",
"TD-W8970": "tp-link-td-w8970",
Expand Down Expand Up @@ -565,6 +562,18 @@ var devices_16_32 = {
},
}

var devices_6_usable = {
"D-Link": {
"DIR-825": { "d-link-dir-825-rev": "", "d-link-dir825b1": "b1" },
},
"TP-Link": {
"RE200": "tp-link-re200",
"RE305": "tp-link-re305",
"RE355": "tp-link-re355",
"RE450": "tp-link-re450",
},
}

var vendormodels = {
"recommended": devices_recommended,
"ath10k_lowmem": devices_ath10k_lowmem,
Expand All @@ -573,6 +582,7 @@ var vendormodels = {
"4_32": devices_4_32,
"8_32": devices_8_32,
"16_32": devices_16_32,
"6_usable": devices_6_usable,
}

var devices_info = {
Expand Down

0 comments on commit 01074d5

Please sign in to comment.