From 1927839dcb7bb7be7d4c6d9d5b25679ce80a62de Mon Sep 17 00:00:00 2001 From: Mark H Weaver Date: Mon, 3 Oct 2016 13:48:42 -0400 Subject: gnu: linux-libre: Update to 4.8. * gnu/packages/linux.scm (linux-libre): Update to 4.8. * gnu/packages/linux-libre-4.7-x86_64.conf, gnu/packages/linux-libre-4.7-i686.conf: Delete files. * gnu/packages/linux-libre-4.8-x86_64.conf, gnu/packages/linux-libre-4.8-i686.conf: New files. * Makefile.am (KCONFIGS): Update accordingly. --- gnu/packages/linux.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gnu/packages/linux.scm') diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index 693558f055..6445a25e23 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -322,8 +322,8 @@ It has been modified to remove all non-free binary blobs.") (define %intel-compatible-systems '("x86_64-linux" "i686-linux")) (define-public linux-libre - (make-linux-libre "4.7.6" - "0716lpzq3w2pdc0nrrx06gqzdfzhkrjq7g37v4ws9wjlzak8hkvy" + (make-linux-libre "4.8" + "0fnax2qb597zg2gchab9n9fn7551vccmqfcvq5k3ckz24y50yknm" %intel-compatible-systems #:configuration-file kernel-config)) -- cgit v1.2.3 From 151df6ab3dd15c1c8fba3347022ebcb7bc05a5d5 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Wed, 5 Oct 2016 22:06:46 +0200 Subject: gnu: btrfs-progs: Update to 4.8. * gnu/packages/linux.scm (btrfs-progs): Update to 4.8. --- gnu/packages/linux.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gnu/packages/linux.scm') diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index 6445a25e23..42fadb926f 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -2573,7 +2573,7 @@ and copy/paste text in the console and in xterm.") (define-public btrfs-progs (package (name "btrfs-progs") - (version "4.7.3") + (version "4.8") (source (origin (method url-fetch) (uri (string-append "mirror://kernel.org/linux/kernel/" @@ -2581,7 +2581,7 @@ and copy/paste text in the console and in xterm.") "btrfs-progs-v" version ".tar.xz")) (sha256 (base32 - "073pvx8vz6rkw2d8mm1m60b3i8743pc712pasvydbgm8wl66zkch")))) + "06v6fqr0rl1bqg87ndi5fjh3l59v7yvimlg3abr4jc3wxw8hmdg6")))) (build-system gnu-build-system) (outputs '("out" "static")) ; static versions of binaries in "out" (~16MiB!) -- cgit v1.2.3 From 7d4536568417796a8c697b30b464b727d46cee8d Mon Sep 17 00:00:00 2001 From: Leo Famulari Date: Sun, 2 Oct 2016 14:39:03 -0400 Subject: gnu: e2fsprogs: Disable parallel build. * gnu/packages/linux.scm (e2fsprogs)[arguments]: Add #:parallel-build? #f. --- gnu/packages/linux.scm | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'gnu/packages/linux.scm') diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index 42fadb926f..c9740ecbfc 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -595,7 +595,11 @@ slabtop, and skill.") (native-inputs `(("pkg-config" ,pkg-config) ("texinfo" ,texinfo))) ;for the libext2fs Info manual (arguments - '(;; util-linux is the preferred source for some of the libraries and + '(;; Parallel building reliably yields a failure like this: + ;; "make[2]: *** No rule to make target '../lib/libss.so', needed by + ;; 'debufs'. Stop." + #:parallel-build? #f + ;; util-linux is the preferred source for some of the libraries and ;; commands, so disable them (see, e.g., ;; .) #:configure-flags '("--disable-libblkid" -- cgit v1.2.3 From 145947608905d36f31227e87bebd7ed3a922e910 Mon Sep 17 00:00:00 2001 From: Leo Famulari Date: Wed, 5 Oct 2016 18:58:56 -0400 Subject: gnu: e2fsprogs: Fix typo in comment. * gnu/packages/linux.scm (e2fsprogs)[arguments]: Fix typo in comment. --- gnu/packages/linux.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gnu/packages/linux.scm') diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index c9740ecbfc..52c7c7d027 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -597,7 +597,7 @@ slabtop, and skill.") (arguments '(;; Parallel building reliably yields a failure like this: ;; "make[2]: *** No rule to make target '../lib/libss.so', needed by - ;; 'debufs'. Stop." + ;; 'debugfs'. Stop." #:parallel-build? #f ;; util-linux is the preferred source for some of the libraries and ;; commands, so disable them (see, e.g., -- cgit v1.2.3