This is required for the current Arch Linux binaries to work.
PR: 254112
Differential D29218
linux(4): bump osrelease to 4.4.0. trasz on Mar 11 2021, 1:06 PM. Authored by Tags None Referenced Files
Details
This is required for the current Arch Linux binaries to work. PR: 254112
Diff Detail
Event TimelineComment Actions Note that this is necessary, but not sufficient, to make Arch work; see https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=254112 for details. Comment Actions I think this change is good. In D28105 we discussed new syscalls leading up to the bump to 3.17.0. IMO we should (as a separate change) have a fairly descriptive comment here describing our approach for choosing the reported Linux kernel version, as well as techniques to identify new syscalls when bumping (so that we are at least aware of what's added). For example, tig v3.7..v4.4 include/uapi/asm-generic/unistd.h, turns up these added syscalls, at least some of which we have implemented:
Comment Actions And after 4.4 we have:
also a bunch of 64-bit time_t compat from 2019 removed:
Comment Actions I'm not sure if I understand the reason for this, though. Are there still places in glibc which decide to fall back to older syscalls based on the kernel version? Comment Actions
I don't know - I just mean we should give some guidance as to what version we pick, when we change it, and what to look at to figure out what new functionality we need. In other words, why is this 4.4 and not, say, 4.3 or 4.5? Presumably we try to track LTS kernel versions in wide use, as far as the functionality we support. So perhaps we'll go up to 4.15 and then 5.4 next? Comment Actions Well, in this case - and the last few bumps I've done - it was motivated by newer glibc simply refusing to start the binary with anything older than the number chosen. In other words, the new version is the lowest one for which binaries don't fail with "FATAL: kernel too old". |