mirror of
https://gitlab.com/nonguix/nonguix.git
synced 2024-11-28 19:24:11 +01:00
nongnu: Add linux-xanmod.
* nongnu/packages/linux.scm (%default-extra-linux-options,config->string) (make-linux-xanmod-source,make-linux-xanmod,linux-xanmod-version) (linux-xanmod-revision,linux-xanmod-source,linux-xanmod): New variables. Signed-off-by: Jonathan Brielmaier <jonathan.brielmaier@web.de>
This commit is contained in:
parent
c6928d6c37
commit
a8d1dc1ec5
1 changed files with 100 additions and 0 deletions
|
@ -22,11 +22,13 @@
|
||||||
;;; Copyright © 2023 Morgan Smith <Morgan.J.Smith@outlook.com>
|
;;; Copyright © 2023 Morgan Smith <Morgan.J.Smith@outlook.com>
|
||||||
;;; Copyright © 2023 Jelle Licht <jlicht@fsfe.org>
|
;;; Copyright © 2023 Jelle Licht <jlicht@fsfe.org>
|
||||||
;;; Copyright © 2023 Adam Kandur <rndd@tuta.io>
|
;;; Copyright © 2023 Adam Kandur <rndd@tuta.io>
|
||||||
|
;;; Copyright © 2023 Hilton Chain <hako@ultrarare.space>
|
||||||
|
|
||||||
(define-module (nongnu packages linux)
|
(define-module (nongnu packages linux)
|
||||||
#:use-module (gnu packages)
|
#:use-module (gnu packages)
|
||||||
#:use-module (gnu packages base)
|
#:use-module (gnu packages base)
|
||||||
#:use-module (gnu packages compression)
|
#:use-module (gnu packages compression)
|
||||||
|
#:use-module (gnu packages cpio)
|
||||||
#:use-module (gnu packages linux)
|
#:use-module (gnu packages linux)
|
||||||
#:use-module (guix licenses)
|
#:use-module (guix licenses)
|
||||||
#:use-module (guix packages)
|
#:use-module (guix packages)
|
||||||
|
@ -43,6 +45,12 @@
|
||||||
#:use-module (srfi srfi-1)
|
#:use-module (srfi srfi-1)
|
||||||
#:export (corrupt-linux))
|
#:export (corrupt-linux))
|
||||||
|
|
||||||
|
(define %default-extra-linux-options
|
||||||
|
(@@ (gnu packages linux) %default-extra-linux-options))
|
||||||
|
|
||||||
|
(define config->string
|
||||||
|
(@@ (gnu packages linux) config->string))
|
||||||
|
|
||||||
(define (linux-url version)
|
(define (linux-url version)
|
||||||
"Return a URL for Linux VERSION."
|
"Return a URL for Linux VERSION."
|
||||||
(string-append "mirror://kernel.org"
|
(string-append "mirror://kernel.org"
|
||||||
|
@ -128,6 +136,98 @@ on hardware which requires nonfree software to function."))))
|
||||||
(define-public linux-arm64-generic
|
(define-public linux-arm64-generic
|
||||||
(corrupt-linux linux-libre-arm64-generic #:name "linux-arm64-generic"))
|
(corrupt-linux linux-libre-arm64-generic #:name "linux-arm64-generic"))
|
||||||
|
|
||||||
|
|
||||||
|
;;;
|
||||||
|
;;; Linux-XanMod
|
||||||
|
;;;
|
||||||
|
|
||||||
|
(define (make-linux-xanmod-source version xanmod-revision hash-string)
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (string-append "https://gitlab.com/xanmod/linux/-/archive/"
|
||||||
|
version "-" xanmod-revision ".tar.bz2"))
|
||||||
|
(sha256 hash-string)))
|
||||||
|
|
||||||
|
(define* (make-linux-xanmod version xanmod-revision source
|
||||||
|
#:key
|
||||||
|
(name "linux-xanmod")
|
||||||
|
(xanmod-defconfig "config_x86-64-v1"))
|
||||||
|
(let ((defconfig xanmod-defconfig) ;to be used in phases.
|
||||||
|
(base (customize-linux #:name name
|
||||||
|
#:source source
|
||||||
|
#:defconfig xanmod-defconfig
|
||||||
|
;; EXTRAVERSION is used instead.
|
||||||
|
#:configs (config->string
|
||||||
|
'(("CONFIG_LOCALVERSION" . "")))
|
||||||
|
#:extra-version xanmod-revision)))
|
||||||
|
(package
|
||||||
|
(inherit base)
|
||||||
|
(version version)
|
||||||
|
(arguments
|
||||||
|
(substitute-keyword-arguments (package-arguments base)
|
||||||
|
((#:phases phases)
|
||||||
|
#~(modify-phases #$phases
|
||||||
|
;; EXTRAVERSION is used instead.
|
||||||
|
(add-after 'unpack 'remove-localversion
|
||||||
|
(lambda _
|
||||||
|
(when (file-exists? "localversion")
|
||||||
|
(delete-file "localversion"))))
|
||||||
|
(add-before 'configure 'add-xanmod-defconfig
|
||||||
|
(lambda _
|
||||||
|
(rename-file
|
||||||
|
(string-append "CONFIGS/xanmod/gcc/" #$defconfig)
|
||||||
|
".config")
|
||||||
|
|
||||||
|
;; Adapted from `make-linux-libre*'.
|
||||||
|
(chmod ".config" #o666)
|
||||||
|
(let ((port (open-file ".config" "a"))
|
||||||
|
(extra-configuration
|
||||||
|
#$(config->string
|
||||||
|
;; FIXME: There might be other support missing.
|
||||||
|
(append '(("CONFIG_BLK_DEV_NVME" . #t)
|
||||||
|
("CONFIG_CRYPTO_XTS" . m)
|
||||||
|
("CONFIG_VIRTIO_CONSOLE" . m))
|
||||||
|
%default-extra-linux-options))))
|
||||||
|
(display extra-configuration port)
|
||||||
|
(close-port port))
|
||||||
|
(invoke "make" "oldconfig")
|
||||||
|
|
||||||
|
(rename-file
|
||||||
|
".config"
|
||||||
|
(string-append "arch/x86/configs/" #$defconfig))))))))
|
||||||
|
(native-inputs
|
||||||
|
(modify-inputs (package-native-inputs base)
|
||||||
|
;; cpio is needed for CONFIG_IKHEADERS.
|
||||||
|
(append cpio zstd)))
|
||||||
|
(home-page "https://xanmod.org/")
|
||||||
|
(supported-systems '("x86_64-linux"))
|
||||||
|
(synopsis
|
||||||
|
"Linux kernel distribution with custom settings and new features")
|
||||||
|
(description
|
||||||
|
"This package provides XanMod kernel, a general-purpose Linux kernel
|
||||||
|
distribution with custom settings and new features. It's built to provide a
|
||||||
|
stable, responsive and smooth desktop experience."))))
|
||||||
|
|
||||||
|
;; Linux-XanMod sources
|
||||||
|
(define-public linux-xanmod-version "6.3.10")
|
||||||
|
(define-public linux-xanmod-revision "xanmod1")
|
||||||
|
(define-public linux-xanmod-source
|
||||||
|
(make-linux-xanmod-source
|
||||||
|
linux-xanmod-version
|
||||||
|
linux-xanmod-revision
|
||||||
|
(base32 "0gnbr37cxrhw4q6bydw8xza31sgj04hj0qxlva1gycw064p7fcxc")))
|
||||||
|
|
||||||
|
;; Linux-XanMod packages
|
||||||
|
(define-public linux-xanmod
|
||||||
|
(make-linux-xanmod linux-xanmod-version
|
||||||
|
linux-xanmod-revision
|
||||||
|
linux-xanmod-source))
|
||||||
|
|
||||||
|
|
||||||
|
;;;
|
||||||
|
;;; Firmwares
|
||||||
|
;;;
|
||||||
|
|
||||||
(define-public linux-firmware
|
(define-public linux-firmware
|
||||||
(package
|
(package
|
||||||
(name "linux-firmware")
|
(name "linux-firmware")
|
||||||
|
|
Loading…
Reference in a new issue