guix-commits
[Top][All Lists]
Advanced

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

01/01: bootloaders: uboot: Add .img and MLO files to binary outputs.


From: Mathieu Othacehe
Subject: 01/01: bootloaders: uboot: Add .img and MLO files to binary outputs.
Date: Mon, 6 Nov 2017 13:58:31 -0500 (EST)

mothacehe pushed a commit to branch master
in repository guix.

commit dd208b936cb5618ae34bf2df416bf2c0c3a049c3
Author: Mathieu Othacehe <address@hidden>
Date:   Fri Nov 3 15:17:08 2017 +0100

    bootloaders: uboot: Add .img and MLO files to binary outputs.
    
    * gnu/packages/bootloaders.scm (make-u-boot-package): Add .img and MLO files
      as binary output.
---
 gnu/packages/bootloaders.scm | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/bootloaders.scm b/gnu/packages/bootloaders.scm
index 8c093eb..2ed5e84 100644
--- a/gnu/packages/bootloaders.scm
+++ b/gnu/packages/bootloaders.scm
@@ -381,7 +381,9 @@ also initializes the boards (RAM etc).")
              (lambda* (#:key outputs make-flags #:allow-other-keys)
                (let* ((out (assoc-ref outputs "out"))
                       (libexec (string-append out "/libexec"))
-                      (uboot-files (find-files "." ".*\\.(bin|efi|spl)$")))
+                      (uboot-files (append
+                                    (find-files "." ".*\\.(bin|efi|img|spl)$")
+                                    '("MLO"))))
                  (mkdir-p libexec)
                  (for-each
                   (lambda (file)



reply via email to

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