--- Begin Message ---
Subject: |
Enable to boot from emmc on rockpro64 |
Date: |
Tue, 13 Jul 2021 20:36:28 +0100 |
User-agent: |
mu4e 1.4.15; emacs 27.2 |
Hi guix!
I'm afraid since commit 3a851d45576e046d696fcf35b34d57b2cd28ea49 [0]
I've not been able to boot from eMMC on the rockpro64 board, it freezes
before loading the kernel. Re-introducing the work-around fixed the
issue for me (see patch attached).
Did we mean to remove the work-around? I'm wondering if there's
something I'm missing, or if I should instead boot from a USB device.
I've also updated u-boot to 2021.07 but I'm seeing the same boot issue
so it doesn't appear to be fixed upstream :-/
Anybody know of any other work around? If not, are you happy with the
patch attached?
Thanks,
Pierre
signature.asc
Description: PGP signature
0001-gnu-u-boot-rockpro64-rk3399-Disable-USB-boot.patch
Description: Text Data
[0]: https://lists.gnu.org/archive/html/guix-commits/2021-05/msg00085.html
--- End Message ---
--- Begin Message ---
Subject: |
Re: Enable to boot from emmc on rockpro64 |
Date: |
Sat, 31 Jul 2021 12:38:09 +0100 |
User-agent: |
mu4e 1.6.1; emacs 27.2 |
Hi Guix!
Pierre Langlois <pierre.langlois@gmx.com> writes:
> [[PGP Signed Part:Undecided]]
> Hi Vagrant,
>
> I just had a break-through with this! See inline.
(snip)
From 055d1d358c55811cafd4c56b919865b75e59d936 Mon Sep 17 00:00:00 2001
From: Pierre Langlois <pierre.langlois@gmx.com>
Date: Tue, 27 Jul 2021 20:15:55 +0100
Subject: [PATCH] gnu: u-boot-rockpro64-rk3399: Enable 'set-environment phase.
* gnu/packages/bootloaders.scm (u-boot-rockpro64-rk3399)[arguments]: Run
'set-environment phase after 'unpack instead of non-existent
'patch-rockpro64-config phase.
---
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 742992a119..4f7a8853e8 100644
--- a/gnu/packages/bootloaders.scm
+++ b/gnu/packages/bootloaders.scm
@@ -931,7 +931,7 @@ to Novena upstream, does not load u-boot.img from the first
partition.")
(substitute-keyword-arguments (package-arguments base)
((#:phases phases)
`(modify-phases ,phases
- (add-after 'patch-rockpro64-config 'set-environment
+ (add-after 'unpack 'set-environment
(lambda* (#:key inputs #:allow-other-keys)
(setenv "BL31" (string-append (assoc-ref inputs "firmware")
"/bl31.elf"))
Given this turned out to be a simple bug-fix, I just pushed it with
adb84ae8ea95a6f956d81fdac0b5c6508024a541
Closing!
Thanks,
Pierre
signature.asc
Description: PGP signature
--- End Message ---