]> git.ipfire.org Git - people/mfischer/ipfire-2.x.git/blobdiff - lfs/qemu
Merge branch 'master' into next
[people/mfischer/ipfire-2.x.git] / lfs / qemu
index edd7a78a9fec4be212bc7ff764a1626c437f4667..e15d676685799644540617d059149e30d9b8396a 100644 (file)
--- a/lfs/qemu
+++ b/lfs/qemu
@@ -1,7 +1,7 @@
 ###############################################################################
 #                                                                             #
 # IPFire.org - A linux based firewall                                         #
-# Copyright (C) 2007-2020  IPFire Team  <info@ipfire.org>                     #
+# Copyright (C) 2007-2022  IPFire Team  <info@ipfire.org>                     #
 #                                                                             #
 # This program is free software: you can redistribute it and/or modify        #
 # it under the terms of the GNU General Public License as published by        #
 
 include Config
 
-VER        = 5.0.0
+SUMMARY    = Machine emulator and virtualizer
+
+# If you update the version also qemu-ga !!!
+VER        = 6.1.0
 
 THISAPP    = qemu-$(VER)
 DL_FILE    = $(THISAPP).tar.xz
 DL_FROM    = $(URL_IPFIRE)
 DIR_APP    = $(DIR_SRC)/$(THISAPP)
 TARGET     = $(DIR_INFO)/$(THISAPP)
-SUP_ARCH   = i586 x86_64
 PROG       = qemu
-PAK_VER    = 28
+PAK_VER    = 32
 
 DEPS       = libusbredir spice libseccomp
 
+SERVICES   =
+
+TARGETS    = \
+       i386-linux-user \
+       x86_64-linux-user \
+       arm-linux-user \
+       aarch64-linux-user \
+       riscv64-linux-user \
+       i386-softmmu \
+       x86_64-softmmu \
+       arm-softmmu \
+       aarch64-softmmu \
+       riscv64-softmmu
+
 ###############################################################################
 # Top-level Rules
 ###############################################################################
@@ -45,7 +61,7 @@ objects = $(DL_FILE)
 
 $(DL_FILE) = $(DL_FROM)/$(DL_FILE)
 
-$(DL_FILE)_MD5 = ede6005d7143fe994dd089d31dc2cf6c
+$(DL_FILE)_MD5 = 47f776c276a24f42108ba512a2aa3013
 
 install : $(TARGET)
 
@@ -55,7 +71,7 @@ download :$(patsubst %,$(DIR_DL)/%,$(objects))
 
 md5 : $(subst %,%_MD5,$(objects))
 
-dist: 
+dist:
        @$(PAK)
 
 ###############################################################################
@@ -78,16 +94,13 @@ $(subst %,%_MD5,$(objects)) :
 $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
        @$(PREBUILD)
        @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar axf $(DIR_DL)/$(DL_FILE)
-
-#      cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/qemu-4.1.0-build-fix-glibc-2.31.patch
-
        cd $(DIR_APP) && ./configure \
                --prefix=/usr \
                --sysconfdir=/etc \
                --localstatedir=/var \
                --enable-kvm \
                --disable-attr \
-               --target-list="i386-linux-user x86_64-linux-user arm-linux-user i386-softmmu x86_64-softmmu arm-softmmu" \
+               --target-list="$(TARGETS)" \
                --extra-cflags="$(CFLAGS)" \
                --enable-spice \
                --enable-usb-redir \