diff options
author | Leo Famulari <leo@famulari.name> | 2017-07-23 19:06:49 -0400 |
---|---|---|
committer | Leo Famulari <leo@famulari.name> | 2017-07-23 19:06:49 -0400 |
commit | e081e2dd0b4c3a842d0bac6384545861c76e02d5 (patch) | |
tree | d167cd736ae1cca8efe90f0d38e25b14fcaa3b99 /gnu/packages/bootloaders.scm | |
parent | d3dce32216905a3beab6cdc6ba444d92f934ea29 (diff) | |
parent | 2472f7a8f1343ff11bb14e7135faddac3fc38e20 (diff) | |
download | patches-e081e2dd0b4c3a842d0bac6384545861c76e02d5.tar patches-e081e2dd0b4c3a842d0bac6384545861c76e02d5.tar.gz |
Merge branch 'master' into core-updates
Diffstat (limited to 'gnu/packages/bootloaders.scm')
-rw-r--r-- | gnu/packages/bootloaders.scm | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/gnu/packages/bootloaders.scm b/gnu/packages/bootloaders.scm index 53cf7741a9..d103c71072 100644 --- a/gnu/packages/bootloaders.scm +++ b/gnu/packages/bootloaders.scm @@ -6,6 +6,7 @@ ;;; Copyright © 2016, 2017 Marius Bakke <mbakke@fastmail.com> ;;; Copyright © 2016, 2017 Danny Milosavljevic <dannym@scratchpost.org> ;;; Copyright © 2016, 2017 David Craven <david@craven.ch> +;;; Copyright © 2017 Efraim Flashner <efraim@flashner.co.il> ;;; ;;; This file is part of GNU Guix. ;;; @@ -263,7 +264,7 @@ tree binary files. These are board description files used by Linux and BSD.") (define u-boot (package (name "u-boot") - (version "2017.03") + (version "2017.07") (source (origin (method url-fetch) (uri (string-append @@ -271,7 +272,7 @@ tree binary files. These are board description files used by Linux and BSD.") "u-boot-" version ".tar.bz2")) (sha256 (base32 - "0gqihplap05dlpwdb971wsqyv01nz2vabwq5g5649gr5jczsyjzm")))) + "1zzywk0fgngm1mfnhkp8d0v57rs51zr1y6rp4p03i6nbibfbyx2k")))) (native-inputs `(("bc" ,bc) ("dtc" ,dtc) @@ -336,3 +337,6 @@ also initializes the boards (RAM etc).") (define-public u-boot-beagle-bone-black (make-u-boot-package "am335x_boneblack" "arm-linux-gnueabihf")) + +(define-public u-boot-odroid-c2 + (make-u-boot-package "odroid-c2" "aarch64-linux-gnu")) |