me
/
guix
Archived
1
0
Fork 0

system: examples: Add missing initrd to beaglebone-black.tmpl.

* gnu/system/examples/beaglebone-black.tmpl (operating-system): Add the
  initrd with "omap_hsmmc" as an extra-module.
master
Mathieu Othacehe 2017-12-22 08:46:56 +01:00
parent 5145001a15
commit a468f89743
No known key found for this signature in database
GPG Key ID: 8354763531769CA6
1 changed files with 5 additions and 0 deletions

View File

@ -15,6 +15,11 @@
(bootloader (bootloader-configuration (bootloader (bootloader-configuration
(bootloader u-boot-beaglebone-black-bootloader) (bootloader u-boot-beaglebone-black-bootloader)
(target "/dev/mmcblk1"))) (target "/dev/mmcblk1")))
(initrd (lambda (fs . rest)
(apply base-initrd fs
;; This module is required to mount the sd card.
#:extra-modules (list "omap_hsmmc")
rest)))
(file-systems (cons (file-system (file-systems (cons (file-system
(device "my-root") (device "my-root")
(title 'label) (title 'label)