dansan_ has quit [Ping timeout: 480 seconds]
guidosarducci has quit [Remote host closed the connection]
guidosarducci has joined #openwrt-devel
goliath has quit [Quit: SIGSEGV]
nixuser has joined #openwrt-devel
n3ph_ has quit [Ping timeout: 480 seconds]
Nilsro_ has joined #openwrt-devel
Nilsro has quit [Ping timeout: 480 seconds]
dansan_ has joined #openwrt-devel
Slimey has quit [Remote host closed the connection]
rua has quit [Remote host closed the connection]
minimal has quit [Quit: Leaving]
rua has joined #openwrt-devel
sorinello has joined #openwrt-devel
eluks has quit [Remote host closed the connection]
eluks has joined #openwrt-devel
anthqiu has quit [Quit: Ping timeout (120 seconds)]
anthqiu has joined #openwrt-devel
ungeskriptet has quit [Remote host closed the connection]
ungeskriptet has joined #openwrt-devel
ungeskriptet has quit [Remote host closed the connection]
ungeskriptet has joined #openwrt-devel
ungeskriptet has quit [Remote host closed the connection]
ungeskriptet has joined #openwrt-devel
ungeskriptet has quit [Remote host closed the connection]
ungeskriptet has joined #openwrt-devel
goliath has joined #openwrt-devel
rudeowl is now known as Guest17934
rudeowl has joined #openwrt-devel
Guest17934 has quit [Ping timeout: 480 seconds]
GNUmoon has quit [Remote host closed the connection]
GNUmoon has joined #openwrt-devel
aiyion has quit [Remote host closed the connection]
aiyion has joined #openwrt-devel
<f00b4r0> dwfreed: thanks for the explanation
n3ph has joined #openwrt-devel
ungeskriptet has quit [Remote host closed the connection]
ungeskriptet has joined #openwrt-devel
<nbd> f00b4r0: ping
<nbd> regarding ucode-mod-bpf, did you try to enable debug messages yet?
<nbd> you can do something like this: bpf.set_debug_handler(function(level, msg) { print(`[${level}] ${msg}`); });
n3ph has quit [Ping timeout: 480 seconds]
dansan has joined #openwrt-devel
dansan_ has quit [Read error: Connection reset by peer]
n3ph has joined #openwrt-devel
n3ph has quit [Ping timeout: 480 seconds]
ungeskriptet has quit [Remote host closed the connection]
ungeskriptet has joined #openwrt-devel
n3ph has joined #openwrt-devel
KGB-2 has quit [Remote host closed the connection]
n3ph has quit [Ping timeout: 480 seconds]
KGB-2 has joined #openwrt-devel
mrkiko has quit [Quit: leaving]
n3ph has joined #openwrt-devel
rsalvaterra has quit []
rsalvaterra has joined #openwrt-devel
ungeskriptet has quit [Remote host closed the connection]
ungeskriptet has joined #openwrt-devel
n3ph has quit [Ping timeout: 480 seconds]
n3ph has joined #openwrt-devel
lucascastro has quit [Remote host closed the connection]
Gffg has joined #openwrt-devel
<Gffg> Which bootloader does openwrt one use
ungeskriptet has quit [Remote host closed the connection]
ungeskriptet has joined #openwrt-devel
Gffg has quit [Remote host closed the connection]
valku has joined #openwrt-devel
ungeskriptet has quit [Remote host closed the connection]
ungeskriptet has joined #openwrt-devel
ungeskriptet has quit [Remote host closed the connection]
ungeskriptet has joined #openwrt-devel
n3ph_ has joined #openwrt-devel
n3ph has quit [Ping timeout: 480 seconds]
guerby has quit [Remote host closed the connection]
guerby has joined #openwrt-devel
<dwfreed> they're gone
SnakesAndStuff has quit [Ping timeout: 480 seconds]
minimal has joined #openwrt-devel
<Rondom> When backporting upstream kernel patches, are there any scripts that wrap git format-patch to automatically add the upstream kernel version it has been picked from to each patch's filename ? e.g. NNN-SS-vX.Y-lowercase_shortname.patch?
<Rondom> It sounds like a problem that multiple people must have some oneliner for. So far, I have been doing it manually...
n3ph_ has quit [Ping timeout: 480 seconds]
<f00b4r0> nbd: I did, that's how I got the message I emailed you
<f00b4r0> let me redo this
<f00b4r0> nbd: https://pastebin.com/DG5hkHgW complete debug output from using the commented out section
<f00b4r0> fails at tc_attach(), bpftool shows that both progs and maps are loaded
n3ph has joined #openwrt-devel
<philipp64> Ansuel: any chance to look at my libubox PR's?
n3ph has quit [Ping timeout: 480 seconds]
n3ph has joined #openwrt-devel
rudeowl is now known as Guest17963
rudeowl has joined #openwrt-devel
aiyion has quit [Remote host closed the connection]
aiyion has joined #openwrt-devel
Guest17963 has quit [Ping timeout: 480 seconds]
<philipp64> of course if anyone else wants to review them, that's fine too.
n3ph has quit [Ping timeout: 480 seconds]
<philipp64> any Kconfig gurus around? I'm getting a warning about a recursive dependency with my PR: https://github.com/openwrt/packages/pull/26721
n3ph has joined #openwrt-devel
<dwfreed> would help if you provided the actual message
<philipp64> It's in the PR, but here it is again:
<philipp64> feeds/packages/net/bind/Config.in:3:error: recursive dependency detected!
<philipp64> feeds/packages/net/bind/Config.in:3:symbol BIND_JEMALLOC depends on PACKAGE_bind-server
<philipp64> tmp/.config-package.in:67633:symbol PACKAGE_bind-server depends on BIND_JEMALLOC
<philipp64> For a resolution refer to Documentation/kbuild/kconfig-language.rst
<philipp64> subsection "Kconfig recursive dependency limitations"
<dwfreed> okay, show what's in tmp/.config-package.in around line 67633
rudeowl has quit [Remote host closed the connection]
<philipp64> the line numbers have changed, but starting from that line onward... https://pastebin.com/7EK8SiF2
<philipp64> wait, what?
<philipp64> depends on !(BIND_JEMALLOC) || ((mips||mipsel||mips64||powerpc64||x86_64||arm||aarch64||loongarch64)||(USE_GLIBC&&(powerpc||i386)))
<philipp64> where is that coming from?
minimal has quit [Read error: Network is unreachable]
minimal has joined #openwrt-devel
<philipp64> no, I meant where is the !(BIND_JEMALLOC) || coming from.
<KanjiMonster> philipp64: jemalloc depends on libunwind, so it inherits its dependencies, so transitively bind inherits the dependencies if you enable BIND_JEMALLOC
<philipp64> okay. I get that.
<philipp64> so where is the recursion happening?
<KanjiMonster> if FOO ... config BAR ... endif adds an implicit depends on FOO to BAR
<KanjiMonster> this is where the "BIND_JEMALLOC depends on PACKAGE_bind-server" comes from
<nbd> f00b4r0: i'll try to find the time to test your code tomorrow
SlimeyX has quit [Read error: Connection reset by peer]
SlimeyX has joined #openwrt-devel
<philipp64> KanjiMonster: so how do I fix it?
sorinello has quit [Ping timeout: 480 seconds]
n3ph_ has joined #openwrt-devel
<philipp64> or... that's not what's causing the recursion. No idea what is.
n3ph has quit [Ping timeout: 480 seconds]
rudeowl has joined #openwrt-devel
<dwfreed> no, KanjiMonster literally hit the nail right on the head
<f00b4r0> nbd: thanks a lot
danitool has joined #openwrt-devel
SnakesAndStuff has joined #openwrt-devel
Obi-Wan has quit [Quit: ZNC by prozac - http://znc.sourceforge.net]
Obi-Wan has joined #openwrt-devel
<hauke[m]> I think the jemalloc dependency of bind is optional and you can deactivate it in the configure script
rudeowl has quit [Remote host closed the connection]
rudeowl has joined #openwrt-devel
n3ph has joined #openwrt-devel
n3ph_ has quit [Ping timeout: 480 seconds]
<dwfreed> hauke[m]: it is, yes, that's why he's trying to add it as a configurable dependency
danitool has quit [Quit: Cubum autem in duos cubos, aut quadratoquadratum in duos quadratoquadratos]
minimal has quit [Quit: Leaving]
Slimey has joined #openwrt-devel