unofficial mirror of help-guix@gnu.org 
 help / color / mirror / Atom feed
From: Pierre Langlois <pierre.langlois@gmx.com>
To: help-guix@gnu.org
Subject: Re: Building installation image for ROCK64
Date: Sun, 12 Apr 2020 12:18:10 +0200	[thread overview]
Message-ID: <877dylaty5.fsf@gmx.com> (raw)
In-Reply-To: <87sgh9iz1v.fsf@simonsouth.net>

Hi Simon,

Simon South writes:

> Has anyone successfully built an installation image for a PINE64 ROCK64
> ARM SBC?

I managed to setup a ROCKPRO64 a few months ago (rk3399 chipset instead
of rk3328), maybe I can help :-).

>
> There's a definition for it in gnu/system/install.scm, but building the
> image with
>
>   guix system disk-image --system=aarch64-linux \
>     -e "(@ (gnu system install) rock64-installation-os)"

You probably noticed this takes a *long* time to run, making it quite
tedious to test changes (I believe this is being worked on though).

In the meanwhile, what you can do instead is setup the SD card manually,
say using fdisk & mkfs.ext4, and then use the 'guix system init' command
to install guix on it:

  $ mount /dev/mmcblk0 /mnt
  $ guix system init my-config.scm /mnt

That's considerably faster and should take care of installing guix and
the bootloader in the right place.

>
> and writing it to a microSD card fails to boot completely as the root
> filesystem can't be mounted:
>
>   GC Warning: pthread_getattr_np or pthread_attr_getstack failed for main thread
>   GC Warning: Couldn't read /proc/stat
>   Welcome, this is GNU's early boot Guile.
>   Use '--repl' for an initrd REPL.
>
>   loading kernel modules...
>   waiting for partition '416bf41b-f6b1-2062-6e00-1979416bf41b' to appear...
>   waiting for partition '416bf41b-f6b1-2062-6e00-1979416bf41b' to appear...
>   (...)
>   waiting for partition '416bf41b-f6b1-2062-6e00-1979416bf41b' to appear...
>   ERROR: In procedure scm-error:
>   failed to resolve partition "416bf41b-f6b1-2062-6e00-1979416bf41b"
>
> (I've checked and the GUID above does match the root partition.) I
> understand this often means a necessary kernel module is missing from
> initrd, but rebuilding the image using the definition below (mostly
> copied from install.scm) that explicitly includes the Rockchip MMC
> driver produces the same non-functioning result.
>
> Do you know the magic incantation necessary to produce a bootable image
> for the ROCK64?
>
> Alternatively, how might I proceed in diagnosing the issue here?
>
>   (use-modules (gnu system install)
>                (gnu system linux-initrd)
>                (gnu bootloader)
>                (gnu bootloader u-boot)
>                (gnu packages linux))
>
>   (operating-system
>    (inherit installation-os)
>    (bootloader (bootloader-configuration
>                 (bootloader u-boot-rock64-rk3328-bootloader)
>                 (target "/dev/mmcblk0")))
>    (kernel linux-libre)
>    (kernel-arguments
>     (cons "console=ttyS2"
>           (operating-system-user-kernel-arguments installation-os)))

To help debug this, you might want to remove the "quiet" argument so you
see some output from the kernel, I think it's added by default in
installation-os. Just setting (kernel-arguments '("consolte=ttyS2"))
should do.

>    (initrd-modules (append '("dw_mmc" "dw_mmc-rockchip") %base-initrd-modules)))

As Vagrant pointed out, you're probably missing some more modules. On
the rockpro64 I have the following:

    (initrd-modules
     (cons* "dw_mmc-rockchip"
            "phy-rockchip-emmc"
            "sdhci-of-arasan" ;; I believe this one is for rk3399 only,
                              ;; so won't help you.
            %base-initrd-modules))

It was quite some back-and-forth to figure out what was needed. What I
did was to boot a different distro, I think it was Arch at the time, and
look at the dmesg output to see what drivers were loading that I didn't
see with guix.

Hope this helps!

Thanks,
Pierre

  parent reply	other threads:[~2020-04-12 10:18 UTC|newest]

Thread overview: 10+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-04-11 19:48 Building installation image for ROCK64 Simon South
2020-04-11 21:12 ` Vagrant Cascadian
2020-04-12 16:19   ` Simon South
2020-04-26 14:31   ` Simon South
2020-04-26 17:09     ` Vagrant Cascadian
2020-04-27 13:19       ` Simon South
2020-04-27 17:22         ` Vagrant Cascadian
2020-04-12 10:18 ` Pierre Langlois [this message]
2020-04-12 10:27   ` Pierre Langlois
2020-04-12 16:25   ` Simon South

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://guix.gnu.org/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=877dylaty5.fsf@gmx.com \
    --to=pierre.langlois@gmx.com \
    --cc=help-guix@gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).