]> git.ipfire.org Git - people/mfischer/ipfire-2.x.git/commitdiff
qemu-ga: resolve conflict by using binary from qemu built
authorArne Fitzenreiter <arne_f@ipfire.org>
Fri, 21 Jan 2022 16:23:00 +0000 (16:23 +0000)
committerArne Fitzenreiter <arne_f@ipfire.org>
Fri, 21 Jan 2022 16:23:00 +0000 (16:23 +0000)
Signed-off-by: Arne Fitzenreiter <arne_f@ipfire.org>
config/rootfiles/packages/qemu
lfs/qemu
lfs/qemu-ga

index 4432643343a199bc107c0abde2957010f6609340..721c7f1db9e7c1db2914760d19a13db3f9f1a3db 100644 (file)
@@ -3,7 +3,7 @@ usr/bin/elf2dmp
 usr/bin/qemu
 usr/bin/qemu-arm
 usr/bin/qemu-edid
-usr/bin/qemu-ga
+#usr/bin/qemu-ga
 usr/bin/qemu-i386
 usr/bin/qemu-img
 usr/bin/qemu-io
index 9ece6ea7df3f50a0b6ff9762db08fc7451373d47..bc36bb4d7f26cf20403f8020aeb8583f03ec31d1 100644 (file)
--- a/lfs/qemu
+++ b/lfs/qemu
@@ -24,6 +24,7 @@
 
 include Config
 
+# If you update the version also qemu-ga !!!
 VER        = 6.1.0
 
 THISAPP    = qemu-$(VER)
index 791c5b4c158d990596e030e489260301d1f19273..2130b57f37e344d90615939b68a774cdb187546e 100644 (file)
 
 include Config
 
-VER        = 6.0.1
-
-THISAPP    = qemu-$(VER)
-DL_FILE    = $(THISAPP).tar.xz
-DL_FROM    = $(URL_IPFIRE)
-DIR_APP    = $(DIR_SRC)/$(THISAPP)
+VER        = 6.1.0
+THISAPP    = qemu-ga-$(VER)
 TARGET     = $(DIR_INFO)/$(THISAPP)
-SUP_ARCH   = x86_64 aarch64
+SUP_ARCH   = x86_64
 PROG       = qemu-ga
 PAK_VER    = 1
 
 DEPS       = 
 
-TARGETS    =
-
 ###############################################################################
 # Top-level Rules
 ###############################################################################
 
-objects = $(DL_FILE)
-
-$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
-
-$(DL_FILE)_MD5 = 10c651469e07844523995e2c980a4fdb
-
 install : $(TARGET)
 
-check : $(patsubst %,$(DIR_CHK)/%,$(objects))
-
-download :$(patsubst %,$(DIR_DL)/%,$(objects))
+download : 
 
-md5 : $(subst %,%_MD5,$(objects))
+md5 : 
 
 dist: 
        @$(PAK)
 
-###############################################################################
-# Downloading, checking, md5sum
-###############################################################################
-
-$(patsubst %,$(DIR_CHK)/%,$(objects)) :
-       @$(CHECK)
-
-$(patsubst %,$(DIR_DL)/%,$(objects)) :
-       @$(LOAD)
-
-$(subst %,%_MD5,$(objects)) :
-       @$(MD5)
-
 ###############################################################################
 # Installation Details
 ###############################################################################
 
-$(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
+$(TARGET) : 
        @$(PREBUILD)
-       @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar axf $(DIR_DL)/$(DL_FILE)
-       cd $(DIR_APP) && ./configure \
-               --prefix=/usr \
-               --sysconfdir=/etc \
-               --localstatedir=/var \
-               --enable-kvm \
-               --disable-attr \
-               --extra-cflags="$(CFLAGS)" \
-               --enable-spice \
-               --enable-usb-redir \
-               --enable-seccomp \
-               --disable-docs \
-               --disable-sdl
-
-       cd $(DIR_APP) && make qemu-ga $(MAKETUNING)
-       cd $(DIR_APP) && cp build/qga/qemu-ga /usr/bin
 
        #install initscripts
        $(call INSTALL_INITSCRIPT,qemu-ga)