guix-commits
[Top][All Lists]
Advanced

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

branch master updated: service: qemu-binfmt: Remove broken qemu targets.


From: guix-commits
Subject: branch master updated: service: qemu-binfmt: Remove broken qemu targets.
Date: Tue, 09 May 2023 10:29:49 -0400

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

efraim pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new c1ffe2f21b service: qemu-binfmt: Remove broken qemu targets.
c1ffe2f21b is described below

commit c1ffe2f21bd1b9ba6bd527bbabe130144a69af71
Author: Efraim Flashner <efraim@flashner.co.il>
AuthorDate: Tue May 9 17:27:49 2023 +0300

    service: qemu-binfmt: Remove broken qemu targets.
    
    * gnu/services.virtualization.scm (%qemu-platforms): Remove %i486,
    %aarch64be.
---
 gnu/services/virtualization.scm | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/gnu/services/virtualization.scm b/gnu/services/virtualization.scm
index d80dc559b6..2e311e3813 100644
--- a/gnu/services/virtualization.scm
+++ b/gnu/services/virtualization.scm
@@ -845,10 +845,12 @@ used to manage logs from @acronym{VM, virtual machine} 
consoles.")))
    (magic (bv 
"\x7fELF\x02\x01\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x00\x02\x01"))
    (mask (bv 
"\xff\xff\xff\xff\xff\xff\xff\xfc\x00\xff\xff\xff\xff\xff\xff\xff\xfe\xff\xff\xff"))))
 
+;; binfmt_misc: register: failed to install interpreter file /gnu/store/...
+;; i486 and aarch64be aren't supported by the qemu-binfmt service.
 (define %qemu-platforms
-  (list %i386 %i486 %x86_64 %alpha %arm %sparc32plus %sparc64 %ppc %ppc64
+  (list %i386 %x86_64 %alpha %arm %sparc32plus %sparc64 %ppc %ppc64
         %ppc64le %m68k %mips %mipsel %mipsn32 %mipsn32el %mips64 %mips64el %sh4
-        %sh4eb %s390x %aarch64 %aarch64be %hppa %riscv32 %riscv64 %xtensa
+        %sh4eb %s390x %aarch64 %hppa %riscv32 %riscv64 %xtensa
         %xtensaeb %microblaze %microblazeel %or1k %hexagon %loongarch64))
 
 (define (lookup-qemu-platforms . names)



reply via email to

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