all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Danny Milosavljevic <dannym@scratchpost.org>
To: <guix-devel@gnu.org>
Subject: Re: Question about Guix on Novena - mainly U-Boot
Date: Fri, 4 Dec 2020 20:15:23 +0100	[thread overview]
Message-ID: <20201204201514.754ebaa6@scratchpost.org> (raw)
In-Reply-To: <20201204194937.6060a798@scratchpost.org>

[-- Attachment #1: Type: text/plain, Size: 1168 bytes --]

For reference, the config.scm I used was:

(use-modules (gnu) (gnu bootloader u-boot))
(use-service-modules networking ssh desktop)
(use-package-modules bootloaders screen ssh linux)
;;; Note: Maybe better: linux-libre-arm-generic
;;; Note: Novena upstream uses Kernel 3.19
(operating-system
  (host-name "novena")
  (timezone "Europe/Vienna")
  (locale "en_US.utf8")
  (kernel-arguments '("console=ttymxc1,115200"))
  (initrd-modules (cons* "sdhci-esdhc-imx" "ahci_imx" "sd_mod" "i2c-dev" %base-initrd-modules))
  (bootloader (bootloader-configuration
               (bootloader u-boot-novena-bootloader)
               (target "/dev/sda")))
  (file-systems (cons (file-system
                        (device (file-system-label "novena-root"))
                        (mount-point "/")
                        (type "ext4"))
                      %base-file-systems))
  (packages (append (list screen openssh) %base-packages))
  (services (append (list (service dhcp-client-service-type)
                          (service openssh-service-type)
                          (service elogind-service-type))
                    %base-services)))

[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 488 bytes --]

  reply	other threads:[~2020-12-04 20:59 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-12-04 18:49 Question about Guix on Novena - mainly U-Boot Danny Milosavljevic
2020-12-04 19:15 ` Danny Milosavljevic [this message]
2020-12-05  0:33 ` Denis 'GNUtoo' Carikli
  -- strict thread matches above, loose matches on Subject: below --
2020-12-05  0:08 Stefan

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

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

  git send-email \
    --in-reply-to=20201204201514.754ebaa6@scratchpost.org \
    --to=dannym@scratchpost.org \
    --cc=guix-devel@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.
Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.