From 5c46f227d5b6cfd4a98f602d6b41fed1a85eea0a Mon Sep 17 00:00:00 2001 From: Petr Hodina Date: Thu, 30 Jun 2022 11:15:18 +0200 Subject: [PATCH 3/7] gnu: Add u-boot-pinenote. * gnu/packages/bootloaders.scm (u-boot-pinenote): New variable. diff --git a/gnu/packages/bootloaders.scm b/gnu/packages/bootloaders.scm index 9f5e26fd28..fc8be31f37 100644 --- a/gnu/packages/bootloaders.scm +++ b/gnu/packages/bootloaders.scm @@ -567,6 +567,19 @@ (define u-boot also initializes the boards (RAM etc).") (license license:gpl2+))) +(define u-boot-pinenote + (package + (inherit u-boot) + (version "2022.07") + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://gitlab.com/phodina/u-boot-quartz64") + (commit "quartz64"))) + (sha256 + (base32 + "2l1w13dznj0z1ibqv2d6ljx2ma1gnf5x5ay3dqkqwxr6750nbq38")))))) + (define-public u-boot-tools (package (inherit u-boot) -- 2.36.1