<\x> https://www.youtube.com/watch?v=hVPypI1_Img lmao so mt7621 and then ipq50xx
Mangix has joined #openwrt-devel
<Mangix> \x: reasonable
thejoker8814 is now known as Guest973
thejoker8814 has joined #openwrt-devel
Guest973 has quit [Ping timeout: 480 seconds]
Emantor has quit [Quit: ZNC - http://znc.in]
Emantor has joined #openwrt-devel
rz has quit [Ping timeout: 480 seconds]
skynet2 has quit [Ping timeout: 480 seconds]
rz has joined #openwrt-devel
tSYS has quit [Quit: *squeak*]
tSYS has joined #openwrt-devel
minimal has quit [Quit: Leaving]
rz has quit [Ping timeout: 480 seconds]
gch981213 has joined #openwrt-devel
owrt-images-builds has quit [Quit: buildmaster reconfigured: bot disconnecting]
owrt-images-builds has joined #openwrt-devel
rua has quit [Quit: Leaving.]
<KGB-2> https://tests.reproducible-builds.org/openwrt/openwrt_omap.html has been updated. (11.1% images and 100.0% packages reproducible in our current test framework.)
guidosarducci has quit [Remote host closed the connection]
guidosarducci has joined #openwrt-devel
asriel has quit [Quit: Don't drink the water. They put something in it to make you forget.]
Danct12 has quit [Quit: ZNC 1.9.0 - https://znc.in]
Danct12 has joined #openwrt-devel
nwf has joined #openwrt-devel
Mangix has quit [Quit: https://quassel-irc.org - Chat comfortably. Anywhere.]
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
rua has quit [Quit: Leaving.]
rua has joined #openwrt-devel
goliath has joined #openwrt-devel
tomn has quit [Remote host closed the connection]
jetm has quit [Quit: ZNC 1.8.1 - https://znc.in]
skynet2 has joined #openwrt-devel
goliath has quit [Quit: SIGSEGV]
fakuivan has quit [Remote host closed the connection]
fakuivan has joined #openwrt-devel
minimal has joined #openwrt-devel
tomn has joined #openwrt-devel
robimarko has joined #openwrt-devel
<Ansuel> jow would it be ok to have this section in uci wireless config?
<Ansuel> config wifi-wps-client
<Ansuel> option mac_addr '1c:99:57:51:6b:07'
<Ansuel> option ssid 'OpenWrt'
<Ansuel> option key 'bf5b5bb0d910558bae9d9d2db5b68c04cf2590ca654c61a32cccd14e93cff76e'
<Ansuel> hostapd script will parse each section of this type and will fill the psk file accordingly
<Ansuel> (at run time it's filled by hostapd directly)
<Ansuel> (these are per device psk)
<Ansuel> maybe wifi-device-psk would be a better type?
<Ansuel> nbd would love some feedback about this too
<nbd> there's an existing wifi-station section type already
<nbd> used for filling the psk file
<nbd> maybe just reuse that one?
<Ansuel> dod you have a quick reference for that
<Ansuel> it was to fill vlan right?
<nbd> it can fill vlan, but it can also just set a key
<Ansuel> this?
<Ansuel> entry created from wps are in this format
<Ansuel> wps=1 1c:99:57:51:6b:07 1b87b76a70785034a078bb42c0ec93deab0e30a223ff453fea7b3c3aa0e1d6f5
<Ansuel> not described in wiki :(
<nbd> config wifi-station; option iface <vif_section_name>; option mac 1c:99:57:51:6b:07; option key 1b87b76a70785034a078bb42c0ec93deab0e30a223ff453fea7b3c3aa0e1d6f5
<Ansuel> good
<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
<nbd> ok
goliath has joined #openwrt-devel
<owrt-images-builds> Build [#71](https://buildbot.openwrt.org/images/#/builders/238/builds/71) of `master_d1/generic` completed successfully.
mrnuke has quit [Ping timeout: 480 seconds]
<Ansuel> nbd can you check the POC ? https://github.com/openwrt/openwrt/pull/15155
<nbd> i will try to come up with a ucode variant soon
<nbd> and give it to you for testing
<Ansuel> if you want I can try to convert
minimal has quit [Quit: Leaving]
tom- has quit [Quit: WeeChat 4.2.1]
robimarko has quit [Quit: https://quassel-irc.org - Chat comfortably. Anywhere.]
gch981213 has quit [Quit: https://quassel-irc.org - Chat comfortably. Anywhere.]