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.
1 files changed, 3 insertions(+), 1 deletions(-) M gnu/packages/bootloaders.scm
M gnu/packages/bootloaders.scm => gnu/packages/bootloaders.scm +3 -1
@@ 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)