system: Add u-boot-novena installer.
* gnu/packages/bootloaders.scm (u-boot-novena): New variable. * gnu/bootloader/u-boot.scm (u-boot-novena-bootloader): New exported variable. * gnu/system/install.scm (novena-installation-os): New exported variable.
This commit is contained in:
parent
fd5536e32b
commit
1b960787e2
|
@ -35,6 +35,7 @@
|
||||||
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-novena-bootloader
|
||||||
u-boot-wandboard-bootloader))
|
u-boot-wandboard-bootloader))
|
||||||
|
|
||||||
(define install-u-boot
|
(define install-u-boot
|
||||||
|
@ -136,3 +137,8 @@
|
||||||
(bootloader
|
(bootloader
|
||||||
(inherit u-boot-imx-bootloader)
|
(inherit u-boot-imx-bootloader)
|
||||||
(package u-boot-wandboard)))
|
(package u-boot-wandboard)))
|
||||||
|
|
||||||
|
(define u-boot-novena-bootloader
|
||||||
|
(bootloader
|
||||||
|
(inherit u-boot-imx-bootloader)
|
||||||
|
(package u-boot-novena)))
|
||||||
|
|
|
@ -469,6 +469,9 @@ also initializes the boards (RAM etc).")
|
||||||
(define-public u-boot-mx6cuboxi
|
(define-public u-boot-mx6cuboxi
|
||||||
(make-u-boot-package "mx6cuboxi" "arm-linux-gnueabihf"))
|
(make-u-boot-package "mx6cuboxi" "arm-linux-gnueabihf"))
|
||||||
|
|
||||||
|
(define-public u-boot-novena
|
||||||
|
(make-u-boot-package "novena" "arm-linux-gnueabihf"))
|
||||||
|
|
||||||
(define-public vboot-utils
|
(define-public vboot-utils
|
||||||
(package
|
(package
|
||||||
(name "vboot-utils")
|
(name "vboot-utils")
|
||||||
|
|
|
@ -51,6 +51,7 @@
|
||||||
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
|
||||||
|
novena-installation-os
|
||||||
wandboard-installation-os))
|
wandboard-installation-os))
|
||||||
|
|
||||||
;;; Commentary:
|
;;; Commentary:
|
||||||
|
@ -436,6 +437,11 @@ The bootloader BOOTLOADER is installed to BOOTLOADER-TARGET."
|
||||||
"/dev/mmcblk0" ; SD card storage
|
"/dev/mmcblk0" ; SD card storage
|
||||||
"ttymxc0"))
|
"ttymxc0"))
|
||||||
|
|
||||||
|
(define novena-installation-os
|
||||||
|
(embedded-installation-os u-boot-novena-bootloader
|
||||||
|
"/dev/mmcblk1" ; SD card storage
|
||||||
|
"ttymxc1"))
|
||||||
|
|
||||||
(define nintendo-nes-classic-edition-installation-os
|
(define nintendo-nes-classic-edition-installation-os
|
||||||
(embedded-installation-os u-boot-nintendo-nes-classic-edition-bootloader
|
(embedded-installation-os u-boot-nintendo-nes-classic-edition-bootloader
|
||||||
"/dev/mmcblk0" ; SD card (solder it yourself)
|
"/dev/mmcblk0" ; SD card (solder it yourself)
|
||||||
|
|
Loading…
Reference in New Issue