diff options
author | Mark H Weaver <mhw@netris.org> | 2020-06-11 16:11:35 -0400 |
---|---|---|
committer | Mark H Weaver <mhw@netris.org> | 2020-06-11 16:19:34 -0400 |
commit | 1c02643a06f807175ee6a8418cd824a0ac7ec9a4 (patch) | |
tree | ee42302656bdba952749f3a5974ab4760d44e4e8 | |
parent | e37aff92e2c8c30a1eedfe0fe6ae2db0e6949560 (diff) | |
download | guix-1c02643a06f807175ee6a8418cd824a0ac7ec9a4.tar.gz |
gnu: linux-libre@5.6: Remove.
Users of linux-libre-5.6 should migrate to version 5.7. * gnu/packages/linux.scm (deblob-scripts-5.6, linux-libre-5.6-version) (linux-libre-5.6-pristine-source, linux-libre-5.6-source) (linux-libre-headers-5.6, linux-libre-arm-generic-5.6) (linux-libre-arm64-generic-5.6): Remove variables.
-rw-r--r-- | gnu/packages/linux.scm | 51 |
1 files changed, 0 insertions, 51 deletions
diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index 431f81ecf2..6b861d5ff6 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -199,12 +199,6 @@ defconfig. Return the appropriate make target if applicable, otherwise return (base32 "1c0n39wg6xij4x63ppg0m80kfcffkn3iilm3chyiix09n9g7vb78") (base32 "02is246xaql1br3kizqicrkp982nw4gdwpn7nlzjazvsmyd1hcv2"))) -(define deblob-scripts-5.6 - (linux-libre-deblob-scripts - "5.6.7" - (base32 "196fdbfy1f8zbmnv0ik720snig2bacsh7hfyvgbmlsfk3cil2zgv") - (base32 "1g0bi3c8xzy1vz6w1xbpkb3a26bqn9d1yphcqz2ki4aikra81wid"))) - (define deblob-scripts-5.4 (linux-libre-deblob-scripts "5.4.37" @@ -384,14 +378,6 @@ corresponding UPSTREAM-SOURCE (an origin), using the given DEBLOB-SCRIPTS." (%upstream-linux-source version hash) deblob-scripts-5.7))) -(define-public linux-libre-5.6-version "5.6.17") -(define-public linux-libre-5.6-pristine-source - (let ((version linux-libre-5.6-version) - (hash (base32 "17kzalz8z6svv6nwa3dbmf7nyvpb2wwwyabj19vdwf6v05a28fn3"))) - (make-linux-libre-source version - (%upstream-linux-source version hash) - deblob-scripts-5.6))) - (define-public linux-libre-5.4-version "5.4.45") (define-public linux-libre-5.4-pristine-source (let ((version linux-libre-5.4-version) @@ -465,15 +451,6 @@ corresponding UPSTREAM-SOURCE (an origin), using the given DEBLOB-SCRIPTS." (list %boot-logo-patch %linux-libre-arm-export-__sync_icache_dcache-patch))) -(define-public linux-libre-5.6-source - (source-with-patches linux-libre-5.6-pristine-source - (list %boot-logo-patch - %linux-libre-arm-export-__sync_icache_dcache-patch - ;; Pinebook Pro patch from linux-next, - ;; can be dropped for linux-libre 5.7 - (search-patch - "linux-libre-support-for-Pinebook-Pro.patch")))) - (define-public linux-libre-5.4-source (source-with-patches linux-libre-5.4-pristine-source (list %boot-logo-patch @@ -577,10 +554,6 @@ corresponding UPSTREAM-SOURCE (an origin), using the given DEBLOB-SCRIPTS." (make-linux-libre-headers* linux-libre-5.7-version linux-libre-5.7-source)) -(define-public linux-libre-headers-5.6 - (make-linux-libre-headers* linux-libre-5.6-version - linux-libre-5.6-source)) - (define-public linux-libre-headers-5.4 (make-linux-libre-headers* linux-libre-5.4-version linux-libre-5.4-source)) @@ -882,18 +855,6 @@ It has been modified to remove all non-free binary blobs.") ("CONFIG_RTC_DRV_RK808" . #t)) %default-extra-linux-options))) -(define-public linux-libre-arm-generic-5.6 - (make-linux-libre* linux-libre-5.6-version - linux-libre-5.6-source - '("armhf-linux") - #:defconfig "multi_v7_defconfig" - #:extra-version "arm-generic" - #:extra-options - (append - `(;; needed to fix the RTC on rockchip platforms - ("CONFIG_RTC_DRV_RK808" . #t)) - %default-extra-linux-options))) - (define-public linux-libre-arm-generic-5.7 (make-linux-libre* linux-libre-5.7-version linux-libre-5.7-source @@ -956,18 +917,6 @@ It has been modified to remove all non-free binary blobs.") ("CONFIG_RTC_DRV_RK808" . #t)) %default-extra-linux-options))) -(define-public linux-libre-arm64-generic-5.6 - (make-linux-libre* linux-libre-5.6-version - linux-libre-5.6-source - '("aarch64-linux") - #:defconfig "defconfig" - #:extra-version "arm64-generic" - #:extra-options - (append - `(;; needed to fix the RTC on rockchip platforms - ("CONFIG_RTC_DRV_RK808" . #t)) - %default-extra-linux-options))) - (define-public linux-libre-arm64-generic-5.7 (make-linux-libre* linux-libre-5.7-version linux-libre-5.7-source |