2013-09-11 16:36:50 -04:00
|
|
|
;;; GNU Guix --- Functional package management for GNU
|
2014-01-29 07:04:00 -05:00
|
|
|
;;; Copyright © 2013, 2014 Ludovic Courtès <ludo@gnu.org>
|
2013-09-11 16:36:50 -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 (gnu system grub)
|
|
|
|
#:use-module (guix store)
|
|
|
|
#:use-module (guix packages)
|
|
|
|
#:use-module (guix derivations)
|
|
|
|
#:use-module (guix records)
|
gnu: vm: Rewrite helper functions as monadic functions.
* gnu/system/dmd.scm (host-name-service, nscd-service, mingetty-service,
syslog-service, guix-service, static-networking-service): Rewrite as
monadic functions.
(dmd-configuration-file): Use 'text-file' instead of
'add-text-to-store'.
* gnu/system/grub.scm (grub-configuration-file): Rewrite as a monadic
function.
* gnu/system/linux.scm (pam-services->directory): Likewise.
* gnu/system/shadow.scm (group-file, passwd-file, guix-build-accounts):
Likewise.
* gnu/system/vm.scm (expression->derivation-in-linux-vm, qemu-image,
union, system-qemu-image): Likewise.
2013-10-03 15:30:30 -04:00
|
|
|
#:use-module (guix monads)
|
2014-04-28 17:40:24 -04:00
|
|
|
#:use-module (guix gexp)
|
2013-09-11 16:36:50 -04:00
|
|
|
#:use-module (ice-9 match)
|
|
|
|
#:use-module (srfi srfi-1)
|
|
|
|
#:export (menu-entry
|
|
|
|
menu-entry?
|
|
|
|
grub-configuration-file))
|
|
|
|
|
|
|
|
;;; Commentary:
|
|
|
|
;;;
|
|
|
|
;;; Configuration of GNU GRUB.
|
|
|
|
;;;
|
|
|
|
;;; Code:
|
|
|
|
|
|
|
|
(define-record-type* <menu-entry>
|
|
|
|
menu-entry make-menu-entry
|
|
|
|
menu-entry?
|
|
|
|
(label menu-entry-label)
|
|
|
|
(linux menu-entry-linux)
|
|
|
|
(linux-arguments menu-entry-linux-arguments
|
2014-04-28 17:40:24 -04:00
|
|
|
(default '())) ; list of string-valued gexps
|
|
|
|
(initrd menu-entry-initrd)) ; file name of the initrd as a gexp
|
2013-09-11 16:36:50 -04:00
|
|
|
|
gnu: vm: Rewrite helper functions as monadic functions.
* gnu/system/dmd.scm (host-name-service, nscd-service, mingetty-service,
syslog-service, guix-service, static-networking-service): Rewrite as
monadic functions.
(dmd-configuration-file): Use 'text-file' instead of
'add-text-to-store'.
* gnu/system/grub.scm (grub-configuration-file): Rewrite as a monadic
function.
* gnu/system/linux.scm (pam-services->directory): Likewise.
* gnu/system/shadow.scm (group-file, passwd-file, guix-build-accounts):
Likewise.
* gnu/system/vm.scm (expression->derivation-in-linux-vm, qemu-image,
union, system-qemu-image): Likewise.
2013-10-03 15:30:30 -04:00
|
|
|
(define* (grub-configuration-file entries
|
2013-09-11 16:36:50 -04:00
|
|
|
#:key (default-entry 1) (timeout 5)
|
|
|
|
(system (%current-system)))
|
gnu: vm: Rewrite helper functions as monadic functions.
* gnu/system/dmd.scm (host-name-service, nscd-service, mingetty-service,
syslog-service, guix-service, static-networking-service): Rewrite as
monadic functions.
(dmd-configuration-file): Use 'text-file' instead of
'add-text-to-store'.
* gnu/system/grub.scm (grub-configuration-file): Rewrite as a monadic
function.
* gnu/system/linux.scm (pam-services->directory): Likewise.
* gnu/system/shadow.scm (group-file, passwd-file, guix-build-accounts):
Likewise.
* gnu/system/vm.scm (expression->derivation-in-linux-vm, qemu-image,
union, system-qemu-image): Likewise.
2013-10-03 15:30:30 -04:00
|
|
|
"Return the GRUB configuration file for ENTRIES, a list of
|
2013-09-11 16:36:50 -04:00
|
|
|
<menu-entry> objects, defaulting to DEFAULT-ENTRY and with the given TIMEOUT."
|
2014-04-28 17:40:24 -04:00
|
|
|
(define entry->gexp
|
2013-09-11 16:36:50 -04:00
|
|
|
(match-lambda
|
|
|
|
(($ <menu-entry> label linux arguments initrd)
|
2014-04-28 17:40:24 -04:00
|
|
|
#~(format port "menuentry ~s {
|
|
|
|
linux ~a/bzImage ~a
|
gnu: vm: Rewrite helper functions as monadic functions.
* gnu/system/dmd.scm (host-name-service, nscd-service, mingetty-service,
syslog-service, guix-service, static-networking-service): Rewrite as
monadic functions.
(dmd-configuration-file): Use 'text-file' instead of
'add-text-to-store'.
* gnu/system/grub.scm (grub-configuration-file): Rewrite as a monadic
function.
* gnu/system/linux.scm (pam-services->directory): Likewise.
* gnu/system/shadow.scm (group-file, passwd-file, guix-build-accounts):
Likewise.
* gnu/system/vm.scm (expression->derivation-in-linux-vm, qemu-image,
union, system-qemu-image): Likewise.
2013-10-03 15:30:30 -04:00
|
|
|
initrd ~a
|
2013-09-11 16:36:50 -04:00
|
|
|
}~%"
|
2014-04-28 17:40:24 -04:00
|
|
|
#$label
|
|
|
|
#$linux (string-join (list #$@arguments))
|
|
|
|
#$initrd))))
|
|
|
|
|
|
|
|
(define builder
|
|
|
|
#~(call-with-output-file #$output
|
|
|
|
(lambda (port)
|
|
|
|
(format port "
|
|
|
|
set default=~a
|
|
|
|
set timeout=~a
|
|
|
|
search.file ~a/bzImage~%"
|
|
|
|
#$default-entry #$timeout
|
|
|
|
#$(any (match-lambda
|
|
|
|
(($ <menu-entry> _ linux)
|
|
|
|
linux))
|
|
|
|
entries))
|
|
|
|
#$@(map entry->gexp entries))))
|
2013-09-11 16:36:50 -04:00
|
|
|
|
2014-04-28 17:40:24 -04:00
|
|
|
(gexp->derivation "grub.cfg" builder))
|
2013-09-11 16:36:50 -04:00
|
|
|
|
|
|
|
;;; grub.scm ends here
|