From 1dba87d7088355d8e52eb362b38773372e31d31e Mon Sep 17 00:00:00 2001 From: Rutger Helling Date: Thu, 25 Jan 2018 08:31:40 +0100 Subject: gnu: libnftnl: Update to 1.0.9. * gnu/packages/linux.scm (libnftnl): Update to 1.0.9. --- 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 319479d3dd..21249a7eb3 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -4157,7 +4157,7 @@ re-use code and to avoid re-inventing the wheel.") (define-public libnftnl (package (name "libnftnl") - (version "1.0.8") + (version "1.0.9") (source (origin (method url-fetch) @@ -4165,7 +4165,7 @@ re-use code and to avoid re-inventing the wheel.") "libnftnl-" version ".tar.bz2")) (sha256 (base32 - "0f10cfiyl4c0f8k3brxfrw28x7a6qvrakaslg4jgqncwxycxggg6")))) + "0d9nkdbdck8sg6msysqyv3m9kjr9sjif5amf26dfa0g3mqjdihgy")))) (build-system gnu-build-system) (native-inputs `(("pkg-config" ,pkg-config))) -- cgit 1.4.1 From 0646461a8c5c24d3493c69ef92aa3ae35028d5ea Mon Sep 17 00:00:00 2001 From: Rutger Helling Date: Thu, 25 Jan 2018 08:32:13 +0100 Subject: gnu: nftables: Update to 0.8.1. * gnu/packages/linux.scm (nftables): Update to 0.8.1. --- 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 21249a7eb3..82f077668c 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -4182,7 +4182,7 @@ used by nftables.") (define-public nftables (package (name "nftables") - (version "0.8") + (version "0.8.1") (source (origin (method url-fetch) @@ -4190,7 +4190,7 @@ used by nftables.") "/files/nftables-" version ".tar.bz2")) (sha256 (base32 - "16iq9x0qxikdhp1nan500rk33ycqddl1k57876m4dfv3n7kqhnrz")))) + "1i1gfy8l7qyhc5vlrpp63s0n5kybmc9pi4dywiq8rmkhrrnddsla")))) (build-system gnu-build-system) (inputs `(("bison", bison) ("flex", flex) -- cgit 1.4.1 From dbe64d1029f21ac085fa0d6dc88f8e4896016f18 Mon Sep 17 00:00:00 2001 From: Mark H Weaver Date: Thu, 25 Jan 2018 14:13:57 -0500 Subject: gnu: linux-libre: Add retpoline support on x86 [mitigates spectre]. * gnu/packages/linux.scm (make-linux-libre): On x86 systems, build with GCC-7. --- gnu/packages/linux.scm | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'gnu/packages/linux.scm') diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index 82f077668c..ee7f391b94 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -283,6 +283,14 @@ for ARCH and optionally VARIANT, or #f if there is no such configuration." ("bc" ,bc) ("openssl" ,openssl) ("kmod" ,kmod) + ;; On x86, build with GCC-7 for full retpoline support. + ;; FIXME: Remove this when our default compiler has retpoline support. + ,@(match (system->linux-architecture + (or (%current-target-system) (%current-system))) + ((or "x86_64" "i386") + `(("gcc" ,gcc-7))) + (_ + '())) ,@(match (and configuration-file (configuration-file (system->linux-architecture -- cgit 1.4.1 From ca4c7d4cd44b14b98c8b142c98a80dadd98635d5 Mon Sep 17 00:00:00 2001 From: Mark H Weaver Date: Thu, 25 Jan 2018 16:52:25 -0500 Subject: gnu: linux-libre@4.1: Update to 4.1.49. * gnu/packages/linux.scm (linux-libre-4.1): Update to 4.1.49. --- 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 ee7f391b94..869b4f752b 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -404,8 +404,8 @@ It has been modified to remove all non-free binary blobs.") #:configuration-file kernel-config)) (define-public linux-libre-4.1 - (make-linux-libre "4.1.48" - "13ii6ixcm46hzk1ns6n4hrrv4dyc0n3wvj2qhmxi178akdcgbn8a" + (make-linux-libre "4.1.49" + "0dklmqj6ayjlkz97b811zdvpgb3yppahinji9l9jmkz4ssi7a1gs" %intel-compatible-systems #:configuration-file kernel-config)) -- cgit 1.4.1