bluew has joined #openwrt-devel
schwicht has joined #openwrt-devel
schwicht has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
danitool has quit [Quit: Cubum autem in duos cubos, aut quadratoquadratum in duos quadratoquadratos]
bluew has quit [Remote host closed the connection]
bluew has joined #openwrt-devel
dgcampea is now known as Guest9715
dgcampea has joined #openwrt-devel
Guest9715 has quit [Remote host closed the connection]
blocktrron1 has quit [Quit: WeeChat 3.4]
blocktrron has joined #openwrt-devel
tSYS has quit [Quit: *squeak*]
tSYS has joined #openwrt-devel
Tapper has quit [Quit: Tapper]
dangole has quit [Ping timeout: 480 seconds]
noltari has quit [Quit: Bye ~ Happy Hacking!]
noltari has joined #openwrt-devel
valku has quit [Quit: valku]
valku has joined #openwrt-devel
valku has quit []
felix has quit []
felix has joined #openwrt-devel
<djfe> hauke: I see thanks for explaining and retesting, someone at our Freifunk Community owns a td-w8970b v1 and wanted to flash it. I'll take a look if I can get the patch working. Without the patch the device runs fine, right?
<djfe> something else: If a Radio runs on the mmc (bus?) and the address switches randomly between mmc0 and mmc1 on reboot, what can be done? I thought about wifi path migration but that's only a workaround. 21 is working fine, so my guess is either the switch to kernel 5.10 or 5.15 introduced this https://github.com/openwrt/openwrt/issues/12237
sorinello has quit [Quit: Leaving]
sorinello has joined #openwrt-devel
<nick[m]12> hauke: nice
srslypascal is now known as Guest9737
srslypascal has joined #openwrt-devel
Guest9737 has quit [Ping timeout: 480 seconds]
sorinello has quit [Quit: Leaving]
sorinello has joined #openwrt-devel
srslypascal is now known as Guest9738
srslypascal has joined #openwrt-devel
Guest9738 has quit [Ping timeout: 480 seconds]
goliath has joined #openwrt-devel
soxrok2212 has joined #openwrt-devel
dether1 has joined #openwrt-devel
Mangix_ has joined #openwrt-devel
noahm_ has joined #openwrt-devel
MAbeeTT4 has quit [resistance.oftc.net weber.oftc.net]
digitalcircuit has quit [resistance.oftc.net weber.oftc.net]
ptudor_ has quit [resistance.oftc.net weber.oftc.net]
Mangix has quit [resistance.oftc.net weber.oftc.net]
hanetzer1 has quit [resistance.oftc.net weber.oftc.net]
noahm has quit [resistance.oftc.net weber.oftc.net]
johnf has quit [resistance.oftc.net weber.oftc.net]
aparcar has quit [resistance.oftc.net weber.oftc.net]
soxrok2212_ has quit [resistance.oftc.net weber.oftc.net]
dether has quit [resistance.oftc.net weber.oftc.net]
lmore377 has quit [resistance.oftc.net weber.oftc.net]
matoro has quit [resistance.oftc.net weber.oftc.net]
swalker has quit [resistance.oftc.net weber.oftc.net]
nwf has quit [resistance.oftc.net weber.oftc.net]
arnd has quit [resistance.oftc.net weber.oftc.net]
sauce has quit [resistance.oftc.net weber.oftc.net]
zx2c4 has quit [resistance.oftc.net weber.oftc.net]
kerneltoast has quit [resistance.oftc.net weber.oftc.net]
Vaughn has quit [resistance.oftc.net weber.oftc.net]
Spr0cket has quit [resistance.oftc.net weber.oftc.net]
hell__ has quit [resistance.oftc.net weber.oftc.net]
agb has quit [resistance.oftc.net weber.oftc.net]
swalker_ has joined #openwrt-devel
nwf has joined #openwrt-devel
MAbeeTT4 has joined #openwrt-devel
hanetzer1 has joined #openwrt-devel
digitalcircuit has joined #openwrt-devel
arnd has joined #openwrt-devel
ptudor_ has joined #openwrt-devel
johnf has joined #openwrt-devel
aparcar has joined #openwrt-devel
matoro has joined #openwrt-devel
zx2c4 has joined #openwrt-devel
sauce has joined #openwrt-devel
kerneltoast has joined #openwrt-devel
hell__ has joined #openwrt-devel
lmore377 has joined #openwrt-devel
Spr0cket has joined #openwrt-devel
Vaughn has joined #openwrt-devel
agb has joined #openwrt-devel
tidalf has joined #openwrt-devel
tidalf_ has quit [Ping timeout: 480 seconds]
tidalf_ has joined #openwrt-devel
tidalf has quit [Ping timeout: 480 seconds]
robimarko has joined #openwrt-devel
tidalf has joined #openwrt-devel
tidalf_ has quit [Ping timeout: 480 seconds]
<oliv3r[m]> <hauke> "oliv3r: the 7z sources are not..." <- yeah, it's nasty :( but what can we do :(
cbeznea has joined #openwrt-devel
<jow> Znevna: you can use the `graph` object to inspect the current rrd data tree and decide which definition to use based on that, see this ocmmit as example: https://github.com/openwrt/luci/commit/9f321b831f41b73554819ac54e308dfa3677ab45
<Znevna> doesn't that encounter the same issue with files looking like this? power-watt-ups.rrd
<jow> var types = graph.dataTypes(host, plugin, plugin_instance);
<jow> if (types.indexOf('watt-ups')) { return definition_with_watt_ups; } else { return original_definition; }
<jow> (indexOf(...) > -1) actually
<Znevna> ok I'll try messing with it later :P thanks
<jow> so the idea is to look which files are there, then return proper definitions based on that
<jow> and it probably shouldn't be if/else but a series of if() guards
<jow> since theoretically both power-ups and power-watt-ups could exist at the same time
<jow> or neither
<jow> ah now, sorry
<jow> just looked at the .c source you linked
<jow> it's either -watt-ups or -ups
<Znevna> I have them both for some reason
<Znevna> -ups is is VA and -watt-ups is in W
<jow> yeah I misinterpreted the if/else if in the .c source
<jow> it's part of a loop iterating over all gauges
<jow> so it can be both after all
<Znevna> but the current nut.js can't handle -ups and -watt-ups beeing a part of power
<Znevna> because of that extra - I thik
bluew has quit [Ping timeout: 480 seconds]
<Znevna> think*
<jow> can you pastebin the output of `find /tmp/rrd` ?
<jow> just want to see how it's structured
<Znevna> originally like this: https://paste.debian.net/plainh/cd9fd06e
<Znevna> but I've patched the collectd nut.c https://paste.debian.net/plainh/e6147723
<Znevna> and now it outputs power-watt_ups.rrd :P
<jow> what unit is the non-watt char in?
<jow> *chart
<Znevna> VA ?
<jow> thanks
<jow> that would be my approach (without any collectd modifications)
<Znevna> I see power: [ "watt-ups"] ... options: { power_ups .. will that work?
<jow> ah right. Well it would still work, just the options would not be applied
<jow> they option key should be `power_watt_ups`
<Znevna> yeah that's where it doesn't work
<Znevna> :P
<jow> define not work?
<jow> broken picture symbol or chart label with slashes in it?
<jow> ah wait, I see. The `watt-ups` is not a data type but a data isntance
<jow> the type is `power` with two instances `ups` and `watt-ups`
<Znevna> sorry busy with work too
<Znevna> I'll try that !
<jow> yeah np. just drop me a note if it works, I'll push it then
dangole has joined #openwrt-devel
mrkiko has joined #openwrt-devel
tidalf_ has joined #openwrt-devel
tidalf has quit [Ping timeout: 480 seconds]
Misanthropos has quit [Quit: ZNC 1.8.2+deb2+b1 - https://znc.in]
lmore377 has quit [Remote host closed the connection]
<kabel> anyone has experience with rwt88 / rtw89 wifi cards on openwrt? are the drivers stable? do they work nicely? are they fast?
lmore377 has joined #openwrt-devel
<Znevna> jow: it seems to work fine! is there any way we can check for missing .rrd files and don't try to generate graphs for those missing .rrd files?
<Znevna> and thank you! :D
<ukleinek> kabel: I don't know about the state in openwrt, but a colleage recently worked on the driver upstream
<ukleinek> kabel: and re: "do they work nicely?": No, they are usb wifi adapters
<jow> Znevna: yeah, all those other `definitions.push()` calls basically have to be wrapped in an if() condition
cbeznea has quit [Quit: Leaving.]
<Znevna> oooh
<Znevna> now I see that if watt-ups is missing, it doesn't show the broken graph :D nice!
<Znevna> so that means that I can add everything that collectd can generate and it will only show what that particular UPS supports
<PaulFertser> rtw89 too.
<PaulFertser> kabel: in general you should expect any upstream Linux driver to work in OpenWrt the same as it works in any other distro.
cbeznea has joined #openwrt-devel
<ukleinek> PaulFertser: I didn't recheck, but then there should be usb variants of that chip.
<PaulFertser> But not for rtw89, at least not upstream.
<ukleinek> FTR: $(git grep -Eoh 'module_[a-z]*_driver' drivers/net/wireless/realtek/rtw88 | sort | uniq -c) -> 4x usb + 4x pci
<PaulFertser> kabel: if you're really talking about USB, this community gathers everything essential: https://github.com/morrownr/USB-WiFi
<PaulFertser> ukleinek: you're counting different drivers though, not the quantity of devices supported ;)
<ukleinek> PaulFertser: yeah, I'm aware of that. It's the usual "Don't believe a statistic you didn't forge yourself'
<PaulFertser> :D
<jow> Znevna: can you give this one a try? It adds runtime checking for all nut graphs
rmilecki has joined #openwrt-devel
xback has joined #openwrt-devel
<Znevna> jow: it looks fine, thank you!
<jow> Znevna: great, I'll push it then
<Znevna> it even solves the issue mentioned on the forum, if one of the voltages is missing (input or output) the graph still shows for the remaining voltage definition :P
<Znevna> this was bugging me for a while, thank you again
<aparcar[m]> zx2c4: do you consider busybox random implementation as "secure"? https://github.com/brgl/busybox/blob/abbf17abccbf832365d9acf1c280369ba7d5f8b2/shell/random.h#L28
Danct12 has joined #openwrt-devel
<kabel> PaulFertser, ukleinek: I am not talking about USB, but PCIe. We are interested in testing how these cards would work with Turris Routers. The fact that the drivers are in upstream is certainly a plus, but we have bad experience even with such drivers/firmware (mwifiex, for example). My current experience is that only mt76 cards are reasonable, and I am interested in finding out
<kabel> whether my list can be extended to these new realtek cards
<robimarko> You are probably going to need to test them
<PaulFertser> kabel: rtw88 something card in huawei laptop seems to work reliably as a station, that's as far as my personal experience goes.
Tapper has joined #openwrt-devel
Misanthropos has joined #openwrt-devel
<kabel> PaulFertser, robimarko: very well, thanks
<PaulFertser> kabel: want me to paste lspci -vv from it?
<PaulFertser> (I doubt it's really useful as that's just basic testing of sta functionality anyway)
<zx2c4> aparcar: doesn't look like it's designed to be secure. It's just an linear function
<aparcar[m]> zx2c4: agree, I wonder how difficult it would be to make it secure using /dev/random
tidalf has joined #openwrt-devel
Danct12 has quit [Quit: WeeChat 3.8]
<kabel> PaulFertser: no need
<robimarko> kabel: Whats the availabilty of those anyway?
tidalf_ has quit [Ping timeout: 480 seconds]
AtomiclyCursed has quit [Ping timeout: 480 seconds]
tidalf_ has joined #openwrt-devel
AtomiclyCursed has joined #openwrt-devel
tidalf has quit [Ping timeout: 480 seconds]
tidalf has joined #openwrt-devel
schwicht has joined #openwrt-devel
tidalf__ has joined #openwrt-devel
tidalf_ has quit [Ping timeout: 480 seconds]
tidalf has quit [Ping timeout: 480 seconds]
schwicht has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
schwicht has joined #openwrt-devel
minimal has joined #openwrt-devel
schwicht has quit [Read error: Connection reset by peer]
schwicht_ has joined #openwrt-devel
<nick[m]12> hauke: for me wolfssl is building just fine
<nick[m]12> I mean px5g-wolfssl on x86 64
cbeznea has quit [Quit: Leaving.]
cbeznea has joined #openwrt-devel
valku has joined #openwrt-devel
tidalf has joined #openwrt-devel
tidalf_ has joined #openwrt-devel
_zer0def has joined #openwrt-devel
djfe has quit [Quit: https://quassel-irc.org - Chat comfortably. Anywhere.]
tidalf__ has quit [Ping timeout: 480 seconds]
zer0def has quit [Ping timeout: 480 seconds]
_zer0def has quit []
tidalf has quit [Ping timeout: 480 seconds]
zer0def has joined #openwrt-devel
cbeznea has quit [Quit: Leaving.]
dangole has quit [Ping timeout: 480 seconds]
djfe has joined #openwrt-devel
goliath has quit [Quit: SIGSEGV]
dangole has joined #openwrt-devel
tidalf has joined #openwrt-devel
tidalf_ has quit [Ping timeout: 480 seconds]
goliath has joined #openwrt-devel
cbeznea has joined #openwrt-devel
jakllsch has quit [Ping timeout: 480 seconds]
jakllsch has joined #openwrt-devel
Borromini has joined #openwrt-devel
<hauke> nick[m]12: it is missing header, probably it is not instaleld any more and you still have the old header
Lynx- has joined #openwrt-devel
cbeznea has quit [Quit: Leaving.]
cbeznea has joined #openwrt-devel
danitool has joined #openwrt-devel
noahm_ is now known as noahm
floof58 is now known as Guest9809
floof58 has joined #openwrt-devel
Guest9809 has quit [Ping timeout: 480 seconds]
Strykar has quit [Ping timeout: 480 seconds]
Strykar has joined #openwrt-devel
cbeznea has quit [Quit: Leaving.]
Tapper has quit [Read error: Connection reset by peer]
Tapper has joined #openwrt-devel
gch981213 has quit [Quit: Ping timeout (120 seconds)]
gch981213 has joined #openwrt-devel
Ansuel has joined #openwrt-devel
AtomiclyCursed has quit [Quit: ZNC 1.8.2 - https://znc.in]
AtomiclyCursed has joined #openwrt-devel
robimarko has quit [Quit: Leaving]
philipp64 has quit [Quit: philipp64]
_Lechu is now known as Lechu
Lynx- has quit [Read error: Connection reset by peer]
schwicht_ has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
Borromini has left #openwrt-devel [#openwrt-devel]
goliath has quit [Quit: SIGSEGV]
tidalf_ has joined #openwrt-devel
tidalf has quit [Remote host closed the connection]
philipp64 has joined #openwrt-devel
guidosarducci_ has joined #openwrt-devel
Mangix_ has quit []
Mangix has joined #openwrt-devel
guidosarducci has quit [Remote host closed the connection]
philipp64 has quit [Quit: philipp64]
bluew has joined #openwrt-devel
<owrt-2203-builds> Build [#252](https://buildbot.openwrt.org/openwrt-22.03/images/#builders/13/builds/252) of `armvirt/64` completed successfully.
torv has quit [Quit: torv]
Tapper has quit [Ping timeout: 480 seconds]
danitool has quit [Quit: Cubum autem in duos cubos, aut quadratoquadratum in duos quadratoquadratos]
schwicht has joined #openwrt-devel
torv has joined #openwrt-devel
floof58 is now known as Guest9830
floof58 has joined #openwrt-devel
schwicht has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
Guest9830 has quit [Ping timeout: 480 seconds]
rmb has quit [Quit: ZNC 1.8.2+deb2+b1 - https://znc.in]