diff options
| author | Vagrant Cascadian <vagrant@debian.org> | 2018-05-09 06:59:10 +0000 |
|---|---|---|
| committer | Danny Milosavljevic <dannym@scratchpost.org> | 2018-05-11 12:25:43 +0200 |
| commit | 1b960787e21eb746df051592094478dd5ce8bcbb (patch) | |
| tree | f95b5b97effdc7674aa97e09112494b270c05a73 | |
| parent | fd5536e32b7896e46daf55a52805ea020e43b088 (diff) | |
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.
| -rw-r--r-- | gnu/bootloader/u-boot.scm | 6 | ||||
| -rw-r--r-- | gnu/packages/bootloaders.scm | 3 | ||||
| -rw-r--r-- | gnu/system/install.scm | 6 |
3 files changed, 15 insertions, 0 deletions
diff --git a/gnu/bootloader/u-boot.scm b/gnu/bootloader/u-boot.scm index 9a62a166f9e..bc8f98f32f8 100644 --- a/gnu/bootloader/u-boot.scm +++ b/gnu/bootloader/u-boot.scm | |||
| @@ -35,6 +35,7 @@ | |||
| 35 | u-boot-beaglebone-black-bootloader | 35 | u-boot-beaglebone-black-bootloader |
| 36 | u-boot-mx6cuboxi-bootloader | 36 | u-boot-mx6cuboxi-bootloader |
| 37 | u-boot-nintendo-nes-classic-edition-bootloader | 37 | u-boot-nintendo-nes-classic-edition-bootloader |
| 38 | u-boot-novena-bootloader | ||
| 38 | u-boot-wandboard-bootloader)) | 39 | u-boot-wandboard-bootloader)) |
| 39 | 40 | ||
| 40 | (define install-u-boot | 41 | (define install-u-boot |
| @@ -136,3 +137,8 @@ | |||
| 136 | (bootloader | 137 | (bootloader |
| 137 | (inherit u-boot-imx-bootloader) | 138 | (inherit u-boot-imx-bootloader) |
| 138 | (package u-boot-wandboard))) | 139 | (package u-boot-wandboard))) |
| 140 | |||
| 141 | (define u-boot-novena-bootloader | ||
| 142 | (bootloader | ||
| 143 | (inherit u-boot-imx-bootloader) | ||
| 144 | (package u-boot-novena))) | ||
diff --git a/gnu/packages/bootloaders.scm b/gnu/packages/bootloaders.scm index 0db6ad3f6a3..c0a0101c55d 100644 --- a/gnu/packages/bootloaders.scm +++ b/gnu/packages/bootloaders.scm | |||
| @@ -469,6 +469,9 @@ also initializes the boards (RAM etc).") | |||
| 469 | (define-public u-boot-mx6cuboxi | 469 | (define-public u-boot-mx6cuboxi |
| 470 | (make-u-boot-package "mx6cuboxi" "arm-linux-gnueabihf")) | 470 | (make-u-boot-package "mx6cuboxi" "arm-linux-gnueabihf")) |
| 471 | 471 | ||
| 472 | (define-public u-boot-novena | ||
| 473 | (make-u-boot-package "novena" "arm-linux-gnueabihf")) | ||
| 474 | |||
| 472 | (define-public vboot-utils | 475 | (define-public vboot-utils |
| 473 | (package | 476 | (package |
| 474 | (name "vboot-utils") | 477 | (name "vboot-utils") |
diff --git a/gnu/system/install.scm b/gnu/system/install.scm index 9bb1d8145f2..a2917e485ff 100644 --- a/gnu/system/install.scm +++ b/gnu/system/install.scm | |||
| @@ -51,6 +51,7 @@ | |||
| 51 | beaglebone-black-installation-os | 51 | beaglebone-black-installation-os |
| 52 | mx6cuboxi-installation-os | 52 | mx6cuboxi-installation-os |
| 53 | nintendo-nes-classic-edition-installation-os | 53 | nintendo-nes-classic-edition-installation-os |
| 54 | novena-installation-os | ||
| 54 | wandboard-installation-os)) | 55 | wandboard-installation-os)) |
| 55 | 56 | ||
| 56 | ;;; Commentary: | 57 | ;;; Commentary: |
| @@ -436,6 +437,11 @@ The bootloader BOOTLOADER is installed to BOOTLOADER-TARGET." | |||
| 436 | "/dev/mmcblk0" ; SD card storage | 437 | "/dev/mmcblk0" ; SD card storage |
| 437 | "ttymxc0")) | 438 | "ttymxc0")) |
| 438 | 439 | ||
| 440 | (define novena-installation-os | ||
| 441 | (embedded-installation-os u-boot-novena-bootloader | ||
| 442 | "/dev/mmcblk1" ; SD card storage | ||
| 443 | "ttymxc1")) | ||
| 444 | |||
| 439 | (define nintendo-nes-classic-edition-installation-os | 445 | (define nintendo-nes-classic-edition-installation-os |
| 440 | (embedded-installation-os u-boot-nintendo-nes-classic-edition-bootloader | 446 | (embedded-installation-os u-boot-nintendo-nes-classic-edition-bootloader |
| 441 | "/dev/mmcblk0" ; SD card (solder it yourself) | 447 | "/dev/mmcblk0" ; SD card (solder it yourself) |
