guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

branch master updated: Re-order the armhf linux-libre kernel packages to


From: guix-commits
Subject: branch master updated: Re-order the armhf linux-libre kernel packages to fix the build.
Date: Mon, 23 Mar 2020 01:47:14 -0400

This is an automated email from the git hooks/post-receive script.

lfam pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new 1eb27d5  Re-order the armhf linux-libre kernel packages to fix the 
build.
1eb27d5 is described below

commit 1eb27d5caec488dc901965b4cff8723e3670be90
Author: Leo Famulari <address@hidden>
AuthorDate: Mon Mar 23 01:33:31 2020 -0400

    Re-order the armhf linux-libre kernel packages to fix the build.
    
    This is a followup to commit 37f8c50cdc2e99189c74999319f3a1854d419546.
    
    Previously, building Guix crashed like this:
    
    ------
    In ice-9/eval.scm:
        619:8  4 (_ #f)
       626:19  3 (_ #<directory (gnu packages linux) 7fcf3e526c80>)
        159:9  2 (_ #<directory (gnu packages linux) 7fcf3e526c80>)
       223:20  1 (proc #<directory (gnu packages linux) 7fcf3e526c80>)
    In unknown file:
               0 (%resolve-variable (7 . linux-libre-arm-generic) #<directory 
(gnu packages linux) 7fcf3e526c80>)
    
    ERROR: In procedure %resolve-variable:
    error: linux-libre-arm-generic: unbound variable
    ------
    
    * gnu/packages/linux.scm (linux-libre-arm-veyron): Move after
    linux-libre-arm-generic.
---
 gnu/packages/linux.scm | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm
index 27ea07b..f2dcc32 100644
--- a/gnu/packages/linux.scm
+++ b/gnu/packages/linux.scm
@@ -835,9 +835,6 @@ It has been modified to remove all non-free binary blobs.")
 ;;; Specialized kernel variants.
 ;;;
 
-(define-public linux-libre-arm-veyron
-  (deprecated-package "linux-libre-arm-veyron" linux-libre-arm-generic))
-
 (define-public linux-libre-arm-generic
   (make-linux-libre* linux-libre-version
                      linux-libre-source
@@ -845,6 +842,9 @@ It has been modified to remove all non-free binary blobs.")
                      #:defconfig "multi_v7_defconfig"
                      #:extra-version "arm-generic"))
 
+(define-public linux-libre-arm-veyron
+  (deprecated-package "linux-libre-arm-veyron" linux-libre-arm-generic))
+
 (define-public linux-libre-arm-generic-4.19
   (make-linux-libre* linux-libre-4.19-version
                      linux-libre-4.19-source



reply via email to

[Prev in Thread] Current Thread [Next in Thread]