This is an automated email from the git hooks/post-receive script.

lfam pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new df8b8f0c76 gnu: u-boot-rock64-rk3328: Fix typo that causes boot 
failure.
df8b8f0c76 is described below

commit df8b8f0c76388239dac9f2892c97b92e92c92901
Author: Simon South <[email protected]>
AuthorDate: Fri Feb 24 15:08:09 2023 -0500

    gnu: u-boot-rock64-rk3328: Fix typo that causes boot failure.
    
    * gnu/packages/bootloaders.scm (u-boot-rock64-rk3328)[arguments]: Fix typo.
    
    Signed-off-by: Leo Famulari <[email protected]>
---
 gnu/packages/bootloaders.scm | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gnu/packages/bootloaders.scm b/gnu/packages/bootloaders.scm
index 9d56efb628..7e839fa859 100644
--- a/gnu/packages/bootloaders.scm
+++ b/gnu/packages/bootloaders.scm
@@ -1193,7 +1193,7 @@ Documentation} for more information (for example by 
running @samp{info
           #~(modify-phases #$phases
               (add-after 'unpack 'set-environment
                 (lambda* (#:key native-inputs inputs #:allow-other-keys)
-                  (setenv "BL31 "(search-input-file inputs "bl31.elf"))))))))
+                  (setenv "BL31" (search-input-file inputs "bl31.elf"))))))))
       (inputs
        (modify-inputs (package-inputs base)
          (append arm-trusted-firmware-rk3328))))))

Reply via email to