gnu: make-u-boot-package: Install "u-boot".

* gnu/packages/bootloaders.scm (make-u-boot-package): Install "u-boot".
This commit is contained in:
Danny Milosavljevic 2018-05-12 22:19:14 +02:00
parent dd4fe0c288
commit 0fcfed3950
No known key found for this signature in database
GPG key ID: E71A35542C30BAA5

View file

@ -413,6 +413,8 @@ (define (make-u-boot-package board triplet)
(find-files "." "^(MLO|SPL)$"))))
(mkdir-p libexec)
(install-file ".config" libexec)
;; Useful for "qemu -kernel".
(install-file "u-boot" libexec)
(for-each
(lambda (file)
(let ((target-file (string-append libexec "/" file)))