ipq40xx-mikrotik: add support for mikrotik-sxtsq-5-ac (#2573)

Co-Authored-By: J. Burfeind <github@aiyionpri.me>

Co-authored-by: Tim-Niklas Koch <info@tnkoch.de>
Co-authored-by: J. Burfeind <github@aiyionpri.me>
This commit is contained in:
timniklas 2022-07-06 22:18:40 +02:00 committed by GitHub
parent 758d869dd1
commit 39f9bf7ac3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 20 additions and 0 deletions

View File

@ -196,6 +196,14 @@ ipq40xx-generic
- NBG6617
- WRE6606 [#device-class-tiny]_
ipq40xx-mikrotik
----------------
* Mikrotik
- DISC Lite5 ac (RBDiscG-5acD)
- SXTsq 5 ac (RBSXTsqG-5acD)
ipq806x-generic
---------------

View File

@ -53,6 +53,11 @@ function M.is_outdoor_device()
'plasmacloud,pa1200',
}) then
return true
elseif M.match('ipq40xx', 'mikrotik', {
'mikrotik,sxtsq-5-ac',
}) then
return true
end
return false

6
targets/ipq40xx-mikrotik Normal file
View File

@ -0,0 +1,6 @@
include 'mikrotik.inc'
device('mikrotik-sxtsq-5-ac-rbsxtsqg-5acd', 'mikrotik_sxtsq-5-ac', {
factory = false,
aliases = {'mikrotik-discg-5acd'},
})

View File

@ -4,6 +4,7 @@ $(eval $(call GluonTarget,ath79,mikrotik))
$(eval $(call GluonTarget,bcm27xx,bcm2708))
$(eval $(call GluonTarget,bcm27xx,bcm2709))
$(eval $(call GluonTarget,ipq40xx,generic))
$(eval $(call GluonTarget,ipq40xx,mikrotik))
$(eval $(call GluonTarget,ipq806x,generic))
$(eval $(call GluonTarget,lantiq,xrx200))
$(eval $(call GluonTarget,lantiq,xway))