From 7eda0c567baf1505ba918539d2095e08f328b466 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Ludovic=20Court=C3=A8s?= Date: Mon, 10 Nov 2014 15:52:39 +0100 Subject: [PATCH] install: Add GRUB to the set of global packages. * gnu/system/install.scm (installation-os)[packages]: Add GRUB. --- gnu/system/install.scm | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/gnu/system/install.scm b/gnu/system/install.scm index 567934e4c..12470d16c 100644 --- a/gnu/system/install.scm +++ b/gnu/system/install.scm @@ -24,6 +24,7 @@ #:use-module (gnu packages linux) #:use-module (gnu packages package-management) #:use-module (gnu packages disk) + #:use-module (gnu packages grub) #:use-module (gnu packages texinfo) #:export (installation-os)) @@ -244,8 +245,9 @@ Use Alt-F2 for documentation. ;; Explicitly allow for empty passwords. (base-pam-services #:allow-empty-passwords? #t)) - (packages (cons* texinfo-4 ; for the standalone Info reader + (packages (cons* texinfo-4 ;for the standalone Info reader parted ddrescue + grub ;mostly so xrefs to its manual work wireless-tools ;; XXX: We used to have GNU fdisk here, but as of version ;; 2.0.0a, that pulls Guile 1.8, which takes unreasonable -- 2.11.4.GIT