unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
blob 19ef4120f4604143e154c667477319224f19077d 1320 bytes (raw)
name: gnu/system/boards/beaglebone-black.scm 	 # note: path name is non-authoritative(*)

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
 
(define-module (gnu system boards beaglebone-black)
  #:use-module (gnu)
  #:use-module (gnu system install)
  #:use-module (gnu bootloader u-boot)
  #:use-module (gnu packages bootloaders)
  #:use-module (gnu packages linux)
  #:export (beaglebone-black-installation-os))

(define beaglebone-black-installation-os
  (operating-system
    (inherit installation-os)
    (bootloader (bootloader-configuration
                 (bootloader u-boot-beaglebone-black-bootloader)
                 (target "/dev/sda")))
    (kernel linux-libre)
    (initrd (lambda (fs . rest)
              (apply base-initrd fs
                     ;; This module is required to mount the sd card.
                     #:extra-modules (list "omap_hsmmc")
                     rest)))
    (services (append
               ;; mingetty does not work on serial lines.
               ;; Use agetty with board-specific serial parameters.
               (list (agetty-service
                      (agetty-configuration
                       (extra-options '("-L"))
                       (baud-rate "115200")
                       (term "vt100")
                       (tty "ttyO0"))))
               (operating-system-user-services installation-os)))))

;; Return it here so 'guix system' can consume it directly.
beaglebone-black-installation-os

debug log:

solving 19ef412 ...
found 19ef412 in https://yhetil.org/guix-patches/1512636765-3322-1-git-send-email-m.othacehe@gmail.com/

applying [1/1] https://yhetil.org/guix-patches/1512636765-3322-1-git-send-email-m.othacehe@gmail.com/
diff --git a/gnu/system/boards/beaglebone-black.scm b/gnu/system/boards/beaglebone-black.scm
new file mode 100644
index 0000000..19ef412

Checking patch gnu/system/boards/beaglebone-black.scm...
Applied patch gnu/system/boards/beaglebone-black.scm cleanly.

index at:
100644 19ef4120f4604143e154c667477319224f19077d	gnu/system/boards/beaglebone-black.scm

(*) Git path names are given by the tree(s) the blob belongs to.
    Blobs themselves have no identifier aside from the hash of its contents.^

Code repositories for project(s) associated with this public inbox

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

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).