jtojnar has quit [Read error: Connection reset by peer]
jtojnar has joined #nixos-dev
garbas has joined #nixos-dev
init_6 has quit [Ping timeout: 244 seconds]
orivej_ has quit [Ping timeout: 246 seconds]
FRidh has quit [Quit: Konversation terminated!]
drakonis has quit [Quit: WeeChat 2.3]
tilpner has quit [Quit: WeeChat 2.3]
tilpner has joined #nixos-dev
orivej has joined #nixos-dev
elvishjerricco has quit []
elvishjerricco has joined #nixos-dev
Jackneill has quit [Quit: Leaving]
Jackneill has joined #nixos-dev
<samueldr>
since I've been side-tracked and have it on my mind: are there any issues, mostly thinking capacity, in running a limited amount of tests on all mainline kernels, including -rc* on the nixos.org hydra?
<samueldr>
maybe having the non-testing kernels fail the channel advance in case of failure (not sure about testing)
yl has joined #nixos-dev
<gchristensen>
something for the PM is documentation on channel halts
<gchristensen>
FYI: I'm canceling all builds except for release-18.09 to get bumps out, then will restart the other builds
<gchristensen>
starting with nixos-unstable-small
<gchristensen>
yikes!
<gchristensen>
"Sadly, our bugzilla is rarely used" -- Sasha w.r.t. LKML and their bug tracker
<samueldr>
:|
<gchristensen>
really distressing
<gchristensen>
oh well
<gchristensen>
aszlig, something to know for the future: don't open bug reports to the linux kernel, send a mail instead
<aszlig>
gchristensen: i didn't open a bug report
<gchristensen>
yeah
<gchristensen>
I know
<gchristensen>
just thinking through it all
<gchristensen>
at a minimum, we shoul be mailing the ML what we learn, not just posting to a bug report
<aszlig>
btw. did anyone proceed on the overlayfs regression in the meantime?
<gchristensen>
I doubt it
<gchristensen>
not that I have heard
<samueldr>
aszlig: didn't notify you, looked at the ML thread, and was thoroughly out of my element to continue with what was asked
<aszlig>
okay, well then i'll do that this weekend
garbas has quit [Quit: WeeChat 2.3]
garbas has joined #nixos-dev
<clever>
gchristensen: have you looked at ` --option build-repeat 1` for the instructions on https://r13y.com/?
<gchristensen>
yeah
<gchristensen>
it doesn't really work, iirc, if it substitutes
<clever>
yeah, so it would be limited to things your doing locally
<gchristensen>
so has to deal with weird edge cases if the path is already in the nix store
<clever>
you could also just blanket enable that in nix.conf
<gchristensen>
hehe
<gchristensen>
yeah, pretty sure that isn't a thing a casual contributor would really want to do
<clever>
building '/nix/store/0qmnc5c4i77s0qsb061nrsxa49av6n1f-daedalus-installer-0.1.0.0.drv' (round 1/2)...
<clever>
building '/nix/store/0qmnc5c4i77s0qsb061nrsxa49av6n1f-daedalus-installer-0.1.0.0.drv' (round 2/2)...
<clever>
output '/nix/store/ksyz564hhwipnb3108xk1dcdfzidjswz-daedalus-installer-0.1.0.0' of '/nix/store/0qmnc5c4i77s0qsb061nrsxa49av6n1f-daedalus-installer-0.1.0.0.drv' differs from previous round
<clever>
gchristensen: dang, i dont see the old copy....
<gchristensen>
-K :)
<clever>
/* If this is the first round of several, then move the output out
<gchristensen>
ok, 18.09 finished building, time to bump channels and restart like 50k obs :P
drakonis has joined #nixos-dev
orivej has quit [Ping timeout: 258 seconds]
orivej has joined #nixos-dev
averell has quit [Quit: .]
<gchristensen>
new report up https://r13y.com/ -- continued syslinux trouble, plus the docs got an old PR merged adding back a section w/out an ID (fixed)
<samueldr>
wild, did sylinux break reproducibility after the debian patches landed upstream?
averell has joined #nixos-dev
<gchristensen>
not sure
<gchristensen>
b1bda29f5ca5063579b0998e1a7f0b4281b5c9d7 included your patches right?
<gchristensen>
yea
<gchristensen>
it'll be nice having staging merge
<samueldr>
yeah, a 2019 syslinux version, first thing I checked
<gchristensen>
https://twitter.com/alicegoldfuss/status/1096551553182253056 "it's moving different values, not to different registers. the $ means "this literal value" so for one it's moving 0x15 (21 in decimal) and in another it's moving $0xb (11 in decimal) and both are moving to memory location 0x5c8 + whatever is in register %rbp."
<clever>
gchristensen: what is the github repo for our syslinux?
<clever>
oh wait, thats autogen
<clever>
agen5/autogen.c:inner_main(void * closure, int argc, char ** argv)
<sorear>
that's a pretty short function and the offsets in the disassembly are very large
<sorear>
there are two ways this can go. one, massive inlining. two, you're looking at a stripped binary and objdump is just blaming the last public symbol
<clever>
its just before a series of testb's and a call to getenv
<gchristensen>
back in 1.5h
<samueldr>
clever: I know you don't need it now, but the repo for syslinux is the upstream one, https://repo.or.cz/syslinux.git
<clever>
i think inner_main got inlined into main
<clever>
yeah, i would need to build autogen with debug on to get more info
<clever>
calls to optionProcess also got inlined into inner main