2019-04-05 05:41:17 -04:00
|
|
|
;;; GNU Guix --- Functional package management for GNU
|
|
|
|
;;; Copyright © 2019 Danny Milosavljevic <dannym@scratchpost.org>
|
2020-03-20 11:13:20 -04:00
|
|
|
;;; Copyright © 2020 Mathieu Othacehe <m.othacehe@gmail.com>
|
2021-09-29 21:58:42 -04:00
|
|
|
;;; Copyright © 2021 Tobias Geerinckx-Rice <me@tobias.gr>
|
2019-04-05 05:41:17 -04:00
|
|
|
;;;
|
|
|
|
;;; This file is part of GNU Guix.
|
|
|
|
;;;
|
|
|
|
;;; GNU Guix is free software; you can redistribute it and/or modify it
|
|
|
|
;;; under the terms of the GNU General Public License as published by
|
|
|
|
;;; the Free Software Foundation; either version 3 of the License, or (at
|
|
|
|
;;; your option) any later version.
|
|
|
|
;;;
|
|
|
|
;;; GNU Guix is distributed in the hope that it will be useful, but
|
|
|
|
;;; WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
;;; GNU General Public License for more details.
|
|
|
|
;;;
|
|
|
|
;;; You should have received a copy of the GNU General Public License
|
|
|
|
;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
(define-module (guix build linux-module-build-system)
|
|
|
|
#:use-module ((guix build gnu-build-system) #:prefix gnu:)
|
|
|
|
#:use-module (guix build utils)
|
|
|
|
#:export (%standard-phases
|
|
|
|
linux-module-build))
|
|
|
|
|
|
|
|
;; Commentary:
|
|
|
|
;;
|
|
|
|
;; Builder-side code of linux-module build.
|
|
|
|
;;
|
|
|
|
;; Code:
|
|
|
|
|
2021-10-01 09:02:43 -04:00
|
|
|
;; Similar to make-linux-libre's "configure" phase.
|
2020-03-20 11:13:20 -04:00
|
|
|
(define* (configure #:key inputs target arch #:allow-other-keys)
|
2019-04-11 18:43:36 -04:00
|
|
|
(setenv "KCONFIG_NOTIMESTAMP" "1")
|
|
|
|
(setenv "KBUILD_BUILD_TIMESTAMP" (getenv "SOURCE_DATE_EPOCH"))
|
2020-03-20 11:13:20 -04:00
|
|
|
|
|
|
|
(setenv "ARCH" arch)
|
|
|
|
(format #t "`ARCH' set to `~a'~%" (getenv "ARCH"))
|
|
|
|
|
2019-04-11 18:43:36 -04:00
|
|
|
(when target
|
2021-10-01 09:02:43 -04:00
|
|
|
;; TODO? (setenv "EXTRA_VERSION" ,extra-version)
|
|
|
|
;; TODO? kernel ".config".
|
2019-04-11 18:43:36 -04:00
|
|
|
(setenv "CROSS_COMPILE" (string-append target "-"))
|
|
|
|
(format #t "`CROSS_COMPILE' set to `~a'~%"
|
2021-10-01 09:02:43 -04:00
|
|
|
(getenv "CROSS_COMPILE"))))
|
2019-04-11 18:43:36 -04:00
|
|
|
|
2021-10-01 08:53:56 -04:00
|
|
|
(define* (build #:key (make-flags '()) (parallel-build? #t)
|
|
|
|
(source-directory ".")
|
|
|
|
inputs
|
|
|
|
#:allow-other-keys)
|
2019-04-05 05:41:17 -04:00
|
|
|
(apply invoke "make" "-C"
|
|
|
|
(string-append (assoc-ref inputs "linux-module-builder")
|
|
|
|
"/lib/modules/build")
|
2021-09-29 21:58:42 -04:00
|
|
|
(string-append "M=" (canonicalize-path source-directory))
|
2021-10-01 08:53:56 -04:00
|
|
|
`(,@(if parallel-build?
|
|
|
|
`("-j" ,(number->string (parallel-job-count)))
|
|
|
|
'())
|
|
|
|
,@make-flags)))
|
2019-04-05 05:41:17 -04:00
|
|
|
|
2021-10-01 08:53:56 -04:00
|
|
|
;; Similar to the "modules_install" part of make-linux-libre.
|
|
|
|
(define* (install #:key (make-flags '()) (parallel-build? #t)
|
|
|
|
(source-directory ".")
|
2021-09-14 17:27:36 -04:00
|
|
|
inputs native-inputs outputs
|
2020-06-01 08:59:10 -04:00
|
|
|
#:allow-other-keys)
|
2019-04-05 05:41:17 -04:00
|
|
|
(let* ((out (assoc-ref outputs "out"))
|
2020-02-18 04:42:06 -05:00
|
|
|
(moddir (string-append out "/lib/modules")))
|
2019-04-05 05:41:17 -04:00
|
|
|
;; Install kernel modules
|
|
|
|
(mkdir-p moddir)
|
2020-06-01 08:59:10 -04:00
|
|
|
(apply invoke "make" "-C"
|
2019-04-05 05:41:17 -04:00
|
|
|
(string-append (assoc-ref inputs "linux-module-builder")
|
|
|
|
"/lib/modules/build")
|
2021-09-29 21:58:42 -04:00
|
|
|
(string-append "M=" (canonicalize-path source-directory))
|
2020-02-18 04:42:06 -05:00
|
|
|
;; Disable depmod because the Guix system's module directory
|
|
|
|
;; is an union of potentially multiple packages. It is not
|
|
|
|
;; possible to use depmod to usefully calculate a dependency
|
|
|
|
;; graph while building only one of those packages.
|
|
|
|
"DEPMOD=true"
|
2019-04-05 05:41:17 -04:00
|
|
|
(string-append "MODULE_DIR=" moddir)
|
|
|
|
(string-append "INSTALL_PATH=" out)
|
|
|
|
(string-append "INSTALL_MOD_PATH=" out)
|
|
|
|
"INSTALL_MOD_STRIP=1"
|
2020-06-01 08:59:10 -04:00
|
|
|
"modules_install"
|
2021-10-01 08:53:56 -04:00
|
|
|
`(,@(if parallel-build?
|
|
|
|
`("-j" ,(number->string (parallel-job-count)))
|
|
|
|
'())
|
|
|
|
,@make-flags))))
|
2019-04-05 05:41:17 -04:00
|
|
|
|
|
|
|
(define %standard-phases
|
|
|
|
(modify-phases gnu:%standard-phases
|
2019-04-11 18:43:36 -04:00
|
|
|
(replace 'configure configure)
|
2019-04-05 05:41:17 -04:00
|
|
|
(replace 'build build)
|
|
|
|
(replace 'install install)))
|
|
|
|
|
2020-06-01 08:59:10 -04:00
|
|
|
(define* (linux-module-build #:key inputs
|
|
|
|
(phases %standard-phases)
|
2020-03-20 11:13:20 -04:00
|
|
|
#:allow-other-keys #:rest args)
|
|
|
|
"Build the given package, applying all of PHASES in order, with a Linux
|
|
|
|
kernel in attendance."
|
2019-04-05 05:41:17 -04:00
|
|
|
(apply gnu:gnu-build
|
|
|
|
#:inputs inputs #:phases phases
|
|
|
|
args))
|
|
|
|
|
|
|
|
;;; linux-module-build-system.scm ends here
|