From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:39317) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1d71rN-0005AY-HP for guix-patches@gnu.org; Sat, 06 May 2017 11:43:06 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1d71rL-0000Fd-NP for guix-patches@gnu.org; Sat, 06 May 2017 11:43:05 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:60208) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1d71rL-0000FN-KT for guix-patches@gnu.org; Sat, 06 May 2017 11:43:03 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1d71rL-0002cu-F7 for guix-patches@gnu.org; Sat, 06 May 2017 11:43:03 -0400 Subject: bug#26339: [PATCH v3 4/9] bootloader: Stop using grub module. Resent-Message-ID: From: Mathieu Othacehe Date: Sat, 6 May 2017 17:41:49 +0200 Message-Id: <20170506154154.17836-5-m.othacehe@gmail.com> In-Reply-To: <20170506154154.17836-1-m.othacehe@gmail.com> References: <20170506154154.17836-1-m.othacehe@gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 26339@debbugs.gnu.org * gnu.scm (%public-modules): Replace grub by bootloader. * gnu/tests.scm (define-module): Ditto. * gnu/tests/nfs.scm (define-module): Ditto. --- gnu.scm | 3 ++- gnu/tests.scm | 3 ++- gnu/tests/nfs.scm | 3 ++- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/gnu.scm b/gnu.scm index 932e4cdd5..56b84b74d 100644 --- a/gnu.scm +++ b/gnu.scm @@ -1,6 +1,7 @@ ;;; GNU Guix --- Functional package management for GNU ;;; Copyright © 2014, 2015, 2016 Ludovic Courtès ;;; Copyright © 2015 Joshua S. Grant +;;; Copyright © 2017 Mathieu Othacehe ;;; ;;; This file is part of GNU Guix. ;;; @@ -34,7 +35,7 @@ '((gnu system) (gnu system mapped-devices) (gnu system file-systems) - (gnu system grub) ; 'grub-configuration' + (gnu system bootloader) (gnu system pam) (gnu system shadow) ; 'user-account' (gnu system linux-initrd) diff --git a/gnu/tests.scm b/gnu/tests.scm index 810711ab9..d162f441f 100644 --- a/gnu/tests.scm +++ b/gnu/tests.scm @@ -1,5 +1,6 @@ ;;; GNU Guix --- Functional package management for GNU ;;; Copyright © 2016, 2017 Ludovic Courtès +;;; Copyright © 2017 Mathieu Othacehe ;;; ;;; This file is part of GNU Guix. ;;; @@ -21,7 +22,7 @@ #:use-module (guix utils) #:use-module (guix records) #:use-module (gnu system) - #:use-module (gnu system grub) + #:use-module (gnu system bootloader) #:use-module (gnu system file-systems) #:use-module (gnu system shadow) #:use-module (gnu services) diff --git a/gnu/tests/nfs.scm b/gnu/tests/nfs.scm index 1f28f5a5b..432fc83a1 100644 --- a/gnu/tests/nfs.scm +++ b/gnu/tests/nfs.scm @@ -1,6 +1,7 @@ ;;; GNU Guix --- Functional package management for GNU ;;; Copyright © 2016 Ludovic Courtès ;;; Copyright © 2016 John Darrington +;;; Copyright © 2017 Mathieu Othacehe ;;; ;;; This file is part of GNU Guix. ;;; @@ -20,7 +21,7 @@ (define-module (gnu tests nfs) #:use-module (gnu tests) #:use-module (gnu system) - #:use-module (gnu system grub) + #:use-module (gnu system bootloader) #:use-module (gnu system file-systems) #:use-module (gnu system shadow) #:use-module (gnu system vm) -- 2.12.2