guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

02/02: system: grub: Load relevant EFI modules on EFI systems.


From: Ludovic Courtès
Subject: 02/02: system: grub: Load relevant EFI modules on EFI systems.
Date: Tue, 3 Jan 2017 17:17:15 +0000 (UTC)

civodul pushed a commit to branch master
in repository guix.

commit 4d0a3d8e9fca6dd45cfc9a5b49bce9b9f151b5e7
Author: Ludovic Courtès <address@hidden>
Date:   Tue Jan 3 18:14:50 2017 +0100

    system: grub: Load relevant EFI modules on EFI systems.
    
    * gnu/system/grub.scm (eye-candy)[setup-gfxterm-body]: Add 'insmod'
    invocations when ${grub_platform} is "efi".
---
 gnu/system/grub.scm |   17 +++++++++++++----
 1 file changed, 13 insertions(+), 4 deletions(-)

diff --git a/gnu/system/grub.scm b/gnu/system/grub.scm
index 4657b06..067b291 100644
--- a/gnu/system/grub.scm
+++ b/gnu/system/grub.scm
@@ -1,5 +1,5 @@
 ;;; GNU Guix --- Functional package management for GNU
-;;; Copyright © 2013, 2014, 2015, 2016 Ludovic Courtès <address@hidden>
+;;; Copyright © 2013, 2014, 2015, 2016, 2017 Ludovic Courtès <address@hidden>
 ;;; Copyright © 2016 Chris Marusich <address@hidden>
 ;;;
 ;;; This file is part of GNU Guix.
@@ -177,9 +177,9 @@ STORE-MOUNT-POINT is its mount point; these are used to 
determine where the
 background image and fonts must be searched for.  SYSTEM must be the target
 system string---e.g., \"x86_64-linux\"."
   (define setup-gfxterm-body
-    ;; Intel systems need to be switched into graphics mode, whereas most
-    ;; other modern architectures have no other mode and therefore don't need
-    ;; to be switched.
+    ;; Intel and EFI systems need to be switched into graphics mode, whereas
+    ;; most other modern architectures have no other mode and therefore don't
+    ;; need to be switched.
     (if (string-match "^(x86_64|i[3-6]86)-" system)
         "
   # Leave 'gfxmode' to 'auto'.
@@ -188,6 +188,15 @@ system string---e.g., \"x86_64-linux\"."
   insmod video_bochs
   insmod video_cirrus
   insmod gfxterm
+
+  if [ \"${grub_platform}\" == efi ]; then
+    # This is for (U)EFI systems (these modules are unavailable in the
+    # non-EFI GRUB.)  If we don't load them, GRUB boots in \"blind mode\",
+    # which isn't convenient.
+    insmod efi_gop
+    insmod efi_uga
+  fi
+
   terminal_output gfxterm
 "
         ""))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]