mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-19 14:07:01 +01:00
system: Add wandboard installer.
* gnu/bootloader/u-boot.scm (u-boot-wandboard-bootloader): New exported variable. * gnu/system/install.scm (wandboard-installation-os): New exported variable.
This commit is contained in:
parent
07ca90458f
commit
fd5536e32b
2 changed files with 14 additions and 2 deletions
|
@ -34,7 +34,8 @@ (define-module (gnu bootloader u-boot)
|
||||||
u-boot-banana-pi-m2-ultra-bootloader
|
u-boot-banana-pi-m2-ultra-bootloader
|
||||||
u-boot-beaglebone-black-bootloader
|
u-boot-beaglebone-black-bootloader
|
||||||
u-boot-mx6cuboxi-bootloader
|
u-boot-mx6cuboxi-bootloader
|
||||||
u-boot-nintendo-nes-classic-edition-bootloader))
|
u-boot-nintendo-nes-classic-edition-bootloader
|
||||||
|
u-boot-wandboard-bootloader))
|
||||||
|
|
||||||
(define install-u-boot
|
(define install-u-boot
|
||||||
#~(lambda (bootloader device mount-point)
|
#~(lambda (bootloader device mount-point)
|
||||||
|
@ -130,3 +131,8 @@ (define u-boot-mx6cuboxi-bootloader
|
||||||
(bootloader
|
(bootloader
|
||||||
(inherit u-boot-imx-bootloader)
|
(inherit u-boot-imx-bootloader)
|
||||||
(package u-boot-mx6cuboxi)))
|
(package u-boot-mx6cuboxi)))
|
||||||
|
|
||||||
|
(define u-boot-wandboard-bootloader
|
||||||
|
(bootloader
|
||||||
|
(inherit u-boot-imx-bootloader)
|
||||||
|
(package u-boot-wandboard)))
|
||||||
|
|
|
@ -50,7 +50,8 @@ (define-module (gnu system install)
|
||||||
banana-pi-m2-ultra-installation-os
|
banana-pi-m2-ultra-installation-os
|
||||||
beaglebone-black-installation-os
|
beaglebone-black-installation-os
|
||||||
mx6cuboxi-installation-os
|
mx6cuboxi-installation-os
|
||||||
nintendo-nes-classic-edition-installation-os))
|
nintendo-nes-classic-edition-installation-os
|
||||||
|
wandboard-installation-os))
|
||||||
|
|
||||||
;;; Commentary:
|
;;; Commentary:
|
||||||
;;;
|
;;;
|
||||||
|
@ -440,6 +441,11 @@ (define nintendo-nes-classic-edition-installation-os
|
||||||
"/dev/mmcblk0" ; SD card (solder it yourself)
|
"/dev/mmcblk0" ; SD card (solder it yourself)
|
||||||
"ttyS0"))
|
"ttyS0"))
|
||||||
|
|
||||||
|
(define wandboard-installation-os
|
||||||
|
(embedded-installation-os u-boot-wandboard-bootloader
|
||||||
|
"/dev/mmcblk0" ; SD card storage
|
||||||
|
"ttymxc0"))
|
||||||
|
|
||||||
;; Return the default os here so 'guix system' can consume it directly.
|
;; Return the default os here so 'guix system' can consume it directly.
|
||||||
installation-os
|
installation-os
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue