diff options
author | Danny Milosavljevic <dannym@scratchpost.org> | 2018-05-12 11:09:42 +0200 |
---|---|---|
committer | Danny Milosavljevic <dannym@scratchpost.org> | 2018-05-12 11:09:42 +0200 |
commit | 35e427d154b6bdcd1a6f68445efab9b384300ec9 (patch) | |
tree | e9091b1ed3921b29740993ab896593be96e4062f /gnu/packages/bootloaders.scm | |
parent | ac30d18c0ba668a91547c97b3637dfd9caabbd37 (diff) | |
download | patches-35e427d154b6bdcd1a6f68445efab9b384300ec9.tar patches-35e427d154b6bdcd1a6f68445efab9b384300ec9.tar.gz |
gnu: u-boot-pine64-plus: Use bundled dtc.
* gnu/packages/bootloaders.scm (u-boot-pine64-plus)[arguments]<#:phases>
[set-environment]: Use bundled dtc.
Diffstat (limited to 'gnu/packages/bootloaders.scm')
-rw-r--r-- | gnu/packages/bootloaders.scm | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/gnu/packages/bootloaders.scm b/gnu/packages/bootloaders.scm index ff9078b9f7..7aea959e83 100644 --- a/gnu/packages/bootloaders.scm +++ b/gnu/packages/bootloaders.scm @@ -442,9 +442,10 @@ also initializes the boards (RAM etc).") (let ((bl31 (string-append (assoc-ref inputs "firmware") "/bl31.bin"))) (setenv "BL31" bl31) - ;; This is necessary while we're using the bundled dtc. - (setenv "PATH" (string-append (getenv "PATH") ":" - "scripts/dtc"))) + ;; This is necessary when we're using the bundled dtc. + ;(setenv "PATH" (string-append (getenv "PATH") ":" + ; "scripts/dtc")) + ) #t)))))) (native-inputs `(("firmware" ,arm-trusted-firmware-pine64-plus) |