minimal has quit [Quit: Leaving]
Danct12 has joined #openwrt-devel
goliath has quit [Quit: SIGSEGV]
tSYS has quit [Quit: *squeak*]
tSYS has joined #openwrt-devel
danitool has quit [Quit: Cubum autem in duos cubos, aut quadratoquadratum in duos quadratoquadratos]
slh has quit [Quit: leaving]
slh64 has quit [Quit: gone]
srslypascal is now known as Guest8007
srslypascal has joined #openwrt-devel
Guest8007 has quit [Ping timeout: 480 seconds]
<owrt-snap-builds> Build [#837](https://buildbot.openwrt.org/master/images/#builders/4/builds/837) of `x86/generic` completed successfully.
dangole has quit [Ping timeout: 480 seconds]
slh has joined #openwrt-devel
slh64 has joined #openwrt-devel
gladiac has joined #openwrt-devel
srslypascal has quit [Quit: Leaving]
srslypascal has joined #openwrt-devel
lucenera has quit [Quit: The Lounge - https://thelounge.chat]
lucenera has joined #openwrt-devel
rua has quit [Quit: Leaving.]
rua has joined #openwrt-devel
srslypascal is now known as Guest8024
srslypascal has joined #openwrt-devel
Guest8024 has quit [Ping timeout: 480 seconds]
rua has quit [Quit: Leaving.]
Bartel has joined #openwrt-devel
bluew has quit [Ping timeout: 480 seconds]
rua has joined #openwrt-devel
srslypascal has quit [Ping timeout: 480 seconds]
<karlp> Mangix: last message is more concerning: https://lore.kernel.org/all/20230314103316.313e5f61@kernel.org/
robimarko has joined #openwrt-devel
srslypascal has joined #openwrt-devel
<aiyion> I'd like to take a look at googles mesh-set from 2017 and have considered backporting it to 22.03.
<jow> karlp: I defer that one to the original author of theu pdate
<aiyion> ist that worthwhile? Or is 23.xx nearer, than I think?
<jow> karlp: I did enough autoconf in the past ten years to know that the only viable change to anything autotools related is removing it
<aiyion> :D
<aiyion> / voice in the off: "and wiser words were not spoken that day"
<karlp> jow: soundsd good to me :) sorry for tagging you
<jow> anyone here a bit experienced with kernel flow offloading?
<jow> there's an ongoing bug report about broken offloading with pppoe in 22.03
<jow> the issue has been identified and is solvable by ensuring that only the pppoe device and not its underlying ethernet device are added to the flowtable, so instead of { wan, pppoe-wan, lan1, ... } it should only contain { pppoe-wan, lan1, ... }
<jow> this leads me to two thoughts...
<jow> 1) the above makes it conceptually impossible to use pppoe in conjunction with some other protocol directly on the same ethernet device (e.g. a static alias interface to reach the modem status page)
<jow> 2) shouldn't it be up to the kernel to simply not flow-offload `wan` if it has upper devices on top also doing flow offloading?
<jow> maybe defunct pppoe offloading on top of offloaded ethernet is simply a bug
<jow> I did not read into the offloading architecture but maybe it is possible to exempt pppoe frames from flow offloading?
goliath has joined #openwrt-devel
danitool has joined #openwrt-devel
danitool_ has joined #openwrt-devel
danitool has quit [Ping timeout: 480 seconds]
cbeznea has joined #openwrt-devel
srslypascal is now known as Guest8036
srslypascal has joined #openwrt-devel
Guest8036 has quit [Ping timeout: 480 seconds]
ptudor has quit [Ping timeout: 480 seconds]
floof58 is now known as Guest8038
floof58 has joined #openwrt-devel
Guest8038 has quit [Ping timeout: 480 seconds]
ptudor has joined #openwrt-devel
shifttymike has joined #openwrt-devel
<shifttymike> Hi! Not entirely sure whether this should be in devel or not, but I have a device where the NAND layout differs to what is in the dtb. I'm appending mtdparts=... to the cmdline, but it seems to be getting ignored. Is there a way for the cmdline to take precedence over the dtb or adjust this without rebuilding the dtb? I want to avoid doing this everytime I do a sysupgrade, it should work with vanilla images
Danct12 has quit [Ping timeout: 480 seconds]
cbeznea has quit [Quit: Leaving.]
zer0def has quit [Ping timeout: 480 seconds]
<tmn505> what is Your target? You could add CMDLINE to device recipe in image builder, but I don't know if that still works or if it won't need kernel rebuild (which implies full rebuild).
shifttymike has quit [Remote host closed the connection]
dangole has joined #openwrt-devel
gladiac is now known as Guest8054
gladiac has joined #openwrt-devel
<oliv3r[m]> So I have a node in my devicetree (I2C regmap mux driver) that is responsible for muxing the I2C pinout pins. (Our I2C controller can select (mux) one of 8 SDA pins, to each SCL pin). My issue is with pinctrl setup. Each mux channel gets a pinctrl, to map the SDA pin. A mux can also select a 'disconnected state'. Very easy in pinctrl terms, define a "default" and a "disconnect" state. easy so far. But now, I need to at runtime toggle
<oliv3r[m]> the pinmux. However, the mux is a child node of the mux, and as such doesn't have a compatible and doesn't have a `struct device` associated with it, which means, i can't do 'devm_pintrl_get(dev);`, unless i can do it of the parent node (e.g. the mux itself) which doens't have a pinctrl of course defined.
<oliv3r[m]> unless of course, 'dev' is only needed to find the actual pinctrl, and not the pinhandle? :)
Guest8054 has quit [Ping timeout: 480 seconds]
zer0def has joined #openwrt-devel
shifttymike has joined #openwrt-devel
<shifttymike> @tmn505 Linksys EA4500 (kirkwood). cmdline can be manipulated in u-boot, but it seems to be overridden by the dtb
<shifttymike> I could patch the dtb with imagebuilder, but then I'd need to do that every time I want to sysupgrade
xback has quit [Ping timeout: 480 seconds]
<tmn505> afaics required options are enabled in kernel configuration, maybe there's something wrong with the srting You try to pass
<tmn505> *string
<soxrok2212> im aware theres no 6e support in openwrt yet, but is QCN9024 driver at least expected to work? asking in regard to https://forum.openwrt.org/t/adding-support-for-verizon-cr1000a
<soxrok2212> robimarko: i think you may know the answer to that one
<shifttymike> @tmn505 yeah that's what I saw too... I'll fiddle with the string a bit and see
xutaxkamay has quit [Read error: Connection reset by peer]
xutaxkamay has joined #openwrt-devel
shifttymike has quit [Remote host closed the connection]
<hurricos> (this is a joke. I do appreciate they have 2GB of RAM dangling off of a P1022 though)
minimal has joined #openwrt-devel
<svanheule> oliv3r[m]: you may need to provide a DTS (snippet) to clarify how you're defining your pinctrl and i2c mux nodes
<svanheule> oliv3r[m]: IIRC the SDA pins on rtl93xx can be either GPIO or SDA, so if they are used for I2C a static selection of the SDA should be OK, no?
<oliv3r[m]> svanheule: https://paste.debian.net/1274397/
<oliv3r[m]> svanheule: some more context, i'm writing an i2c-mux-regmap driver, https://gitlab.com/olliver/linux/-/blob/openwrt-22.03/5.15-realtek-22389-gd9c88cea5b-dirty/drivers/i2c/muxes/i2c-mux-regmap.c which will try to handle these 'exotic' (or actually any) simple mux based on syscon/regmaps.
<oliv3r[m]> the thing I'm a) not sure of, is that the pins are being pinctrled at all; b) I want/need to also support the 'mux disconnected' state. This does relate tot he rtl93xx nicely, as we can select a mux; but we can not 'unselect' it. Making the pinmux gpio solves that nicely
xutaxkamay has quit [Ping timeout: 480 seconds]
shibboleth has joined #openwrt-devel
christophe has joined #openwrt-devel
<robimarko> soxrok2212: QCN9024 works, I have it on AX9000
xutaxkamay has joined #openwrt-devel
shibboleth has quit [Quit: shibboleth]
<soxrok2212> robimarko: 6ghz working do you know?
<slh> soxrok2212: the ax9000 doesn't has QCN9024, but physically no 6 GHz (not allowed in China so far) - so you'll probably the first to try
<slh> err, the ax9000 has QCN9024, ...
<slh> also be aware that netifs/ iwinfo might not be totally on top of 6 GHz, yet
<robimarko> soxrok2212: No idea about 6GHz, but it should be working
floof58 has quit [Quit: floof58]
floof58 has joined #openwrt-devel
goliath has quit [Quit: SIGSEGV]
<soxrok2212> ok, i have a friend that is interested in sponsoring a device so i may look at it
<mrnuke> How do I fix "bash: line 1: staging_dir/host/bin/python3: No such file or directory" ?
<jakllsch> what's the first line of that file read?
<mrnuke> The file does not exist
<mrnuke> I did " rm staging_dir/host/.prereq-build " and now it seems to have re-generated that symlink
Bartel has quit [Remote host closed the connection]
<oliv3r[m]> svanheule: I moved the pinctrl node one level up; and put 'all' pins up there. Slightly less nice; but not horribly ugly afaik
goliath has joined #openwrt-devel
<johnf> I'm preparing a PR for packages, is there a way I can test this cleanly end to end
<johnf> so actually have scripts/feeds pull from my github based mirror, instead of the real feeds?
<johnf> it would be pretty sweet if this was covered here: https://github.com/openwrt/packages/blob/master/CONTRIBUTING.md
<johnf> though, uh, if it is, please be gentle :)
<stintel> johnf: cp feeds.conf.default feeds.conf
<stintel> then edit feeds.conf in your favorite editor
<stintel> you could also point it to your local clone even with src-link
<johnf> excellent, thank you stintel
<johnf> oddly enough I don't have a local clone because of how I'm doing this, but that will work quite well for me
srslypascal has quit [Quit: Leaving]
<stintel> johnf: you're welcome!
redqueen has joined #openwrt-devel
redqueen has left #openwrt-devel [#openwrt-devel]
goliath has quit [Quit: SIGSEGV]
redqueen has joined #openwrt-devel
<johnf> stintel: I was able to complete testing and submit my PR https://github.com/openwrt/packages/pull/20683
<johnf> looking forward to having sscep in tree
<stintel> I've approved the CI. you should probably squash those 2 commits into 1
<johnf> I thought that would happen through the PR merge process
<johnf> I can squash them on my side though
<johnf> done
<johnf> stintel: it looks like another approval is required after the force push
redqueen has quit [Remote host closed the connection]
goliath has joined #openwrt-devel
<Mangix> karlp: pointless drama
<Mangix> wonder if that patchset should be merged by openwrt. Up to ipq maintainers I guess.
danitool_ has quit [Read error: No route to host]
danitool_ has joined #openwrt-devel
gladiac has quit [Quit: k thx bye]
cbeznea has joined #openwrt-devel
bluew has joined #openwrt-devel
Borromini has joined #openwrt-devel
cbeznea has quit [Quit: Leaving.]
goliath has quit [Quit: SIGSEGV]
Borromini has quit [Quit: leaving]
robimarko has quit [Quit: Leaving]
floof58 has quit [Read error: Connection reset by peer]
floof58 has joined #openwrt-devel
<slh> Mangix: probably not, unless there would be a sudden (surprising) expectation that it's going to be applied soon - stmmac is quite active in terms of drive-by contributions from various sides to make their hardware work, a large and invasive patchset that has no chance of being merged might create more problems than gains, even if it were (technically-) pure gold
bluew has quit [Remote host closed the connection]
bluew has joined #openwrt-devel
MAbeeTT5 has joined #openwrt-devel
MAbeeTT4 has quit [Ping timeout: 480 seconds]