Skip to content
Snippets Groups Projects
Select Git revision
  • 68e8d3257076def393d75d988588e4c9d01eb7d3
  • experimental
  • master
  • v2021.1.2-ffs
  • v2021.1.1-ffs
  • nrb/gluon-master-cpe510
  • v2021.1-ffs
  • v2020.2.3-ffs
  • nrbffs/fastd-remove-delay
  • v2020.2.2-ffs
  • v2020.2.1-ffs
  • v2020.2-ffs
  • v2020.2.x
  • v2020.1.3-ffs
  • v2020.1.1-ffs
  • v2020.1-ffs
  • v2019.1.2-ffs
  • v2019.1.1-ffs
  • nrb/test-radv-filter
  • v2019.1-ffs
  • nrbffs/netgear-ex6120
  • v2021.1.2-ffs0.2
  • v2021.1.2-ffs0.1
  • v2021.1.1-ffs0.4
  • v2021.1.1-ffs0.3
  • v2021.1.1-ffs0.2
  • v2021.1.1-ffs0.1
  • v2021.1-ffs0.1
  • v2020.2.3-ffs0.3
  • v2020.2.3-ffs0.2
  • v2020.2.3-ffs0.1
  • v2020.2.2-ffs0.1
  • v2020.2.1-ffs0.1
  • v2020.2-ffs0.1
  • v2020.2
  • v2020.2.x-ffs0.1
  • v2020.1.3-ffs0.1
  • v2020.1.1-ffs0.1
  • v2020.1-ffs0.1
  • v2019.1.2-ffs0.1
  • v2019.1.1-ffs0.1
41 results

upgrade.html

Blame
  • Forked from firmware / FFS Gluon
    Source project has a limited visibility.
    check_site.lua 936 B
    need_string('regdom')
    
    for _, config in ipairs({'wifi24', 'wifi5'}) do
       need_number(config .. '.channel')
       need_string(config .. '.htmode')
    
       if need_table(config .. '.ap', nil, false) then
          need_string(config .. '.ap.ssid')
          need_boolean(config .. '.ap.disabled', false)
       end
    
       if need_table(config .. '.ibss', nil, false) then
          need_string(config .. '.ibss.ssid')
          need_string_match(config .. '.ibss.bssid', '^%x[02468aAcCeE]:%x%x:%x%x:%x%x:%x%x:%x%x$')
          need_number(config .. '.ibss.mcast_rate', false)
          need_number(config .. '.ibss.vlan', false)
          need_boolean(config .. '.ibss.disabled', false)
       end
    
       if need_table(config .. '.mesh', nil, false) then
          need_string(config .. '.mesh.id')
          need_number(config .. '.mesh.mcast_rate', false)
          need_boolean(config .. '.mesh.disabled', false)
       end
    end
    
    need_boolean('mesh_on_wan', false)
    need_boolean('mesh_on_lan', false)