diff options
author | Mathieu Othacehe <m.othacehe@gmail.com> | 2019-12-14 17:37:23 +0100 |
---|---|---|
committer | Mathieu Othacehe <m.othacehe@gmail.com> | 2019-12-14 17:41:10 +0100 |
commit | 94de8d0a7f54de4396b9a5954126460278a4c808 (patch) | |
tree | cec39a24ee1809a875e5c971e09e159b0e057422 /gnu/bootloader | |
parent | db78fc0679945e37e5ee3bfc28a363cabfda6800 (diff) | |
download | guix-94de8d0a7f54de4396b9a5954126460278a4c808.tar guix-94de8d0a7f54de4396b9a5954126460278a4c808.tar.gz |
gnu: Add u-boot-pine64-lts-bootloader.
* gnu/bootloader/u-boot.scm (u-boot-pine64-lts-bootloader): New variable.
Diffstat (limited to 'gnu/bootloader')
-rw-r--r-- | gnu/bootloader/u-boot.scm | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/gnu/bootloader/u-boot.scm b/gnu/bootloader/u-boot.scm index e21526eb7e..3e892c5475 100644 --- a/gnu/bootloader/u-boot.scm +++ b/gnu/bootloader/u-boot.scm @@ -1,6 +1,6 @@ ;;; GNU Guix --- Functional package management for GNU ;;; Copyright © 2017 David Craven <david@craven.ch> -;;; Copyright © 2017 Mathieu Othacehe <m.othacehe@gmail.com> +;;; Copyright © 2017, 2019 Mathieu Othacehe <m.othacehe@gmail.com> ;;; ;;; This file is part of GNU Guix. ;;; @@ -33,6 +33,7 @@ u-boot-nintendo-nes-classic-edition-bootloader u-boot-novena-bootloader u-boot-pine64-plus-bootloader + u-boot-pine64-lts-bootloader u-boot-pinebook-bootloader u-boot-puma-rk3399-bootloader u-boot-rock64-rk3328-bootloader @@ -206,6 +207,11 @@ (inherit u-boot-allwinner64-bootloader) (package u-boot-pine64-plus))) +(define u-boot-pine64-lts-bootloader + (bootloader + (inherit u-boot-allwinner-bootloader) + (package u-boot-pine64-lts))) + (define u-boot-pinebook-bootloader (bootloader (inherit u-boot-allwinner64-bootloader) |