Browse Source
gnu: linux-libre: Update to 4.10. Keep 4.9 as longterm release.
* gnu/packages/linux.scm (%linux-libre-version): Update to 4.10.
(%linux-libre-hash): Update hash.
(linux-libre-4.9): New variable.
* gnu/packages/linux-libre-4.10-x86_64.conf,
gnu/packages/linux-libre-4.10-i686.conf: New files.
* Makefile.am (KCONFIGS): Add them.
wip-git-https
Mark H Weaver
5 years ago
No known key found for this signature in database
GPG Key ID: 7CEF29847562C516
4 changed files with
18171 additions and
3 deletions
-
Makefile.am
-
gnu/packages/linux-libre-4.10-i686.conf
-
gnu/packages/linux-libre-4.10-x86_64.conf
-
gnu/packages/linux.scm
|
|
@ -3,7 +3,7 @@ |
|
|
|
# Copyright © 2013 Andreas Enge <andreas@enge.fr>
|
|
|
|
# Copyright © 2015 Alex Kost <alezost@gmail.com>
|
|
|
|
# Copyright © 2016 Mathieu Lirzin <mthl@gnu.org>
|
|
|
|
# Copyright © 2016 Mark H Weaver <mhw@netris.org>
|
|
|
|
# Copyright © 2016, 2017 Mark H Weaver <mhw@netris.org>
|
|
|
|
#
|
|
|
|
# This file is part of GNU Guix.
|
|
|
|
#
|
|
|
@ -198,6 +198,8 @@ dist_noinst_DATA = guix/tests.scm guix/tests/http.scm |
|
|
|
|
|
|
|
# Linux-Libre configurations.
|
|
|
|
KCONFIGS = \
|
|
|
|
gnu/packages/linux-libre-4.10-i686.conf \
|
|
|
|
gnu/packages/linux-libre-4.10-x86_64.conf \
|
|
|
|
gnu/packages/linux-libre-4.9-i686.conf \
|
|
|
|
gnu/packages/linux-libre-4.9-x86_64.conf \
|
|
|
|
gnu/packages/linux-libre-4.4-i686.conf \
|
|
|
|
|
|
@ -338,8 +338,8 @@ It has been modified to remove all non-free binary blobs.") |
|
|
|
|
|
|
|
(define %intel-compatible-systems '("x86_64-linux" "i686-linux")) |
|
|
|
|
|
|
|
(define %linux-libre-version "4.9.11") |
|
|
|
(define %linux-libre-hash "1gypfg2984zr4z7hihnl3bbpxnk1mrqbynb6xd8ad2v2z04aw13q") |
|
|
|
(define %linux-libre-version "4.10") |
|
|
|
(define %linux-libre-hash "167zzgkivpqsp07did25wjqsswddzp3gifcdkq7xk00llxlmspla") |
|
|
|
|
|
|
|
(define-public linux-libre |
|
|
|
(make-linux-libre %linux-libre-version |
|
|
@ -347,6 +347,12 @@ It has been modified to remove all non-free binary blobs.") |
|
|
|
%intel-compatible-systems |
|
|
|
#:configuration-file kernel-config)) |
|
|
|
|
|
|
|
(define-public linux-libre-4.9 |
|
|
|
(make-linux-libre "4.9.11" |
|
|
|
"1gypfg2984zr4z7hihnl3bbpxnk1mrqbynb6xd8ad2v2z04aw13q" |
|
|
|
%intel-compatible-systems |
|
|
|
#:configuration-file kernel-config)) |
|
|
|
|
|
|
|
(define-public linux-libre-4.4 |
|
|
|
(make-linux-libre "4.4.50" |
|
|
|
"0c157kk0vgrb1fsyy4q3czqdg4npgql82n6p303afy8ylh2w6d3l" |
|
|
|