unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
blob 3131bae3d7d8520cb425b747026ae06cb95f0fa3 4847 bytes (raw)
name: gnu/bootloader/uki.scm 	 # note: path name is non-authoritative(*)

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
 
;;; GNU Guix --- Functional package management for GNU
;;;
;;; 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 bootloader uki)
  #:use-module (gnu bootloader)
  #:use-module (gnu packages bootloaders)
  #:use-module (gnu packages efi)
  #:use-module (gnu packages linux)
  #:use-module (guix gexp)
  #:use-module (guix modules))

;; config generator makes script creating uki images
;; install runs script
;; install device is path to uefi dir

(define* (uefi-uki-configuration-file #:optional cert privkey)
  (lambda* (config entries #:key (old-entires '()) #:allow-other-keys)

    (define (menu-entry->uki e)
      (define stub (file-append systemd-stub "/libexec/" (systemd-stub-name)))
      (computed-file "uki.efi"
        (with-imported-modules (source-module-closure '((guix build utils)))
          #~(let ((args (list #$@(menu-entry-linux-arguments e))))
              (use-modules (guix build utils))
              (invoke #$(file-append ukify "/bin/ukify") "build"
                "--linux" #$(menu-entry-linux e)
                "--initrd" #$(menu-entry-initrd e)
                "--os-release" #$(menu-entry-label e)
                "--cmdline" (string-join args)
                "--stub" #$stub
                "-o" #$output)))))

    (program-file "install-uki"
      (with-imported-modules (source-module-closure '((guix build utils)))
        #~(let* ((target (cadr (command-line)))
                 (vendir (string-append target "/EFI/Guix"))
                 (schema (string-append vendir "/boot.mgr"))
                 (findmnt #$(file-append util-linux "/bin/findmnt"))
                 (efibootmgr #$(file-append efibootmgr "/sbin/efibootmgr")))
            (use-modules (guix build utils) (ice-9 popen) (ice-9 textual-ports))

            (define disk
              (call-with-port
                (open-pipe* OPEN_READ findmnt "-fnro" "SOURCE" "-T" target)
                (lambda (port) (get-line port)))) ; only 1 line: the device

            (when (file-exists? schema)
              (call-with-input-file schema
                (lambda (port)
                  (for-each (lambda (l)
                              (unless (string-null? l)
                                (system* efibootmgr "-B" "-L" l)))
                    (string-split (get-string-all port) #\lf)))))
            (when (directory-exists? vendir) (delete-file-recursively vendir))

            (mkdir-p vendir)
            (call-with-output-file schema
              (lambda (port)
                (for-each (lambda (uki label)
                            (let* ((base (basename uki))
                                   (out (string-append vendir "/" base)))
                              #$(if cert ; sign here so we can access root certs
                                  #~(invoke
                                      #$(file-append sbsigntools "/bin/sbsign")
                                      "--cert" #$cert "--key" #$privkey
                                      "--output" out uki)
                                  #~(copy-file uki out))
                              (invoke efibootmgr "-c" "-L" label "-d" disk "-l"
                                (string-append "\\EFI\\Guix\\" base))
                              (put-string port label)
                              (put-char port #\lf)))
                  (list #$@(map-in-order menu-entry->uki entries))
                  (list #$@(map-in-order menu-entry-label entries))))))))))

(define install-uefi-uki
  #~(lambda (bootloader target mount-point)
      (invoke (string-append mount-point "/boot/install-uki.scm")
              (string-append mount-point target))))

(define* (make-uefi-uki-bootloader #:optional cert privkey)
  (bootloader
    (name 'uefi-uki)
    (package systemd-stub)
    (installer install-uefi-uki)
    (disk-image-installer #f)
    (configuration-file "/boot/install-uki.scm")
    (configuration-file-generator (uefi-uki-configuration-file cert privkey))))

(define-public uefi-uki-bootloader (make-uefi-uki-bootloader))
;; use ukify genkey to generate cert and privkey. DO NOT include in store.
(define-public (uefi-uki-signed-bootloader cert privkey)
  (make-uefi-uki-bootloader cert privkey))

debug log:

solving 3131bae3d7 ...
found 3131bae3d7 in https://yhetil.org/guix-patches/8cad5fa9951dad5f663ca5d441db0ffc181e35fe.1705465384.git.lilah@lunabee.space/ ||
	https://yhetil.org/guix-patches/8cad5fa9951dad5f663ca5d441db0ffc181e35fe.1705466646.git.lilah@lunabee.space/

applying [1/1] https://yhetil.org/guix-patches/8cad5fa9951dad5f663ca5d441db0ffc181e35fe.1705465384.git.lilah@lunabee.space/
diff --git a/gnu/bootloader/uki.scm b/gnu/bootloader/uki.scm
new file mode 100644
index 0000000000..3131bae3d7

Checking patch gnu/bootloader/uki.scm...
Applied patch gnu/bootloader/uki.scm cleanly.

skipping https://yhetil.org/guix-patches/8cad5fa9951dad5f663ca5d441db0ffc181e35fe.1705466646.git.lilah@lunabee.space/ for 3131bae3d7
index at:
100644 3131bae3d7d8520cb425b747026ae06cb95f0fa3	gnu/bootloader/uki.scm

(*) Git path names are given by the tree(s) the blob belongs to.
    Blobs themselves have no identifier aside from the hash of its contents.^

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).