[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
05/06: gnu: linux-libre: Use "make dtbs_install" to install device tree
From: |
Ludovic Courtès |
Subject: |
05/06: gnu: linux-libre: Use "make dtbs_install" to install device tree files. |
Date: |
Sun, 20 May 2018 18:13:03 -0400 (EDT) |
civodul pushed a commit to branch master
in repository guix.
commit a8e3fd5f9d1abd903edc9a413325194ed44557bd
Author: Vagrant Cascadian <address@hidden>
Date: Sat May 19 21:08:41 2018 +0000
gnu: linux-libre: Use "make dtbs_install" to install device tree files.
* gnu/packages/linux.scm (make-linux-libre):
Use "make dtbs_install" to install device tree files.
Signed-off-by: Ludovic Courtès <address@hidden>
---
gnu/packages/linux.scm | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm
index 0c58b90..9dd9b7e 100644
--- a/gnu/packages/linux.scm
+++ b/gnu/packages/linux.scm
@@ -366,8 +366,10 @@ for ARCH and optionally VARIANT, or #f if there is no such
configuration."
(for-each (lambda (file) (install-file file out))
(find-files "."
"^(\\.config|bzImage|zImage|Image|vmlinuz|System\\.map)$"))
;; Install device tree files
- (for-each (lambda (file) (install-file file dtbdir))
- (find-files "." "\\.dtb$"))
+ (unless (null? (find-files "." "\\.dtb$"))
+ (mkdir-p dtbdir)
+ (invoke "make" (string-append "INSTALL_DTBS_PATH=" dtbdir)
+ "dtbs_install"))
;; Install kernel modules
(mkdir-p moddir)
(invoke "make"
- branch master updated (d8ac798 -> 5a9dc4a), Ludovic Courtès, 2018/05/20
- 05/06: gnu: linux-libre: Use "make dtbs_install" to install device tree files.,
Ludovic Courtès <=
- 04/06: gnu: Add vigra-c., Ludovic Courtès, 2018/05/20
- 03/06: gnu: Add python-glob2., Ludovic Courtès, 2018/05/20
- 01/06: gnu: Add ghc-semigroupoids-5.2.2., Ludovic Courtès, 2018/05/20
- 02/06: gnu: Add ghc-bytes., Ludovic Courtès, 2018/05/20
- 06/06: gnu: linux-libre: Enable build for aarch64-linux., Ludovic Courtès, 2018/05/20