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/system.scm | |
parent | d3dce32216905a3beab6cdc6ba444d92f934ea29 (diff) | |
parent | 2472f7a8f1343ff11bb14e7135faddac3fc38e20 (diff) | |
download | guix-e081e2dd0b4c3a842d0bac6384545861c76e02d5.tar guix-e081e2dd0b4c3a842d0bac6384545861c76e02d5.tar.gz |
Merge branch 'master' into core-updates
Diffstat (limited to 'gnu/system.scm')
-rw-r--r-- | gnu/system.scm | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gnu/system.scm b/gnu/system.scm index d8f0f0275c..e3cbc0e230 100644 --- a/gnu/system.scm +++ b/gnu/system.scm @@ -392,6 +392,7 @@ from the initrd." (cond ((string-prefix? "arm" (%current-system)) "zImage") ((string-prefix? "mips" (%current-system)) "vmlinuz") + ((string-prefix? "aarch64" (%current-system)) "Image") (else "bzImage"))) (define (operating-system-kernel-file os) |