aboutsummaryrefslogtreecommitdiff
path: root/tests/sets.scm
diff options
context:
space:
mode:
authorMarius Bakke <marius@gnu.org>2021-05-08 18:41:30 +0200
committerMarius Bakke <marius@gnu.org>2021-05-09 23:43:31 +0200
commit70838cf991d2232462041814d4935b9b05352a02 (patch)
tree88c32f18c188f9ec84ddf0f152dcf47d844b4557 /tests/sets.scm
parent3f17ee680e433300322e687dd9c0d6e1a3700727 (diff)
downloadguix-70838cf991d2232462041814d4935b9b05352a02.tar.gz
guix-70838cf991d2232462041814d4935b9b05352a02.zip
gnu: linux-libre-headers: Update to 5.10.35.
* gnu/packages/linux.scm (linux-libre-headers-5.4.20): Rename to ... (linux-libre-headers-5.10.35): ... this. Update to 5.10.35. (linux-libre-headers): Adjust accordingly.
Diffstat (limited to 'tests/sets.scm')
0 files changed, 0 insertions, 0 deletions
tracked in Git. This is relevant to me at least, as some code searching tools use .gitignore files and will ignore matched files. Christopher Baines 2020-03-26daemon: Avoid kill -1 bug on the Hurd....This allows for native builds on the Hurd, doing sudo ./pre-inst-env guix-daemon --disable-chroot --build-users-group=guixbuild & ./pre-inst-env guix build hello * nix/libutil/util.cc (killUser)[__GNU__]: Avoid kill -1 bug; kill only current process and ignore SIGKILL status in parent. Co-authored-by: Jan Nieuwenhuizen <janneke@gnu.org> Manolis Ragkousis 2020-01-12daemon: Account for deleted store files when deduplication is on....Previously, a store item that is a regular file would not be accounted for in the 'bytesFreed' value computed by 'deletePath' because its 'st_nlink' count would always be >= 2. This commit fixes that. * nix/libutil/util.hh (deletePath): Add optional 'linkThreshold' argument. * nix/libutil/util.cc (_deletePath): Add 'linkThreshold' argument and honor it. Pass it down in recursive call. (deletePath): Add 'linkThreshold' and honor it. * nix/libstore/gc.cc (LocalStore::deleteGarbage): Pass 'linkThreshold' argument to 'deletePath', with a value of 2 when PATH is a store item and deduplication is on. Ludovic Courtès