fakuivan has quit [Remote host closed the connection]
fakuivan has joined #openwrt-devel
<Ansuel>
\x i think it's more of ipq60xx or ipq807x
<Ansuel>
ipq50xx targets meme 128mb of ram that thing has 512 mb
Mangix has joined #openwrt-devel
<\x>
Ansuel: ax1800 one is mt7621a, ax5400 one is ipq50xx
<\x>
ipq50xx also has same memory profiles as ipq807x/60xx so 256, 512 and 1GB
zarzarzar has joined #openwrt-devel
robimarko has joined #openwrt-devel
torv has quit [Remote host closed the connection]
torv has joined #openwrt-devel
robimarko has quit [Remote host closed the connection]
<Namidairo>
they have a separate bbs for the minions products and half the questions/answers require a password or login
rua has joined #openwrt-devel
<Namidairo>
I'm seeing quite a few "my wan dropped to 100mbit" so either that included ethernet cable (flat) is terrible or they have issues with their switch driver
<stintel>
flat ethernet cable sounds like the first thing to replace
<nbd>
adding those entries and doing reload_config should work without unintended wifi interface restarts
<nbd>
last time i tested it, hostapd could dynamically reload the psk file just fine
<Ansuel>
for wps the entry is added automatically (if we fix the problem of giving the file network ownership)
<Ansuel>
the entry is needed only on restart since the wps entry are never saved
<Ansuel>
(adding the notification support in hostapd ubus)
<nbd>
please route it through ucode
noahm has quit [Quit: rebooting, brb...]
<Ansuel>
eh wanted some hint on that... i'm currently using something like
<Ansuel>
ubus -S -t 30 listen wps_station_credentials | while read creds; do
<Ansuel>
and ubus_send_event(ctx, "wps_station_credentials", b.head);
<Ansuel>
maybe there is a better way with ucode and subscribe ?
<Ansuel>
the returned json is { "wps_station_credentials": {"ifname":"phy1-ap0","encryption":"psk2","ssid":"OpenWrt","mac_addr":"1c:99:57:51:6b:07","key":"bf5b5bb0d910558bae9d9d2db5b68c04cf2590ca654c61a32cccd14e93cff76e"} }
noahm has joined #openwrt-devel
<nbd>
you could also have a ucode script which creates an ubus object that hostapd can call
<nbd>
i plan on eventually removing ubus.c from hostapd entirely
<nbd>
so it would be nice to not add more stuff to it
<Ansuel>
mhhh i think it's better to create a working POC and talk on improving it there