Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[chores] Updated hardware definitions #283

Open
wants to merge 5 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
52 changes: 40 additions & 12 deletions openwisp_firmware_upgrader/hardware.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,13 @@
'ipq40xx-mikrotik-mikrotik_wap-ac-squashfs-sysupgrade.bin',
{'label': 'MikroTik wAP ac', 'boards': ('MikroTik wAP ac',)},
),
(
'ramips-mt7621-mikrotik_routerboard-m33g-squashfs-sysupgrade.bin',
{
'label': 'MikroTik RouterBOARD M33G',
'boards': ('MikroTik RouterBOARD M33G',),
},
),
(
'brcm2708-bcm2709-rpi-2-ext4-sysupgrade.img.gz',
{
Expand Down Expand Up @@ -158,29 +165,29 @@
(
'ar71xx-generic-cpe210-220-v1-squashfs-sysupgrade.bin',
{
'label': 'TP-LINK CPE210 v3 (OpenWrt 19.07 and earlier)',
'boards': ('TP-LINK CPE210 v1', 'TP-LINK CPE220 v1'),
'label': 'TP-Link CPE210 v1 (OpenWrt 19.07 and earlier)',
'boards': ('TP-Link CPE210 v1', 'TP-LINK CPE220 v1'),
},
),
(
'ath79-generic-tplink_cpe210-v2-squashfs-sysupgrade.bin',
{
'label': 'TP-LINK CPE210 v2 (OpenWrt 19.07 and later)',
'boards': ('TP-LINK CPE210 v2',),
'label': 'TP-Link CPE210 v2',
'boards': ('TP-Link CPE210 v2',),
},
),
(
'ath79-generic-tplink_cpe210-v3-squashfs-sysupgrade.bin',
{
'label': 'TP-LINK CPE210 v3 (OpenWrt 19.07 and later)',
'boards': ('TP-LINK CPE210 v3',),
'label': 'TP-Link CPE210 v3',
'boards': ('TP-Link CPE210 v3',),
},
),
(
'ath79-generic-tplink_cpe510-v3-squashfs-sysupgrade.bin',
{
'label': 'TP-LINK CPE510 v3 (OpenWrt 19.07 and later)',
'boards': ('TP-LINK CPE510 v3',),
'label': 'TP-Link CPE510 v3',
'boards': ('TP-Link CPE510 v3',),
},
),
(
Expand Down Expand Up @@ -268,7 +275,7 @@
},
),
(
'octeon-erlite-squashfs-sysupgrade.tar',
'octeon-generic-ubnt_edgerouter-lite-squashfs-sysupgrade.tar',
{
'label': 'Ubiquiti EdgeRouter Lite',
'boards': ('Ubiquiti EdgeRouter Lite',),
Expand All @@ -290,6 +297,13 @@
'boards': ('Ubiquiti Nanostation Loco M',),
},
),
(
'ath79-tiny-ubnt_nanostation-loco-m-squashfs-sysupgrade.bin',
{
'label': 'Ubiquiti Nanostation Loco M (OpenWrt, ath79-tiny)',
'boards': ('Ubiquiti Nanostation Loco M (XM)',),
},
),
# Nanostation Loco M XW ATH79
(
'ath79-generic-ubnt_nanostation-loco-m-xw-squashfs-sysupgrade.bin',
Expand Down Expand Up @@ -339,6 +353,13 @@
'boards': ('Ubiquiti Nanostation M',),
},
),
(
'ath79-tiny-ubnt_nanostation-m-squashfs-sysupgrade.bin',
{
'label': 'Ubiquiti Nanostation M (OpenWrt ath79-tiny)',
'boards': ('Ubiquiti Nanostation M (XM)',),
},
),
# Bullet XW AR71XX
(
'ar71xx-generic-ubnt-bullet-m-xw-squashfs-sysupgrade.bin',
Expand Down Expand Up @@ -367,9 +388,16 @@
'boards': ('Ubiquiti Picostation M',),
},
),
(
'ath79-tiny-ubnt_picostation-m-squashfs-sysupgrade.bin',
{
'label': 'Ubiquiti Picostation M (OpenWrt, ath79-tiny)',
'boards': ('Picostation M (XM)',),
},
),
# Ubiquiti Unifi
(
'ath79-generic-ubnt_unifi-squashfs-sysupgrade.bin',
'ath79-generic-ubnt_unifi-ap-squashfs-sysupgrade.bin',
{
'label': 'Ubiquiti UniFi (OpenWRT 19.07 and later)',
'boards': ('Ubiquiti UniFi', 'Ubiquiti UniFi AP'),
Expand Down Expand Up @@ -538,14 +566,14 @@
},
),
(
'x86-generic-combined-squashfs.img.gz',
'x86-generic-generic-squashfs-combined.img.gz',
{
'label': 'Generic x86/32 bit',
'boards': ('x86',),
},
),
(
'x86-geode-combined-squashfs.img.gz',
'x86-geode-generic-squashfs-combined.img.gz',
{
'label': 'x86 Geode(TM) Integrated Processor by AMD',
'boards': ('Geode(TM) Integrated Processor by AMD PCS', 'Alix 2D2'),
Expand Down
Loading