<owrt-snap-builds> Build [#444](https://buildbot.openwrt.org/master/images/#builders/29/builds/444) of `pistachio/generic` completed successfully.
<owrt-snap-builds> Build [#458](https://buildbot.openwrt.org/master/images/#builders/66/builds/458) of `apm821xx/nand` completed successfully.
<owrt-snap-builds> Build [#445](https://buildbot.openwrt.org/master/images/#builders/70/builds/445) of `bcm47xx/mips74k` completed successfully.
<hurricos> hey, is there a way to modify the list of packages auc installs?
<dwfreed> install or remove packages from the system you're running it on?
<hurricos> yes!
<hurricos> or well. auc will use the exact same packages you have
<dwfreed> yeah
<dwfreed> just looked at the source, there's no way to change that with command line switches
<owrt-snap-builds> Build [#441](https://buildbot.openwrt.org/master/images/#builders/42/builds/441) of `ramips/mt76x8` completed successfully.
mitome has quit [Remote host closed the connection]
<owrt-snap-builds> Build [#446](https://buildbot.openwrt.org/master/images/#builders/36/builds/446) of `mediatek/mt7629` completed successfully.
Acinonyx_ has quit [Ping timeout: 480 seconds]
<neggles> Grommish: belated pong (not been around for a couple days)
<Grommish> neggles: Hey.. I got it answered, although I may be back with some mips64 specific questions down the line
<Grommish> neggles: Actually, do you have any suggestions for resources on using gdb effecitvely?
<neggles> Grommish: heh, not really, i've not used gdb very much - i think i had found a guide which had some nice setup files though um
<Grommish> neggles: TIFO: -Og exists
<owrt-snap-builds> Build [#120](https://buildbot.openwrt.org/master/images/#builders/72/builds/120) of `imx/cortexa9` completed successfully.
<owrt-snap-builds> Build [#448](https://buildbot.openwrt.org/master/images/#builders/10/builds/448) of `bcm63xx/smp` completed successfully.
<owrt-snap-builds> Build [#446](https://buildbot.openwrt.org/master/images/#builders/60/builds/446) of `mpc85xx/p1010` completed successfully.
<owrt-snap-builds> Build [#450](https://buildbot.openwrt.org/master/images/#builders/59/builds/450) of `x86/geode` completed successfully.
<owrt-snap-builds> Build [#446](https://buildbot.openwrt.org/master/images/#builders/69/builds/446) of `zynq/generic` completed successfully.
minimal has quit []
<neggles> Grommish: ah yes
<neggles> the ole "optimize some things"
<neggles> i can't find the setup script i used last time i was doing gdb stuff
Tapper has joined #openwrt-devel
<neggles> Grommish: that said, if you're doing octeon things, have a look in the octeon sdk 5.1 bundle
<neggles> it has some info on how to gdb
<Grommish> neggles: -Og is designed to optimise for debugging, it says Which i didn't know was a thing
<neggles> Grommish: yeah, it disables some optimizations that break debugging / make it harder
<neggles> it's O1 without some of the flags
rua has quit [Ping timeout: 480 seconds]
<neggles> and without some of the passes
rua has joined #openwrt-devel
<owrt-snap-builds> Build [#448](https://buildbot.openwrt.org/master/images/#builders/18/builds/448) of `mvebu/cortexa9` completed successfully.
minimal has joined #openwrt-devel
<owrt-snap-builds> Build [#447](https://buildbot.openwrt.org/master/images/#builders/17/builds/447) of `ramips/rt305x` completed successfully.
minimal has quit []
<owrt-snap-builds> Build [#457](https://buildbot.openwrt.org/master/images/#builders/12/builds/457) of `bcm53xx/generic` completed successfully.
<owrt-snap-builds> Build [#436](https://buildbot.openwrt.org/master/images/#builders/34/builds/436) of `lantiq/xrx200` completed successfully.
danitool has quit [Ping timeout: 480 seconds]
<owrt-snap-builds> Build [#446](https://buildbot.openwrt.org/master/images/#builders/19/builds/446) of `ramips/mt7621` completed successfully.
Tapper has quit [Read error: Connection reset by peer]
Tapper has joined #openwrt-devel
lmore377 has joined #openwrt-devel
GNUmoon has quit [Ping timeout: 480 seconds]
<Grommish> Ok, odd question. I compiled an app that uses 'tui' to do console/terminal stuff. Is there a reason it wouldn't work under OpenWrt (like OpenWrt not having what *nix apps would consider a terminal/console)? (I'm getting a SIGILL, but I'm not sure why yet)
<mangix> aparcar: turris people run a honeypot.
fpsusername[m] has quit [Server closed connection]
fpsusername[m] has joined #openwrt-devel
MatMaul[m] has quit [Server closed connection]
MatMaul[m] has joined #openwrt-devel
nick[m]1234 has quit [Server closed connection]
nick[m]1234 has joined #openwrt-devel
Tapper has quit [Ping timeout: 480 seconds]
<neggles> Grommish: do you have libncurses/libncursesw ?
<Grommish> neggles: Probably not since it's a fresh build.. I'll DEP it out and try again
<neggles> almost every tui app uses ncurses
GNUmoon has joined #openwrt-devel
<Grommish> neggles: Gotcha, well.. Maybe it'll work :D
<Grommish> I need something positive to go right hahah
<neggles> Grommish: you can `strace -e trace=file,%%stat` to see what dylibs it tries to open
<neggles> heck just a regular `strace <command>` should show you where the SIGILL is coming from
<Grommish> I ran a remotegdb on it
<Grommish> but, I'm not very good at gdb
<neggles> in my admittedly limited experience, gdb is of limited use when it comes to stuff that won't start right
<Grommish> My issue that I dunno if it's the code, the toolchain, my implimentation, arch issues, etc.. Too many possible issues
<neggles> it's kind of a sledgehammer
<neggles> if the app won't even init, strace ought to give you the info you need to work out where it's failing at least
<neggles> Grommish: first note - you need to run `mips64-openwrt-linux-gdb` not your host gdb
<Grommish> neggles: I am.. I am use ./scripts/remote-gdb
<neggles> aite
<Grommish> and gdbserver on device
<neggles> i've made that mistake quite a few times so figured i'd check :P
<Grommish> *nod* I have to be careful with that because rust and host vs build-system is a huge hassle
<Grommish> I'm statically linking these, BTW
<Grommish> I dunno if that's going to be an issue or not
<neggles> shouldn't be, if anything it ought to make it less problematic
<Grommish> I will say that rust-lang cargo projects are really easy to build
<Grommish> dunno how they are to create,but at least from my end they are easy to build
<neggles> can i grab a copy of the binary?
<Grommish> the btm? sure.. I'm building it out again.
<Grommish> Although it'll pitch a fit over libncurses
<neggles> yea, I wanna see what instruction it's hitting
<Grommish> if you have it installed you could jsut drop the ipk
<neggles> preferably the exact binary you were running when you got that trace :P
<Grommish> Almost done building.. one min
<Grommish> Well, I've done recompiled ;p so let me reflash and run a new one
<Grommish> neggles: You have a preferred file drop service?
<Grommish> neggles: I don't really use them, so I have no idea which to use
<neggles> Grommish: eh not particularly, i use mega mostly
<neggles> and/or my vault box
<Grommish> I'll figure something out.. I've gotta rebuild.. I derped on the DEPENDS line
<Grommish> I've got GDrive if nothing else
<Grommish> If the issue is simply not having libncurses/libncurses-dev, it would be Snoopy Dance time
Tapper has joined #openwrt-devel
<Tapper> stintel: Wifi dropouts have stopped after disabling 802.11r on the r6260
<Tapper> Even with 802.11r enabled I could not find anything in the logs.
<Grommish> Tapper: Hiya sir.. Been a bit :) Hopefully it's going well
<Tapper> Grommish Hi mate. yeah bin a wile. All is good this end. Got rid of the covid out of the house lets hope it stays that way. Hows you?
<Tapper> My wife and 2 of the kids had covid but me and the oldest lad did not.
<Grommish> Tapper: Oi! That's good to hear. Nothing so horrendous here
<mangix> hmm
<mangix> reproducible openwrt no longer runs
<mangix> oh well
<Tapper> The oldest lad did go to football )siccer) you know propper football lol and clashed heads with one of the strikers then had to have 7 stiches in his top lip. He's all good tho he wanted to play with blud pissing out of his face lol
<Tapper> Soccer*
<Grommish> Tapper: Of course he did hah
<Tapper> O to be 15 again!
<Tapper> First thing he did is take a pick and post it to his GF lol Chicks dig scars rite?
<Tapper> hah
ecloud has quit [Ping timeout: 480 seconds]
goliath has joined #openwrt-devel
nitroshift has joined #openwrt-devel
ecloud has joined #openwrt-devel
goliath has quit [Quit: SIGSEGV]
<Grommish> neggles: https://drive.google.com/file/d/1AB2dL9RXNtSKNMfb8lE3C65bP6AkEFk0/view?usp=sharing <- Full build_dir/target-*/bottom dir, and just the bin.. https://drive.google.com/file/d/10xDJDtOAzIXRUk5kZBCrfTSDS0iapoEJ/view?usp=sharing I left allthe debugging and symbols
<neggles> hah
<neggles> that's one heck of a binary
<Grommish> -ggdb3 and -Og haha
<Grommish> I was looking at something else, but was having issues, so I wanted something that was actively maintained and bottom is active
<Grommish> I doubt I'd bother to actually make it a package, but I want a PoC
<Grommish> neggles: Both of these packages use tui and both SIGILL, which is why I was asking originally.. Ah well
nitroshift has quit [Remote host closed the connection]
nitroshift has joined #openwrt-devel
Acinonyx has joined #openwrt-devel
shibboleth has joined #openwrt-devel
dedeckeh has joined #openwrt-devel
goliath has joined #openwrt-devel
rua has quit [Ping timeout: 480 seconds]
rua has joined #openwrt-devel
StifflersMagic has quit [Server closed connection]
StifflersMagic has joined #openwrt-devel
cmonroe has quit [Ping timeout: 480 seconds]
srslypascal has quit [Ping timeout: 480 seconds]
danitool has joined #openwrt-devel
Forst has quit [Server closed connection]
Forst has joined #openwrt-devel
* enick_479 test
<enick_479> test
<enick_479> test2
<aparcar> mangix: do you want to work on reproducible builds?
danitool has quit [Read error: Connection reset by peer]
srslypascal has joined #openwrt-devel
danitool has joined #openwrt-devel
lynxis has quit [Server closed connection]
lynxis has joined #openwrt-devel
rua has quit [Ping timeout: 480 seconds]
rua has joined #openwrt-devel
srslypascal has quit [Ping timeout: 480 seconds]
blocktrron has quit [Server closed connection]
blocktrron has joined #openwrt-devel
rua has quit [Ping timeout: 480 seconds]
srslypascal has joined #openwrt-devel
rua has joined #openwrt-devel
rua has quit []
aleksander has joined #openwrt-devel
Tapper has quit [Ping timeout: 480 seconds]
YSC has quit [Server closed connection]
YSC has joined #openwrt-devel
mitome has joined #openwrt-devel
mitome has quit [Remote host closed the connection]
mitome has joined #openwrt-devel
mitome has quit [Remote host closed the connection]
pmelange has joined #openwrt-devel
pmelange has left #openwrt-devel [#openwrt-devel]
mitome has joined #openwrt-devel
<rsalvaterra> Uhh… I'd love my router to bottleneck at 12 Gb/s too… :P
tomn has quit [Server closed connection]
tomn has joined #openwrt-devel
<rsalvaterra> So the bug is only hit on reverse path filtering. Could be worse.
<Habbie> i remember that sysctl
<Habbie> powerdns even logs about it on startup if it's set low
<rsalvaterra> And it's already fixed in stable kernel versions we're using.
<stintel> rsalvaterra: in which 5.10 patchver was it fixed ?
<rsalvaterra> 5.10.84.
<stintel> still looking for candidates that might have plugged the leak in octeon
<rsalvaterra> Wait, it's been plugged?
<stintel> I can not reproduce it
* rsalvaterra was afk for the weekend
<rsalvaterra> Oh, joy…! Well, if a bug can't be reproduced, it Doesn't Exist™. :)
<stintel> it's ... weird. memory usage does increase, but I shared some paste.pics links, hold on
<rsalvaterra> Stupid question… have you tried different (older) GCC versions?
<stintel> https://paste.pics/efc091deb887216f5e9dc98cd9ec571f -> from < 100MB to > 300MB in <48h
<stintel> so memory usage does increase, but much much slower
<rsalvaterra> Indeed…
<stintel> I was thinking to move some VLAN to be routed over the SNIC10e, couldn't decide on which one, but I came up with an idea that wouldn't require too crazy reconfiguring and without added pressure of taking production things offline
wigyori_ has quit [Server closed connection]
wigyori has joined #openwrt-devel
<neggles> oh i should check mine
EqUaTe has quit [Server closed connection]
EqUaTe has joined #openwrt-devel
<Grommish> stintel: If you can, remove IPv6 and see what happens to what's left of the leak?
felix has quit []
<Grommish> I had removed IPv6 on my build and saw no creep at all, but it was at the same time you saw .96 or whatever not showing a leak and I headed back to rust land
shibboleth has quit [Quit: shibboleth]
rua has joined #openwrt-devel
felix has joined #openwrt-devel
rua has quit [Ping timeout: 480 seconds]
rua has joined #openwrt-devel
owrt-snap-builds has quit [Server closed connection]
owrt-snap-builds has joined #openwrt-devel
enyc has joined #openwrt-devel
rua has quit [Ping timeout: 480 seconds]
dwmw2 has quit [Server closed connection]
DLange has quit [Server closed connection]
swegener has quit [Server closed connection]
DLange has joined #openwrt-devel
swegener has joined #openwrt-devel
bluew has quit [Quit: Leaving]
owrt-1907-builds has quit [Server closed connection]
owrt-1907-builds has joined #openwrt-devel
rua has joined #openwrt-devel
<ynezz> rsalvaterra: FYI just updated maintainer-tools and noticed git.openwrt.org/cbb9d087d6b13bd066a1d2e19ba25f87b06f5200
<ynezz> rsalvaterra: how is it usable with 21.02 and 19.07? I didn't tried it, but it seems like it wouldn't work.
<ynezz> it seems like some additional check would be needed
<rsalvaterra> ynezz: Quite. I overlooked that possibility. Maybe we should just have different branches of maintainer tools in sync with the OpenWrt branches…?
<rsalvaterra> Or would that be too much of a hassle?
<ynezz> 1-2 if cases are cheaper :)
<rsalvaterra> Or…
<rsalvaterra> … just move the update-kernel.sh script to openwrt/scripts? :)
dwmw2_gone has joined #openwrt-devel
dwmw2_gone is now known as dwmw2
<ynezz> 1-2 if cases are cheaper :)
<ynezz> you would end up maintaining that script in several places
<rsalvaterra> Can't deny facts… :P
<rsalvaterra> How brittle would it be to check if include/kernel-${KERNEL} exists before updating it? If it doesn't exist, update include/kernel-version.mk instead.
shibboleth has joined #openwrt-devel
danitool has quit [Quit: Cubum autem in duos cubos, aut quadratoquadratum in duos quadratoquadratos]
<aparcar> is there something from with buildbot.openwrt.org? content doesn't load
<rsalvaterra> Completely untested, though.
tohojo has quit [Server closed connection]
tohojo has joined #openwrt-devel
rua has quit [Ping timeout: 480 seconds]
rua has joined #openwrt-devel
\x has quit [Server closed connection]
\x has joined #openwrt-devel
<ynezz> rsalvaterra: weird, I see some JSON garbage like '{"iv":"y4de13sqSnz3kYTcuK9pXQ","salt":"pgDgajyvcQY"'
<jow> ynezz: enable JS ;)
<ynezz> folks, whats wrong with plain text? :p
<ynezz> rsalvaterra: lgtm
<jow> plaintext does not move nd cannot be formatted
shibboleth has quit [Quit: shibboleth]
<ynezz> yes, in exchange for attack surface bigger then Africa
karlp has quit [Server closed connection]
karlp has joined #openwrt-devel
paper_ has quit [Server closed connection]
paper_ has joined #openwrt-devel
aleksander has quit [Remote host closed the connection]
Tapper has joined #openwrt-devel
Piraty has quit [Remote host closed the connection]
Piraty has joined #openwrt-devel
goliath has quit [Quit: SIGSEGV]
<aparcar> could we leave away the <package><abi>.ipk if we'd add PROVIDES:=<package>-<abi>
<aparcar> I'm not asking for OPKG since it's dependency algo likely fails, however what I described is what they do for Alpine
<rsalvaterra> ynezz: Patch sent. :)
rua has quit [Ping timeout: 480 seconds]
rua has joined #openwrt-devel
FLD has joined #openwrt-devel
<ynezz> rsalvaterra: nice, thanks!
<rsalvaterra> ynezz: You're welcome, I shouldn't have broken it in the first place… :P
rsalvaterra has quit [Quit: rsalvaterra]
rsalvaterra has joined #openwrt-devel
Tapper has quit [Ping timeout: 480 seconds]
goliath has joined #openwrt-devel
<jow> aparcar: no since you can't then install multiple versions concurrently
<jow> having libfoo1 and libfoo2 installed in parallel is a perfectly valid usecase
<jow> especially if you have held back packages depending on libfoo1 while other, newer ones require libfoo2
<aparcar> oh okay, looking at snapshots I never saw "old" stuff, I guess I didn't check the stable releases
<aparcar> thanks for explaining
<jow> it's not just about packages being in the repo right now, but also what's present on systems a few months or years old
<aparcar> ack
olmari has quit [Server closed connection]
olmari has joined #openwrt-devel
shibboleth has joined #openwrt-devel
minimal has joined #openwrt-devel
eduardo010174 has joined #openwrt-devel
eduardo010174 has quit []
ecloud has quit [Ping timeout: 480 seconds]
ecloud has joined #openwrt-devel
FLD has quit [Read error: Connection reset by peer]
nitroshift has quit [Quit: Gone that way --->]
Tapper has joined #openwrt-devel
FLD has joined #openwrt-devel
dedeckeh has quit [Remote host closed the connection]
FLD has quit [Ping timeout: 480 seconds]
FLD has joined #openwrt-devel
Tapper has quit [Ping timeout: 480 seconds]
error404 has joined #openwrt-devel
error404 has left #openwrt-devel [#openwrt-devel]
FLD has quit [Read error: Connection reset by peer]
FLD has joined #openwrt-devel
Acinonyx has quit [Remote host closed the connection]
Acinonyx has joined #openwrt-devel
lucenera has quit [Quit: The Lounge - https://thelounge.chat]
lucenera has joined #openwrt-devel
Tapper has joined #openwrt-devel
pmelange has joined #openwrt-devel
Tapper1 has joined #openwrt-devel
Tapper has quit [Read error: Connection reset by peer]
zatwai_ has joined #openwrt-devel
zatwai has quit [Read error: Connection reset by peer]
<aparcar> ynezz: you're running a labgrid setup right?
pmelange has left #openwrt-devel [#openwrt-devel]
FLD has quit [Ping timeout: 480 seconds]
danitool has joined #openwrt-devel
shibboleth has quit [Quit: shibboleth]
Tapper1 has quit [Ping timeout: 480 seconds]
danitool has quit [Quit: Cubum autem in duos cubos, aut quadratoquadratum in duos quadratoquadratos]
Borromini has joined #openwrt-devel
rua has quit [Ping timeout: 480 seconds]
rua has joined #openwrt-devel
minimal has quit []
cmonroe_ has joined #openwrt-devel
srslypascal is now known as Guest2262
srslypascal has joined #openwrt-devel
Guest2262 has quit [Ping timeout: 480 seconds]
dhewg has joined #openwrt-devel
Tapper has joined #openwrt-devel
pmelange1 has joined #openwrt-devel
pmelange1 has left #openwrt-devel [#openwrt-devel]
pmelange has joined #openwrt-devel
pmelange has left #openwrt-devel [#openwrt-devel]
rua has quit [Ping timeout: 480 seconds]
cmonroe_ has quit [Quit: Textual IRC Client: www.textualapp.com]
cmonroe has joined #openwrt-devel
cmonroe has quit []
rua has joined #openwrt-devel
ynezz has joined #openwrt-devel
ynezz is now known as Guest2275
Pepes has joined #openwrt-devel
SwedeMike has joined #openwrt-devel
cmonroe has joined #openwrt-devel
Thagabe has joined #openwrt-devel
Borromini has left #openwrt-devel [#openwrt-devel]
srslypascal_ has joined #openwrt-devel
srslypascal_ has quit [Remote host closed the connection]
srslypascal is now known as Guest4
Guest4 is now known as Guest6
srslypascal has joined #openwrt-devel
Guest6 has quit [Ping timeout: 480 seconds]
danitool has joined #openwrt-devel
GNUmoon has quit [Ping timeout: 480 seconds]
MatrixTravelerbot[m] has joined #openwrt-devel
agb[m] has joined #openwrt-devel
GNUmoon has joined #openwrt-devel
GuruPrasathGovindarajan[m] has joined #openwrt-devel
valku has quit [Ping timeout: 480 seconds]
whatevs111[m] has joined #openwrt-devel
valku has joined #openwrt-devel
valku has quit [Quit: valku]
Tapper has quit [Ping timeout: 480 seconds]
JugsteR has joined #openwrt-devel
JugsteR has quit []
al has joined #openwrt-devel
mirko has quit [Remote host closed the connection]
mirko has joined #openwrt-devel
dorf has joined #openwrt-devel